HomeSort by relevance Sort by last modified time
    Searched refs:Else (Results 1 - 25 of 25) sorted by null

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
parser.ml 49 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
52 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
95 if token_prec < expr_prec then lhs else begin
111 else rhs
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
parser.ml 49 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
52 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
106 if token_prec < expr_prec then lhs else begin
122 else rhs
174 else
177 else
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
parser.ml 50 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
53 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
120 if token_prec < expr_prec then lhs else begin
136 else rhs
200 else
203 else
  /external/clang/include/clang/Lex/
PPCallbacks.h 188 /// #if/#else directive and ends after the #endif/#else directive.
220 /// Else -- This hook is called whenever an #else is seen.
223 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
370 /// Else -- This hook is called whenever an #else is seen.
371 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
372 First->Else(Loc, IfLoc);
373 Second->Else(Loc, IfLoc)
    [all...]
PreprocessingRecord.h 609 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.dsl 336 Else
365 Else
393 Else
473 Else
520 Else
567 Else
614 Else
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 59 if (IdentifierStr == "else") return tok_else;
142 /// IfExprAST - Expression class for if/then/else.
144 ExprAST *Cond, *Then, *Else;
147 : Cond(cond), Then(then), Else(_else) {}
273 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
289 return Error("expected else");
293 ExprAST *Else = ParseExpression();
294 if (!Else) return 0;
296 return new IfExprAST(Cond, Then, Else);
521 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 62 if (IdentifierStr == "else") return tok_else;
157 /// IfExprAST - Expression class for if/then/else.
159 ExprAST *Cond, *Then, *Else;
162 : Cond(cond), Then(then), Else(_else) {}
301 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
317 return Error("expected else");
321 ExprAST *Else = ParseExpression();
322 if (!Else) return 0;
324 return new IfExprAST(Cond, Then, Else);
625 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 65 if (IdentifierStr == "else") return tok_else;
162 /// IfExprAST - Expression class for if/then/else.
164 ExprAST *Cond, *Then, *Else;
167 : Cond(cond), Then(then), Else(_else) {}
319 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
335 return Error("expected else");
339 ExprAST *Else = ParseExpression();
340 if (!Else) return 0;
342 return new IfExprAST(Cond, Then, Else);
721 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 55 } else if (S) {
57 } else {
75 else
88 else StmtVisitor<StmtPrinter>::Visit(S);
198 } else {
204 if (Stmt *Else = If->getElse()) {
205 OS << "else";
207 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
211 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
    [all...]
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 83 else
227 } else
369 else if (MacroDefinition *Def = findMacroDefinition(MI))
445 else
501 void PreprocessingRecord::Else(SourceLocation Loc, SourceLocation IfLoc) {
PPDirectives.cpp 39 else {
74 else {
99 /// else (e.g. #ifdef).
136 else
139 } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
142 } else if (isDefineUndef && II->hasMacroDefinition() &&
147 else
149 } else {
170 else
198 /// this #if directive, so #else/#elif blocks should never be entered. If ElseO
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 37 else
207 else {
255 // Place the block after the current block, if possible, or else at
259 else
273 } else {
320 } else {
384 // the condition and the dead arm of the if/else.
387 // Figure out which block (then or else) is executed.
410 ElseBlock = createBasicBlock("if.else");
421 // Emit the 'else' code if present
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 486 else
489 } else {
778 } else {
785 else
853 /// that should create implicit scope (e.g. if/else substatements).
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]
  /external/v8/src/
d8.js 44 } else {
154 } else {
181 } else {
200 } else {
215 } else {
231 } else {
256 } else {
281 } else {
315 } else {
334 } else {
    [all...]

Completed in 158 milliseconds