Home
last modified time | relevance | path

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

123456

/third_party/skia/third_party/externals/tint/src/writer/msl/
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/
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.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/
DARMBaseInfo.h92 Else enumerator
134 case ARMVCC::Else: return "e"; in ARMVPTPredToString()
142 .Case("e", ARMVCC::Else) in ARMVectorCondCodeFromString()
/third_party/typescript/tests/baselines/reference/
DmappedTypeAsClauses.js94 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
221 declare type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
DmappedTypeAsClauses.types180 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
181 >If : If<Cond, Then, Else>
DmappedTypeAsClauses.symbols280 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
284 >Else : Symbol(Else, Decl(mappedTypeAsClauses.ts, 92, 35))
287 >Else : Symbol(Else, Decl(mappedTypeAsClauses.ts, 92, 35))
/third_party/skia/third_party/externals/tint/src/writer/spirv/
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/typescript/tests/cases/conformance/types/mapped/
DmappedTypeAsClauses.ts96 type If<Cond extends boolean, Then, Else> = Cond extends true ? Then : Else;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DMVEVPTBlockPass.cpp114 assert(Pred != ARMVCC::Else && "VPT block pass does not expect Else preds"); in InsertVPTBlocks()
130 assert(NextPred != ARMVCC::Else && in InsertVPTBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIAnnotateControlFlow.cpp70 Function *Else; member in __anoncd54448b0111::SIAnnotateControlFlow
153 Else = Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_else, in initialize()
224 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
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()
DTGLexer.h69 Ifdef, Ifndef, Else, Endif, Define enumerator
/third_party/zlib/old/
Dvisual-basic.txt48 #Else
121 Else
152 Else
/third_party/python/PCbuild/
Didle.bat4 rem -d Run Debug build (python_d.exe). Else release build.
/third_party/node/deps/npm/node_modules/find-npm-prefix/
DREADME.md26 2. Else, look for the first parent directory that contains a `node_modules` or a `package.json`
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp191 Else, enumerator
242 case Else: in nestingString()
476 push(Else); in ParseInstruction()
482 if (pop(Name, If, Else)) in ParseInstruction()
/third_party/gstreamer/gstplugins_bad/ext/openexr/
Dmeson.build14 # If setting -std to c++98 fixes it, use that! Else, warn.
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource2.ts35 Else = 1 << 19, // ELSE
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DShaderCore.hpp397 Else If(hasSequentialOffsets(sizeof(float)) && !anyLanesDisabled) in Load()
403 Else in Load()
481 Else in Store()
/third_party/skia/third_party/externals/tint/src/resolver/
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()
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/gstreamer/gstplugins_good/ext/jack/
Dmeson.build26 # C:/Program Files/ contains 64-bit programs. Else, we're on 32-bit Windows
/third_party/skia/third_party/externals/tint/src/writer/glsl/
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/
Dgenerator_impl_binary_test.cc334 Else(create<ast::BinaryExpression>(ast::BinaryOp::kLogicalOr, in TEST_F()
337 Else(Block(Return(3)))); in TEST_F()

123456