Searched refs:cond (Results 1 – 5 of 5) sorted by relevance
68 cond string member211 if prefix, ok = conditionalTranslations[c.cond][c.eq]; !ok {222 file.errorf(assignment, "conditional %s %s on global assignment", eq, c.cond)271 if _, ok := conditionalTranslations[c.cond]; !ok {272 panic("unknown conditional " + c.cond)275 disabledPrefix := conditionalTranslations[c.cond][!c.eq]
420 const string&& cond = args[0]->Eval(ev); in IfFunc()421 if (cond.empty()) { in IfFunc()430 string cond; in AndFunc() local432 cond = a->Eval(ev); in AndFunc()433 if (cond.empty()) in AndFunc()436 if (!cond.empty()) { in AndFunc()437 *s += cond; in AndFunc()443 const string&& cond = a->Eval(ev); in OrFunc()444 if (!cond.empty()) { in OrFunc()445 *s += cond; in OrFunc()
863 var cond []byte870 cond = abuf.Bytes()871 if len(cond) == 0 {876 w.Write(cond)896 cond := abuf.Bytes()897 if len(cond) != 0 {898 w.Write(cond)
608 FindCond* cond = new NameCond( in ParseFindLeaves() local611 cond = new OrCond(fc_->prune_cond.release(), cond); in ParseFindLeaves()614 fc_->prune_cond.reset(cond); in ParseFindLeaves()
381 size_t FindOutsideParenImpl(StringPiece s, Cond cond) { in FindOutsideParenImpl() argument386 if (cond(c) && paren_stack.empty() && !prev_backslash) { in FindOutsideParenImpl()