Home
last modified time | relevance | path

Searched refs:IfClause (Results 1 – 7 of 7) sorted by relevance

/external/starlark-go/syntax/
Dsyntax.go362 type IfClause struct { struct
368 func (x *IfClause) Span() (start, end Position) { argument
Dwalk.go108 case *IfClause:
Dparse_test.go92 …`(Comprehension Curly Body=(DictEntry Key=x Value=y) Clauses=((ForClause Vars=a X=b) (IfClause Con…
120 …`(Comprehension Body=e Clauses=((ForClause Vars=x X=y) (IfClause Cond=cond1) (IfClause Cond=cond2)…
Dparse.go929 clauses = append(clauses, &IfClause{If: pos, Cond: cond})
/external/starlark-go/resolve/
Dresolve.go683 case *syntax.IfClause:
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp6689 const OMPIfClause *IfClause = nullptr; in getNumThreads() local
6693 IfClause = C; in getNumThreads()
6697 if (IfClause) { in getNumThreads()
6698 const Expr *Cond = IfClause->getCondition(); in getNumThreads()
6706 cast_or_null<DeclStmt>(IfClause->getPreInitStmt())) { in getNumThreads()
6880 const OMPIfClause *IfClause = nullptr; in emitNumThreadsForTargetDirective() local
6884 IfClause = C; in emitNumThreadsForTargetDirective()
6888 if (IfClause) { in emitNumThreadsForTargetDirective()
6889 const Expr *Cond = IfClause->getCondition(); in emitNumThreadsForTargetDirective()
/external/starlark-go/internal/compile/
Dcompile.go1757 case *syntax.IfClause: