Lines Matching defs:condition
115 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled,
123 if (condition && *condition != '\0') {
124 SetCondition(condition);
189 // If we're copying over an empty condition, mark it as unset.
461 void BreakpointOptions::SetCondition(const char *condition) {
462 if (!condition || condition[0] == '\0') {
463 condition = "";
469 m_condition_text.assign(condition);