Home
last modified time | relevance | path

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

123456789

/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc135 .Else(CrashSIGSYSClone()); in RestrictCloneToThreadsAndEPERMFork()
169 return If((flags & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMmapFlags()
179 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMprotectFlags()
208 If((long_arg & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS())) in RestrictFcntlCommands()
238 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill()); in RestrictKillTarget()
268 .Else(CrashSIGSYS()); in RestrictGetSetpriority()
300 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/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/v8/src/compiler/
Dcontrol-builders.cc21 void IfBuilder::Else() { in Else() function in v8::internal::compiler::IfBuilder
70 control_if.Else(); in BreakUnless()
81 control_if.Else(); in BreakWhen()
151 control_if.Else(); in BreakWhen()
160 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/eigen/Eigen/src/Eigen2Support/
DMeta.h22 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/v8/src/
Dcode-stubs-hydrogen.cc337 is_smi.Else(); in BuildCodeStub()
343 is_number.Else(); in BuildCodeStub()
353 is_string.Else(); in BuildCodeStub()
364 is_oddball.Else(); in BuildCodeStub()
371 is_symbol.Else(); in BuildCodeStub()
385 is_function.Else(); in BuildCodeStub()
393 is_##type.Else(); { in BuildCodeStub()
405 is_undetectable.Else(); in BuildCodeStub()
526 zero_capacity.Else(); in BuildCodeStub()
534 if_fixed_cow.Else(); in BuildCodeStub()
[all …]
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp164 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anonbe9b5f680111::IfExprAST
168 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
331 auto Else = ParseExpression(); in ParseIfExpr() local
332 if (!Else) in ParseIfExpr()
336 std::move(Else)); in ParseIfExpr()
630 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp183 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon3317d0690111::IfExprAST
187 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
364 auto Else = ParseExpression(); in ParseIfExpr() local
365 if (!Else) in ParseIfExpr()
369 std::move(Else)); in ParseIfExpr()
741 Value *ElseV = Else->codegen(); in codegen()
/external/eigen/Eigen/src/Core/util/
DMeta.h28 template<bool Condition, typename Then, typename Else>
31 template<typename Then, typename Else>
32 struct conditional <false, Then, Else> { typedef Else type; };
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp189 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anona794416a0111::IfExprAST
193 std::unique_ptr<ExprAST> Else) in IfExprAST() argument
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
383 auto Else = ParseExpression(); in ParseIfExpr() local
384 if (!Else) in ParseIfExpr()
388 std::move(Else)); in ParseIfExpr()
846 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/Chapter8/
Dtoy.cpp294 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon1c10b26b0211::IfExprAST
298 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) in IfExprAST() argument
300 Else(std::move(Else)) {} in IfExprAST()
306 Else->dump(indent(out, ind) << "Else:", ind + 1); in dump()
524 auto Else = ParseExpression(); in ParseIfExpr() local
525 if (!Else) in ParseIfExpr()
529 std::move(Else)); in ParseIfExpr()
1037 Value *ElseV = Else->codegen(); in codegen()
/external/llvm/docs/tutorial/
DLangImpl5.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/OCaml-Kaleidoscope/Chapter5/
Dtoken.ml18 | If | Then | Else Constructor
/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()
753 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()
771 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dtoken.ml18 | If | Then | Else Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dtoken.ml18 | If | Then | Else Constructor
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
877 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
877 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp178 std::unique_ptr<ExprAST> Else) in IfExprAST()
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST()
182 std::unique_ptr<ExprAST> Cond, Then, Else; member
367 auto Else = ParseExpression(); in ParseIfExpr() local
368 if (!Else) in ParseIfExpr()
372 std::move(Else)); in ParseIfExpr()
877 Value *ElseV = Else->IRGen(C); in IRGen()
/external/llvm/lib/Target/AMDGPU/
DSIAnnotateControlFlow.cpp60 Constant *Else; member in __anon68aac0c90111::SIAnnotateControlFlow
134 Else = M.getOrInsertFunction( in doInitialization()
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()

123456789