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

1 2 3

  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 56 #else
64 #else
72 #else
80 #else
121 .Else(CrashSIGSYSClone());
150 return If((flags & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
160 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
189 If((long_arg & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()))
219 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill());
248 If(who == 0 || who == target_pid, Allow()).Else(Error(EPERM))
    [all...]
  /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 >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 70 return If(pid == 0, Error(EPERM)).Else(Error(EINVAL));
74 return If(uid != 42, Error(ESRCH)).Else(Error(ENOMEM));
103 Error(EPERM)).Else(Error(EINVAL));
140 .Else(Error(EINVAL));
158 // Expect EINVAL for anything else.
175 return If(addr == kDeadBeefAddr, Error(EPERM)).Else(Allow());
228 return If((uid & 0xf) == 0, Error(EINVAL)).Else(Error(EACCES));
232 return If((gid & 0xf0) == 0xf0, Error(EINVAL)).Else(Error(EACCES));
236 return If((pid & 0xa5) == 0xa0, Error(EINVAL)).Else(Error(EACCES));
272 .Else(Error(EACCES))
    [all...]
bpf_dsl.h 51 // .Else(Trap(SetFlagHandler, NULL));
52 // } else {
65 // | If(bool, result)[.ElseIf(bool, result)].Else(result)
212 // Else terminates a conditional result expression using |else_result| as
214 ResultExpr Else(const ResultExpr& else_result) const;
371 // If/ElseIf/Else chain.
383 return elser_.Else(result);
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox.cc 67 Allow()).Else(CrashSIGSYS());
76 Allow()).Else(CrashSIGSYSClone());
99 return If(option == PR_SET_NAME, Error(EPERM)).Else(CrashSIGSYSPrctl());
108 Allow()).Else(CrashSIGSYS());
117 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
129 Allow()).Else(CrashSIGSYS());
134 // Only allow AF_UNIX, PF_UNIX. Crash if anything else is seen.
137 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 46 struct rc_instruction * Else;
93 rc_error(s->C, "Encountered ELSE outside of branches");
100 branch->Else = inst;
114 } else {
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
217 if (branch->Else)
218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst);
230 if (branch->Else)
231 rc_remove_instruction(branch->Else);
    [all...]
  /external/chromium_org/v8/src/compiler/
control-builders.cc 21 void IfBuilder::Else() {
71 control_if.Else();
control-builders.h 54 void Else();
59 Environment* else_environment_; // Environment for the 'else' body.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 46 struct rc_instruction * Else;
93 rc_error(s->C, "Encountered ELSE outside of branches");
100 branch->Else = inst;
114 } else {
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
217 if (branch->Else)
218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst);
230 if (branch->Else)
231 rc_remove_instruction(branch->Else);
    [all...]
  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
PPCallbacks.h 265 /// \#if/\#else directive and ends after the \#endif/\#else directive.
309 /// \brief Hook called whenever an \#else is seen.
312 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
496 /// \brief Hook called whenever an \#else is seen.
497 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
498 First->Else(Loc, IfLoc);
499 Second->Else(Loc, 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/chromium_org/v8/src/
code-stubs-hydrogen.cc 173 } else {
198 } else {
298 if_number.Else();
361 zero_capacity.Else();
369 if_fixed_cow.Else();
378 if_fixed.Else();
699 is_valid.Else();
706 in_range.Else();
739 } else if (representation.IsHeapObject()) {
    [all...]
  /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 60 if (IdentifierStr == "else") return tok_else;
143 /// IfExprAST - Expression class for if/then/else.
145 ExprAST *Cond, *Then, *Else;
148 : Cond(cond), Then(then), Else(_else) {}
275 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
291 return Error("expected else");
295 ExprAST *Else = ParseExpression();
296 if (!Else) return 0;
298 return new IfExprAST(Cond, Then, Else);
523 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 63 if (IdentifierStr == "else") return tok_else;
158 /// IfExprAST - Expression class for if/then/else.
160 ExprAST *Cond, *Then, *Else;
163 : Cond(cond), Then(then), Else(_else) {}
303 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
319 return Error("expected else");
323 ExprAST *Else = ParseExpression();
324 if (!Else) return 0;
326 return new IfExprAST(Cond, Then, Else);
627 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 37 static const char *const ElseIntrinsic = "llvm.SI.else";
40 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
59 Constant *Else;
130 Else = M.getOrInsertFunction(
167 /// an "Else" block?
176 } else {
198 /// \brief Close the last "If" block and open a new "Else" block
200 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
250 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
256 } else {
    [all...]
  /external/chromium_org/content/common/sandbox_linux/
bpf_cros_arm_gpu_policy_linux.cc 42 #else
50 #else
151 return If(domain == AF_UNIX, Allow()).Else(Error(EPERM));
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,

Completed in 658 milliseconds

1 2 3