HomeSort by relevance Sort by last modified time
    Searched refs:Else (Results 26 - 50 of 63) sorted by null

12 3

  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
baseline_policy.cc 165 return If(advice == MADV_DONTNEED, Allow()).Else(Error(EPERM));
188 // Only allow AF_UNIX, PF_UNIX. Crash if anything else is seen.
191 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 59 int Else;
210 } else if (src.File == RC_FILE_TEMPORARY || src.File == RC_FILE_INPUT) {
213 } else if (src.File == RC_FILE_INLINE) {
264 } else {
352 else
551 branch->Else = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
596 if (branch->Else >= 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog_emit.c 59 int Else;
210 } else if (src.File == RC_FILE_TEMPORARY || src.File == RC_FILE_INPUT) {
213 } else if (src.File == RC_FILE_INLINE) {
264 } else {
352 else
551 branch->Else = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
596 if (branch->Else >= 0)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 67 else
115 // } else if (b) {
120 const Stmt *Else = Stmt2;
121 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
131 Else = I2->getElse();
142 // } else
221 } else if ((FloatLit1) && (FloatLit2)) {
227 } else if (LHS->getType()->hasFloatingRepresentation()) {
232 } else {
242 else
    [all...]
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_more_unittest.cc 329 } else {
354 return If(arg == 0, Allow()).Else(Error(EPERM));
375 return If(arg == 0, Error(EINVAL)).Else(Allow());
471 } else {
534 } else if (sysno == __NR_getpid) {
537 } else {
584 } else {
917 return If((flags & O_ACCMODE) != 0, Error(EROFS)).Else(Allow());
921 // disallow everything else.
924 .Else(Error(ENOMEM))
    [all...]
bpf_dsl.cc 334 ResultExpr Elser::Else(const ResultExpr& else_result) const {
336 // if/then/else sequence. Also, we've already accumulated all
341 // If(b1, e1).ElseIf(b2, e2).ElseIf(b3, e3).Else(e4)
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 66 if (IdentifierStr == "else") return tok_else;
163 /// IfExprAST - Expression class for if/then/else.
165 ExprAST *Cond, *Then, *Else;
168 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
337 return Error("expected else");
341 ExprAST *Else = ParseExpression();
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
723 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 84 if (IdentifierStr == "else") return tok_else;
181 /// IfExprAST - Expression class for if/then/else.
183 ExprAST *Cond, *Then, *Else;
186 : Cond(cond), Then(then), Else(_else) {}
338 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
354 return Error("expected else");
358 ExprAST *Else = ParseExpression();
359 if (!Else) return 0;
361 return new IfExprAST(Cond, Then, Else);
660 #else
    [all...]
toy.cpp 90 if (IdentifierStr == "else") return tok_else;
187 /// IfExprAST - Expression class for if/then/else.
189 ExprAST *Cond, *Then, *Else;
192 : Cond(cond), Then(then), Else(_else) {}
344 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
360 return Error("expected else");
364 ExprAST *Else = ParseExpression();
365 if (!Else) return 0;
367 return new IfExprAST(Cond, Then, Else);
812 } else {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 67 if (IdentifierStr == "else") return tok_else;
164 /// IfExprAST - Expression class for if/then/else.
166 ExprAST *Cond, *Then, *Else;
169 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
337 return Error("expected else");
341 ExprAST *Else = ParseExpression();
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
972 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 69 if (IdentifierStr == "else") return tok_else;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
339 return Error("expected else");
343 ExprAST *Else = ParseExpression();
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
645 #else
    [all...]
toy.cpp 69 if (IdentifierStr == "else") return tok_else;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
339 return Error("expected else");
343 ExprAST *Else = ParseExpression();
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
723 } else {
    [all...]
  /external/llvm/lib/Target/R600/
SILowerControlFlow.cpp 79 void Else(MachineInstr &MI);
197 void SILowerControlFlowPass::Else(MachineInstr &MI) {
315 } else {
345 } else {
474 Else(MI);
505 else
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 114 if (IdentifierStr == "else") return tok_else;
211 /// IfExprAST - Expression class for if/then/else.
213 ExprAST *Cond, *Then, *Else;
216 : Cond(cond), Then(then), Else(_else) {}
368 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
384 return Error("expected else");
388 ExprAST *Else = ParseExpression();
389 if (!Else) return 0;
391 return new IfExprAST(Cond, Then, Else);
805 } else {
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 292 // else return NO;
342 // Construct the else clause.
346 Stmt *Else = M.makeReturn(RetVal);
351 SourceLocation(), Else);
378 else {
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.cc 204 } else {
455 } else {
491 compare_if.Else();
631 is_undefined.Else();
638 is_null.Else();
670 have_no_properties.Else();
738 is_property_missing.Else();
743 test_should_filter.Else();
833 compare_if.Else();
914 } else {
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
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/
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/clang/lib/AST/
StmtPrinter.cpp 57 } else if (S) {
59 } else {
78 else
91 else StmtVisitor<StmtPrinter>::Visit(S);
182 else
190 } else {
196 if (Stmt *Else = If->getElse()) {
197 OS << "else";
199 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
203 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else))
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 218 } else {
439 else
512 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
516 else if (isa<BlockDecl>(D)) {
543 else if (!ReturnsVoid)
551 else if (!ReturnsVoid)
560 } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
563 } else {
602 else
643 const Stmt *Else, bool CondVal
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 62 #else
148 } else {
350 } else {
353 } else if (!HasEnvironment() && !IsFinished()) {
379 } else if (other->dominator() != NULL) {
386 } else {
508 } else {
637 } else {
818 } else {
823 } else {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
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

Completed in 586 milliseconds

12 3