Searched defs:If (Results 1 - 11 of 11) sorted by relevance

/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml20 | If of expr * expr * expr Constructor in type:expr
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml23 | If of expr * expr * expr Constructor in type:expr
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml23 | If of expr * expr * expr Constructor in type:expr
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/clang/include/clang/Lex/
H A DPPCallbacks.h84 /// in the file system. If the file was found via an absolute include path,
175 /// If -- This hook is called whenever an #if is seen.
178 virtual void If(SourceRange Range) { function in class:clang::PPCallbacks
313 /// If -- This hook is called whenever an #if is seen.
314 virtual void If(SourceRange Range) { function in class:clang::PPChainedCallbacks
315 First->If(Range);
316 Second->If(Range);
/external/clang/lib/AST/
H A DStmtPrinter.cpp51 // If this is an expr used in a stmt context, indent and newline it.
66 void PrintRawIfStmt(IfStmt *If);
172 void StmtPrinter::PrintRawIfStmt(IfStmt *If) { argument
174 PrintExpr(If->getCond());
177 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
180 OS << (If->getElse() ? ' ' : '\n');
183 PrintStmt(If->getThen());
184 if (If->getElse()) Indent();
187 if (Stmt *Else = If->getElse()) {
199 PrintStmt(If
204 VisitIfStmt(IfStmt *If) argument
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1377 CAMLprim LLVMValueRef llvm_build_cond_br(LLVMValueRef If, argument
1381 return LLVMBuildCondBr(Builder_val(B), If, Then, Else);
1893 CAMLprim LLVMValueRef llvm_build_select(LLVMValueRef If, argument
1896 return LLVMBuildSelect(Builder_val(B), If, Then, Else, String_val(Name));
/external/clang/tools/libclang/
H A DCIndex.cpp380 // If we have a range of interest, and this cursor doesn't intersect with it,
720 // If we have a function declared directly (without the use of a typedef),
889 // in the current DeclContext. If any fall within the
1182 // If the type has a form where we know that the beginning of the source
1745 void VisitIfStmt(IfStmt *If);
1960 void EnqueueVisitor::VisitIfStmt(IfStmt *If) { argument
1961 AddStmt(If->getElse());
1962 AddStmt(If->getThen());
1963 AddStmt(If->getCond());
1964 AddDecl(If
[all...]
/external/llvm/lib/VMCore/
H A DCore.cpp1765 LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If, argument
1767 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
2190 LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If, argument
2193 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),

Completed in 223 milliseconds