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

1 2

  /external/eigen/Eigen/src/Eigen2Support/
Meta.h 22 template<bool Condition, typename Then, typename Else>
25 template<typename Then, typename Else>
26 struct ei_meta_if <false, Then, Else> { typedef Else ret; };
  /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 210 /// \#if/\#else directive and ends after the \#endif/\#else directive.
247 /// \brief Hook called whenever an \#else is seen.
250 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
410 /// \brief Hook called whenever an \#else is seen.
411 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
412 First->Else(Loc, IfLoc);
413 Second->Else(Loc, IfLoc);
PPConditionalDirectiveRecord.h 96 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
  /external/eigen/Eigen/src/Core/util/
Meta.h 28 template<bool Condition, typename Then, typename Else>
31 template<typename Then, typename Else>
32 struct conditional <false, Then, Else> { typedef Else type; };
  /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/lib/Target/R600/
SIAnnotateControlFlow.cpp 33 static const char *ElseIntrinsic = "llvm.SI.else";
36 static const char *ElseBreakIntrinsic = "llvm.SI.else.break";
55 Constant *Else;
127 Else = M.getOrInsertFunction(
164 /// an "Else" block?
173 } else {
195 /// \brief Close the last "If" block and open a new "Else" block
197 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
246 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
253 } else {
    [all...]
SILowerControlFlow.cpp 78 void Else(MachineInstr &MI);
194 void SILowerControlFlowPass::Else(MachineInstr &MI) {
290 else
431 Else(MI);
462 else
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 105 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,
  /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 57 } else if (S) {
59 } else {
77 else
90 else StmtVisitor<StmtPrinter>::Visit(S);
195 else
203 } else {
209 if (Stmt *Else = If->getElse()) {
210 OS << "else";
212 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
216 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else))
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 280 // else return NO;
330 // Construct the else clause.
334 Stmt *Else = M.makeReturn(RetVal);
339 SourceLocation(), Else);
366 else {
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 257 else
335 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
339 else if (isa<BlockDecl>(D)) {
366 else if (!ReturnsVoid)
374 else if (!ReturnsVoid)
383 } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
386 } else {
425 else
465 const Stmt *Else, bool CondVal,
472 if (Else) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]

Completed in 583 milliseconds

1 2