Home
last modified time | relevance | path

Searched refs:Else (Results 1 – 25 of 247) sorted by relevance

12345678910

/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc146 .Else(CrashSIGSYSClone()); in RestrictCloneToThreadsAndEPERMFork()
206 return If((flags & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMmapFlags()
216 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMprotectFlags()
245 If((long_arg & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS())) in RestrictFcntlCommands()
275 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill()); in RestrictKillTarget()
300 .Else(CrashSIGSYS()); in RestrictGetSetpriority()
332 return If(who == RUSAGE_SELF, Allow()).Else(CrashSIGSYS()); in RestrictGetrusage()
Dbaseline_policy.cc175 return If(advice == MADV_DONTNEED, Allow()).Else(Error(EPERM)); in EvaluateSyscallImpl()
202 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS()); in EvaluateSyscallImpl()
240 .Else(CrashSIGSYS()); in EvaluateSyscallImpl()
/external/swiftshader/third_party/LLVM/test/Transforms/LICM/
Dno-preheader-test.ll5 br i1 %ifcond, label %Then, label %Else
8 Else: ; preds = %0
10 Loop: ; preds = %Loop, %Else, %Then
11 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
/external/libchrome/sandbox/linux/bpf_dsl/
Dbpf_dsl_unittest.cc123 return If(pid == 0, Error(EPERM)).Else(Error(EINVAL)); in EvaluateSyscall()
127 return If(uid != 42, Kill()).Else(Allow()); in EvaluateSyscall()
159 .Else(Error(EINVAL)); in EvaluateSyscall()
203 .Else(Error(EINVAL)); in EvaluateSyscall()
241 return If(addr == kDeadBeefAddr, Error(EPERM)).Else(Allow()); in EvaluateSyscall()
264 return If(fd == -314, Error(EPERM)).Else(Allow()); in EvaluateSyscall()
323 return If((uid & 0xf) == 0, Error(EINVAL)).Else(Error(EACCES)); in EvaluateSyscall()
327 return If((gid & 0xf0) == 0xf0, Error(EINVAL)).Else(Error(EACCES)); in EvaluateSyscall()
331 return If((pid & 0xa5) == 0xa0, Error(EINVAL)).Else(Error(EACCES)); in EvaluateSyscall()
369 .Else(Error(EACCES)); in EvaluateSyscall()
[all …]
/external/llvm/test/Transforms/LICM/
Dno-preheader-test.ll6 br i1 %ifcond, label %Then, label %Else
9 Else: ; preds = %0
11 Loop: ; preds = %Loop, %Else, %Then
12 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
/external/v8/src/compiler/
Dcontrol-builders.cc23 void IfBuilder::Else() { in Else() function in v8::internal::compiler::IfBuilder
74 control_if.Else(); in BreakUnless()
85 control_if.Else(); in BreakWhen()
165 control_if.Else(); in BreakWhen()
174 control_if.Else(); in BreakUnless()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_emulate_branches.c46 struct rc_instruction * Else; member
100 branch->Else = inst; in handle_else()
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst); in handle_endif()
217 if (branch->Else) in handle_endif()
218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst); in handle_endif()
230 if (branch->Else) in handle_endif()
231 rc_remove_instruction(branch->Else); in handle_endif()
Dr500_fragprog_emit.c59 int Else; member
551 branch->Else = -1; in emit_flowcontrol()
567 branch->Else = newip; in emit_flowcontrol()
596 if (branch->Else >= 0) { in emit_flowcontrol()
599 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1); in emit_flowcontrol()
601 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP in emit_flowcontrol()
608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1); in emit_flowcontrol()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp176 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon9b9f7d220111::IfExprAST
180 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
181 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
343 auto Else = ParseExpression(); in ParseIfExpr() local
344 if (!Else) in ParseIfExpr()
348 std::move(Else)); in ParseIfExpr()
641 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp195 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon101bee230111::IfExprAST
199 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
200 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
376 auto Else = ParseExpression(); in ParseIfExpr() local
377 if (!Else) in ParseIfExpr()
381 std::move(Else)); in ParseIfExpr()
752 Value *ElseV = Else->codegen(); in codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
Dtoy.cpp144 ExprAST *Cond, *Then, *Else; member in IfExprAST
147 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
293 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
294 if (!Else) return 0; in ParseIfExpr()
296 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
543 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
Dtoy.cpp202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anonc2b91a450111::IfExprAST
206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
396 auto Else = ParseExpression(); in ParseIfExpr() local
397 if (!Else) in ParseIfExpr()
401 std::move(Else)); in ParseIfExpr()
856 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
Dtoy.cpp203 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST
207 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
208 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
384 auto Else = ParseExpression(); in ParseIfExpr() local
385 if (!Else) in ParseIfExpr()
389 std::move(Else)); in ParseIfExpr()
845 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
Dtoy.cpp202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anond9c038430111::IfExprAST
206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
396 auto Else = ParseExpression(); in ParseIfExpr() local
397 if (!Else) in ParseIfExpr()
401 std::move(Else)); in ParseIfExpr()
856 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
Dtoy.cpp202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon4e3ca9440111::IfExprAST
206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
396 auto Else = ParseExpression(); in ParseIfExpr() local
397 if (!Else) in ParseIfExpr()
401 std::move(Else)); in ParseIfExpr()
856 Value *ElseV = Else->codegen(); in codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
Dtoy.cpp159 ExprAST *Cond, *Then, *Else; member in IfExprAST
162 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
321 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
322 if (!Else) return 0; in ParseIfExpr()
324 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
647 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter8/
Dtoy.cpp199 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anonf914d0250111::IfExprAST
203 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
204 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
393 auto Else = ParseExpression(); in ParseIfExpr() local
394 if (!Else) in ParseIfExpr()
398 std::move(Else)); in ParseIfExpr()
852 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon84985f240111::IfExprAST
206 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
396 auto Else = ParseExpression(); in ParseIfExpr() local
397 if (!Else) in ParseIfExpr()
401 std::move(Else)); in ParseIfExpr()
857 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
Dtoy.cpp218 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST
222 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
223 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
399 auto Else = ParseExpression(); in ParseIfExpr() local
400 if (!Else) in ParseIfExpr()
404 std::move(Else)); in ParseIfExpr()
867 Value *ElseV = Else->codegen(); in codegen()
/external/clang/include/clang/Lex/
DPPCallbacks.h313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function
495 void Else(SourceLocation Loc, SourceLocation IfLoc) override { in Else() function
496 First->Else(Loc, IfLoc); in Else()
497 Second->Else(Loc, IfLoc); in Else()
/external/llvm/examples/Kaleidoscope/Chapter9/
Dtoy.cpp295 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon6d9141260211::IfExprAST
299 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) in IfExprAST() argument
301 Else(std::move(Else)) {} in IfExprAST()
307 Else->dump(indent(out, ind) << "Else:", ind + 1); in dump()
525 auto Else = ParseExpression(); in ParseIfExpr() local
526 if (!Else) in ParseIfExpr()
530 std::move(Else)); in ParseIfExpr()
1036 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/docs/tutorial/
DLangImpl05.rst21 If/Then/Else
60 Lexer Extensions for If/Then/Else
91 AST Extensions for If/Then/Else
100 std::unique_ptr<ExprAST> Cond, Then, Else;
104 std::unique_ptr<ExprAST> Else)
105 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
111 Parser Extensions for If/Then/Else
142 auto Else = ParseExpression();
143 if (!Else)
147 std::move(Else));
[all …]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp167 ExprAST *Cond, *Then, *Else; member in IfExprAST
170 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
342 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
343 if (!Else) return 0; in ParseIfExpr()
345 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
751 Value *ElseV = Else->Codegen(); in Codegen()
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
Dtoy.cpp164 ExprAST *Cond, *Then, *Else; member in IfExprAST
167 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
339 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
340 if (!Else) return 0; in ParseIfExpr()
342 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
743 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp182 ExprAST *Cond, *Then, *Else; member in IfExprAST
185 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
357 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
358 if (!Else) return 0; in ParseIfExpr()
360 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
769 Value *ElseV = Else->Codegen(); in Codegen()

12345678910