Searched refs:Else (Results 1 - 25 of 59) sorted by relevance

123

/external/eigen/Eigen/src/Eigen2Support/
H A 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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl_unittest.cc123 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));
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));
331 return If((pid & 0xa5) == 0xa0, Error(EINVAL)).Else(Error(EACCES));
369 .Else(Erro
[all...]
H A Dbpf_dsl.h49 // .Else(Trap(SetFlagHandler, NULL));
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/
H A Dsyscall_parameters_restrictions.cc135 .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());
300 return If(who == RUSAGE_SELF, Allow()).Else(CrashSIGSYS());
H A Dbaseline_policy.cc175 return If(advice == MADV_DONTNEED, Allow()).Else(Error(EPERM));
202 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS());
240 .Else(CrashSIGSYS());
/external/v8/src/compiler/
H A Dcontrol-builders.cc21 void IfBuilder::Else() { function in class:v8::internal::compiler::IfBuilder
70 control_if.Else();
81 control_if.Else();
151 control_if.Else();
160 control_if.Else();
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c46 struct rc_instruction * Else; member in struct:branch_info
100 branch->Else = inst;
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);
H A Dr500_fragprog_emit.c59 int Else; member in struct:branch_info
551 branch->Else = -1;
567 branch->Else = newip;
596 if (branch->Else >= 0) {
599 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1);
601 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP
608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1);
/external/v8/src/
H A Dcode-stubs-hydrogen.cc309 is_smi.Else();
315 is_number.Else();
325 is_string.Else();
336 is_oddball.Else();
343 is_symbol.Else();
357 is_function.Else();
365 is_##type.Else(); {
377 is_undetectable.Else();
503 zero_capacity.Else();
511 if_fixed_cow.Else();
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp164 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11886::IfExprAST
168 std::unique_ptr<ExprAST> Else)
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
331 auto Else = ParseExpression(); local
332 if (!Else)
336 std::move(Else));
630 Value *ElseV = Else->codegen();
635 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
167 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
H A DPPCallbacks.h313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
495 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
496 First->Else(Loc, IfLoc);
497 Second->Else(Loc, IfLoc);
/external/eigen/Eigen/src/Core/util/
H A 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/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp183 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11887::IfExprAST
187 std::unique_ptr<ExprAST> Else)
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
364 auto Else = ParseExpression(); local
365 if (!Else)
369 std::move(Else));
741 Value *ElseV = Else->codegen();
746 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
186 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp189 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11888::IfExprAST
193 std::unique_ptr<ExprAST> Else)
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
383 auto Else = ParseExpression(); local
384 if (!Else)
388 std::move(Else));
846 Value *ElseV = Else->codegen();
851 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
192 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp294 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11890::IfExprAST
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);
524 auto Else = ParseExpression(); local
525 if (!Else)
529 std::move(Else));
1037 Value *ElseV = Else
297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp138 const Stmt *Else = Stmt2; local
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
149 Else = I2->getElse();
/external/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp60 Constant *Else; member in class:__anon12488::SIAnnotateControlFlow
134 Else = M.getOrInsertFunction(
171 /// an "Else" block?
202 /// \brief Close the last "If" block and open a new "Else" block
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);

Completed in 1284 milliseconds

123