Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl_if_test.cc43 auto* i = If(cond, Block(Return()), Else(else_cond, Block(Return()))); in TEST_F()
63 auto* i = If(cond, Block(Return()), Else(nullptr, Block(Return()))); in TEST_F()
82 auto* i = If(cond, Block(Return()), Else(else_cond, Block(Return())), in TEST_F()
83 Else(nullptr, Block(Return()))); in TEST_F()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A 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()
H A Dr500_fragprog_emit.c61 int Else; member
553 branch->Else = -1; in emit_flowcontrol()
569 branch->Else = newip; in emit_flowcontrol()
598 if (branch->Else >= 0) { in emit_flowcontrol()
601 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1); in emit_flowcontrol()
603 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP in emit_flowcontrol()
610 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1); in emit_flowcontrol()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h92 Else enumerator
134 case ARMVCC::Else: return "e"; in ARMVPTPredToString()
142 .Case("e", ARMVCC::Else) in ARMVectorCondCodeFromString()
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Dbuilder_loop_test.cc264 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
360 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
366 ast::ElseStatementList{Else(nullptr, Block(Break()))}); in TEST_F()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DMVEVPTBlockPass.cpp108 // The idea of the predicate is that None, Then and Else are for use when in InsertVPTBlocks()
113 // hope we'll never generate an Else as input to this pass. in InsertVPTBlocks()
114 assert(Pred != ARMVCC::Else && "VPT block pass does not expect Else preds"); in InsertVPTBlocks()
130 assert(NextPred != ARMVCC::Else && in InsertVPTBlocks()
131 "VPT block pass does not expect Else preds"); in InsertVPTBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DTGLexer.cpp40 { tgtok::Else, "else" },
719 } else if (Kind == tgtok::Else) { in lexPreprocessor()
761 IfdefOrElseEntry.Kind != tgtok::Else) { in lexPreprocessor()
850 if (Kind != tgtok::Else && Kind != tgtok::Endif) { in prepSkipRegion()
H A DTGLexer.h47 // Keywords. ('ElseKW' is named to distinguish it from the existing 'Else'
69 Ifdef, Ifndef, Else, Endif, Define enumerator
179 // Either tgtok::Ifdef or tgtok::Else.
230 // one of the internal token kinds, i.e. Ifdef, Else, Endif, Define.
/third_party/typescript/tests/baselines/reference/
H A DmappedTypeAsClauses.js94 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
261 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
H A DparserRealSource10.js22 Else,
211 setTokenInfo(TokenID.Else, Reservation.TypeScriptAndJS, OperatorPrecedence.None, NodeType.None, OperatorPrecedence.None, NodeType.None, "else", ErrorRecoverySet.Else);
494 TokenID[TokenID["Else"] = 12] = "Else";
683 setTokenInfo(TokenID.Else, Reservation.TypeScriptAndJS, OperatorPrecedence.None, NodeType.None, OperatorPrecedence.None, NodeType.None, "else", ErrorRecoverySet.Else);
/third_party/python/PCbuild/
H A Didle.bat4 rem -d Run Debug build (python_d.exe). Else release build.
H A Drt.bat4 rem -d Run Debug build (python_d.exe). Else release build.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp70 Function *Else; member in __anon24474::SIAnnotateControlFlow
153 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else, in initialize()
184 /// an "Else" block?
219 /// Close the last "If" block and open a new "Else" block
224 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp191 Else, enumerator
242 case Else: in nestingString()
476 push(Else);
482 if (pop(Name, If, Else))
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DShaderCore.hpp397 Else If(hasSequentialOffsets(sizeof(float)) && !anyLanesDisabled) in Load()
403 Else in Load()
481 Else in Store()
H A DSpirvShaderSampling.cpp239 Else in emitSamplerRoutine()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Dresolver_behavior_test.cc352 auto* stmt = If(true, Block(), Else(Block(Discard()))); in TEST_F()
363 auto* stmt = If(true, Block(Discard()), Else(Block(Discard()))); in TEST_F()
385 Else(Equal(Call("DiscardOrNext"), 1), Block())); in TEST_F()
H A Dcompound_statement_test.cc236 auto* if_stmt = If(cond_a, Block(stmt_a), Else(cond_b, Block(stmt_b)), in TEST_F()
237 Else(nullptr, Block(stmt_c))); in TEST_F()
/third_party/node/deps/v8/src/interpreter/
H A Dcontrol-flow-builders.h292 void Else();
H A Dcontrol-flow-builders.cc238 void ConditionalControlFlowBuilder::Else() { in Else() function in v8::internal::interpreter::ConditionalControlFlowBuilder
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl_binary_test.cc334 Else(create<ast::BinaryExpression>(ast::BinaryOp::kLogicalOr, in TEST_F()
337 Else(Block(Return(3)))); in TEST_F()
/third_party/skia/third_party/externals/tint/src/writer/hlsl/
H A Dgenerator_impl_binary_test.cc334 Else(create<ast::BinaryExpression>(ast::BinaryOp::kLogicalOr, in TEST_F()
337 Else(Block(Return(3)))); in TEST_F()
/third_party/rust/crates/syn/src/
H A Dtoken.rs751 "else" pub struct Else
929 [else] => { $crate::token::Else };
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DEmulatedIntrinsics.cpp76 Else If(zeroMaskedLanes) in gather()
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DQuadRasterizer.cpp215 Else in For()

Completed in 18 milliseconds

12