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

1 2 3

  /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/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 81 } else {
123 return If(pid == 0, Error(EPERM)).Else(Error(EINVAL));
127 return If(uid != 42, Kill()).Else(Allow());
159 .Else(Error(EINVAL));
203 .Else(Error(EINVAL));
224 // Expect EINVAL for anything else.
241 return If(addr == kDeadBeefAddr, Error(EPERM)).Else(Allow());
264 return If(fd == -314, Error(EPERM)).Else(Allow());
323 return If((uid & 0xf) == 0, Error(EINVAL)).Else(Error(EACCES));
327 return If((gid & 0xf0) == 0xf0, Error(EINVAL)).Else(Error(EACCES))
    [all...]
bpf_dsl.h 49 // .Else(Trap(SetFlagHandler, NULL));
50 // } else {
63 // | If(bool, result)[.ElseIf(bool, result)].Else(result)
187 // Else terminates a conditional result expression using |else_result| as
189 ResultExpr Else(const ResultExpr& else_result) const;
312 // If/ElseIf/Else chain.
319 return elser_.Else(result);
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 69 #else
77 #else
85 #else
93 #else
135 .Else(CrashSIGSYSClone());
169 return If((flags & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
179 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS());
208 If((long_arg & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()))
238 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill());
268 .Else(CrashSIGSYS())
    [all...]
baseline_policy.cc 175 return If(advice == MADV_DONTNEED, Allow()).Else(Error(EPERM));
198 // Only allow AF_UNIX, PF_UNIX. Crash if anything else is seen.
202 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS());
240 .Else(CrashSIGSYS());
  /external/v8/src/compiler/
control-builders.cc 21 void IfBuilder::Else() {
70 control_if.Else();
81 control_if.Else();
151 control_if.Else();
160 control_if.Else();
  /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...]
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/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 69 if (IdentifierStr == "else")
162 /// IfExprAST - Expression class for if/then/else.
164 std::unique_ptr<ExprAST> Cond, Then, Else;
168 std::unique_ptr<ExprAST> Else)
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
291 else
309 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
327 return Error("expected else");
331 auto Else = ParseExpression()
    [all...]
  /external/v8/src/
code-stubs-hydrogen.cc 159 } else {
199 } else {
224 } else {
337 is_smi.Else();
343 is_number.Else();
353 is_string.Else();
364 is_oddball.Else();
371 is_symbol.Else();
385 is_function.Else();
393 is_##type.Else(); {
    [all...]
  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
PPCallbacks.h 266 /// \#if/\#else directive and ends after the \#endif/\#else directive.
310 /// \brief Hook called whenever an \#else is seen.
313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
494 /// \brief Hook called whenever an \#else is seen.
495 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
496 First->Else(Loc, IfLoc);
497 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/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 73 if (IdentifierStr == "else")
181 /// IfExprAST - Expression class for if/then/else.
183 std::unique_ptr<ExprAST> Cond, Then, Else;
187 std::unique_ptr<ExprAST> Else)
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
324 else
342 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
360 return Error("expected else");
364 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 76 if (IdentifierStr == "else")
187 /// IfExprAST - Expression class for if/then/else.
189 std::unique_ptr<ExprAST> Cond, Then, Else;
193 std::unique_ptr<ExprAST> Else)
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
343 else
361 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return Error("expected else");
383 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 71 return "else";
113 } else
144 if (IdentifierStr == "else")
292 /// IfExprAST - Expression class for if/then/else.
294 std::unique_ptr<ExprAST> Cond, Then, Else;
298 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
300 Else(std::move(Else)) {}
306 Else->dump(indent(out, ind) << "Else:", ind + 1)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 67 else
133 // } else if (b) {
138 const Stmt *Else = Stmt2;
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
149 Else = I2->getElse();
160 // } else
239 } else if ((FloatLit1) && (FloatLit2)) {
245 } else if (LHS->getType()->hasFloatingRepresentation()) {
250 } else {
260 else
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 38 static const char *const ElseIntrinsic = "llvm.SI.else";
41 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
60 Constant *Else;
134 Else = M.getOrInsertFunction(
171 /// an "Else" block?
180 } else {
202 /// \brief Close the last "If" block and open a new "Else" block
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
263 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
268 } else {
    [all...]

Completed in 340 milliseconds

1 2 3