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

1 2

  /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 186 /// \#if/\#else directive and ends after the \#endif/\#else directive.
219 /// \brief Hook called whenever an \#else is seen.
222 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
369 /// \brief Hook called whenever an \#else is seen.
370 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
371 First->Else(Loc, IfLoc);
372 Second->Else(Loc, IfLoc);
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/clang/lib/AST/
StmtPrinter.cpp 54 } else if (S) {
56 } else {
74 else
87 else StmtVisitor<StmtPrinter>::Visit(S);
197 } else {
203 if (Stmt *Else = If->getElse()) {
204 OS << "else";
206 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
210 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 253 else
332 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
336 else if (isa<BlockDecl>(D)) {
363 else if (!ReturnsVoid)
371 else if (!ReturnsVoid)
380 } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
383 } else {
422 else
462 const Stmt *Else, bool CondVal,
469 if (Else) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/include/llvm-c/
Core.h     [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 40 else {
75 else {
102 /// else (e.g. \#ifdef).
139 else
142 } else if (isDefineUndef && II->getPPKeywordID() == tok::pp_defined) {
145 } else if (isDefineUndef && II->hasMacroDefinition() &&
150 else
152 } else {
174 else
202 /// this \#if directive, so \#else/\#elif blocks should never be entered
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 37 else
208 else {
256 // Place the block after the current block, if possible, or else at
260 else
274 } else {
321 } 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 470 else {
514 else
517 } else {
812 else
880 /// that should create implicit scope (e.g. if/else substatements).
    [all...]
  /external/libvorbis/doc/
04-codec.tex 293 \varname{[vorbis_mode_blockflag]} is 0, else \varname{[n]} is equal to \varname{[blocksize_1]}.
305 windows. Else, the left half window will have normal long
311 windows. Else, the left right window will have normal long
336 else
352 else
401 \varname{[i]} to true, else set vector \varname{[no_residue]} element \varname{[i]} to
453 else
498 else
505 else
512 else
    [all...]

Completed in 3651 milliseconds

1 2