/third_party/glslang/SPIRV/ |
D | SpvBuilder.cpp | 86 Instruction* import = new Instruction(getUniqueId(), NoType, OpExtInstImport); in import() 146 spv::Id resultId = getUniqueId(); in addDebugScopeAndLine() 154 spv::Id resultId = getUniqueId(); in addDebugScopeAndLine() 171 Id typeId = getUniqueId(); in makeVoidType() 189 type = new Instruction(getUniqueId(), NoType, OpTypeBool); in makeBoolType() 210 type = new Instruction(getUniqueId(), NoType, OpTypeSampler); in makeSamplerType() 238 type = new Instruction(getUniqueId(), NoType, OpTypePointer); in makePointer() 253 Instruction* type = new Instruction(getUniqueId(), NoType, OpTypeForwardPointer); in makeForwardPointer() 294 type = new Instruction(getUniqueId(), NoType, OpTypeInt); in makeIntegerType() 334 type = new Instruction(getUniqueId(), NoType, OpTypeFloat); in makeFloatType() [all …]
|
D | SpvBuilder.h | 97 spv::Id strId = getUniqueId(); in getStringId() 162 Id getUniqueId() { return ++uniqueId; } in getUniqueId() function
|
/third_party/jsframework/runtime/vdom/ |
D | Node.ts | 33 public static getUniqueId(): string { method in IDGenerator 78 this._nodeId = IDGenerator.getUniqueId();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/ |
D | IPDBSourceFile.h | 30 virtual uint32_t getUniqueId() const = 0;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/DIA/ |
D | DIASourceFile.h | 25 uint32_t getUniqueId() const override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/ |
D | DIASourceFile.cpp | 27 uint32_t DIASourceFile::getUniqueId() const { in getUniqueId() function in DIASourceFile
|
/third_party/glslang/glslang/MachineIndependent/ |
D | SymbolTable.h | 108 virtual long long getUniqueId() const { return uniqueId; } in getUniqueId() function 728 uint64_t symbolId = symbol.getUniqueId(); in amendSymbolIdLevel() 753 copy->setUniqueId(shared->getUniqueId()); in copyUpDeferredInsert() 760 container->setUniqueId(anon->getAnonContainer().getUniqueId()); in copyUpDeferredInsert()
|
D | ShaderLang.cpp | 925 if (intermediate.getUniqueId() != 0) in ProcessDeferred() 926 symbolTable->overwriteUniqueId(intermediate.getUniqueId()); in ProcessDeferred()
|
D | localintermediate.h | 1076 unsigned long long getUniqueId() const { return uniqueId; } in getUniqueId() function
|
D | Intermediate.cpp | 99 …return addSymbol(variable.getUniqueId(), variable.getName(), variable.getType(), variable.getConst… in addSymbol()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 1316 …TIntermSymbol* intermSymbol = intermediate.addSymbol(variable->getUniqueId(), variable->getName(),… in executeInitializer() 1470 symbol->setId(variable->getUniqueId()); in parseSingleDeclaration() 1512 symbol->setId(variable->getUniqueId()); in parseSingleArrayDeclaration() 1616 TIntermSymbol *intermSymbol = intermediate.addSymbol(variable->getUniqueId(), in parseInvariantDeclaration() 1648 symbol->setId(variable->getUniqueId()); in parseDeclarator() 1691 symbol->setId(variable->getUniqueId()); in parseArrayDeclarator() 1856 variable.getUniqueId(), variable.getName(), variable.getType(), location); in addFunctionPrototypeDeclaration() 1935 function->setUniqueId(prevDec->getUniqueId()); in parseFunctionPrototype() 1989 variable->getUniqueId(), variable->getName(), variable->getType(), location); in parseFunctionPrototype() 2463 symbolId = instanceTypeDef->getUniqueId(); in addInterfaceBlock()
|
D | SymbolTable.h | 66 int getUniqueId() const { return uniqueId; } in getUniqueId() function
|
D | glslang.y | 242 $$ = context->intermediate.addSymbol(variable->getUniqueId(),
|
D | glslang_tab.cpp | 2384 … (yyval.interm.intermTypedNode) = context->intermediate.addSymbol(variable->getUniqueId(), in yyparse()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 1129 splitNonIoVars[variable.getUniqueId()] = makeInternalVariable(variable.getName(), splitType); in split() 1181 auto entry = flattenMap.insert(std::make_pair(variable.getUniqueId(), in flatten() 1576 if (wasFlattened(variable.getUniqueId())) { in assignToInterface() 1577 auto& memberList = flattenMap[variable.getUniqueId()].members; in assignToInterface() 1580 } else if (wasSplit(variable.getUniqueId())) { in assignToInterface() 1581 TVariable* splitIoVar = getSplitNonIoVar(variable.getUniqueId()); in assignToInterface() 1720 … flattenAccess(variable->getUniqueId(), mem, in handleFunctionDefinition() 3375 newId = newTexture->getUniqueId(); in handleSamplerTextureCombine() 5812 … TIntermSymbol* internalSymbolNode = new TIntermSymbol(internalAggregate->getUniqueId(), in addInputArgumentConversions() 10227 const auto shadowMode = textureShadowVariant.find((*symbol)->getUniqueId()); in fixTextureShadowModes() [all …]
|