HomeSort by relevance Sort by last modified time
    Searched full:theid (Results 1 - 25 of 25) sorted by null

  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVValue.h 60 SPIRVType *TheType, SPIRVId TheId)
61 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId), Type(TheType) {
73 SPIRVId TheId)
74 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId), Type(NULL) {
130 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId,
132 :SPIRVValue(M, 0, OpConstant, TheType, TheId){
138 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, float TheValue)
139 :SPIRVValue(M, 0, OpConstant, TheType, TheId){
145 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, double TheValue)
146 :SPIRVValue(M, 0, OpConstant, TheType, TheId){
    [all...]
SPIRVType.h 62 SPIRVId TheId)
63 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId){}
109 SPIRVTypeVoid(SPIRVModule *M, SPIRVId TheId)
110 :SPIRVType(M, 2, OpTypeVoid, TheId){}
120 SPIRVTypeBool(SPIRVModule *M, SPIRVId TheId)
121 :SPIRVType(M, 2, OpTypeBool, TheId){}
132 SPIRVTypeInt(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth,
134 :SPIRVType(M, 4, OC , TheId), BitWidth(TheBitWidth),
167 SPIRVTypeFloat(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth)
168 :SPIRVType(M, 3, OC, TheId), BitWidth(TheBitWidth){
    [all...]
SPIRVInstruction.cpp 50 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB)
51 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheType, TheId),
57 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB, SPIRVModule *TheBM)
58 : SPIRVValue(TheBM, TheWordCount, TheOC, TheType, TheId), BB(TheBB){
64 SPIRVId TheId, SPIRVBasicBlock *TheBB)
65 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheId), BB(TheBB){
96 SPIRVFunctionCall::SPIRVFunctionCall(SPIRVId TheId, SPIRVFunction *TheFunction,
100 TheId, TheArgs, BB), FunctionId(TheFunction->getId()){
SPIRVFunction.h 52 SPIRVFunctionParameter(SPIRVType *TheType, SPIRVId TheId,
86 SPIRVFunction(SPIRVModule *M, SPIRVTypeFunction *FunctionType, SPIRVId TheId)
87 :SPIRVValue(M, 5, OpFunction, FunctionType->getReturnType(), TheId),
89 addAllArguments(TheId + 1);
141 SPIRVFunctionParameter *addArgument(unsigned TheArgNo, SPIRVId TheId) {
144 TheId, this, TheArgNo);
SPIRVEntry.cpp 112 SPIRVEntry::exist(SPIRVId TheId)const {
113 return Module->exist(TheId);
117 SPIRVEntry::getOrCreate(SPIRVId TheId)const {
119 bool Found = Module->exist(TheId, &Entry);
121 return Module->addForward(TheId, nullptr);
126 SPIRVEntry::getValue(SPIRVId TheId)const {
127 return get<SPIRVValue>(TheId);
131 SPIRVEntry::getValueType(SPIRVId TheId)const {
132 return get<SPIRVValue>(TheId)->getType();
232 SPIRVEntry::getEntry(SPIRVId TheId) const
    [all...]
SPIRVInstruction.h 107 SPIRVId TheId, SPIRVBasicBlock *TheBB);
110 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB,
113 SPIRVInstruction(unsigned TheWordCount, Op TheOC, SPIRVId TheId,
190 SPIRVId TheId, SPIRVBasicBlock *TheBB,
193 Inst->init(TheType, TheId, TheBB, TheModule);
198 SPIRVId TheId, const std::vector<SPIRVWord> &TheOps, SPIRVBasicBlock *TheBB,
201 Inst->init(TheType, TheId, TheBB, TheModule);
212 SPIRVId TheId, SPIRVBasicBlock *TheBB,
220 setId(hasId() ? TheId : SPIRVID_INVALID);
443 SPIRVVariable(SPIRVType *TheType, SPIRVId TheId,
    [all...]
SPIRVEntry.h 206 SPIRVId TheId)
207 :Module(M), OpCode(TheOpCode), Id(TheId), Attrib(SPIRVEA_DEFAULT),
233 T* get(SPIRVId TheId)const { return static_cast<T*>(getEntry(TheId));}
235 SPIRVEntry *getOrCreate(SPIRVId TheId) const;
236 SPIRVValue *getValue(SPIRVId TheId)const;
239 SPIRVType *getValueType(SPIRVId TheId)const;
285 void setId(SPIRVId TheId) { Id = TheId;}
437 SPIRVId TheId, const std::string &TheName)
    [all...]
SPIRVBasicBlock.cpp 51 SPIRVBasicBlock::SPIRVBasicBlock(SPIRVId TheId, SPIRVFunction *Func)
52 :SPIRVValue(Func->getModule(), 2, OpLabel, TheId), ParentF(Func) {
SPIRVFunction.cpp 49 SPIRVFunctionParameter::SPIRVFunctionParameter(SPIRVType *TheType, SPIRVId TheId,
52 TheType, TheId),
SPIRVType.cpp 261 SPIRVTypeArray::SPIRVTypeArray(SPIRVModule *M, SPIRVId TheId, SPIRVType *TheElemType,
263 :SPIRVType(M, 4, OpTypeArray, TheId), ElemType(TheElemType),
SPIRVDecorate.h 237 SPIRVDecorationGroup(SPIRVModule *TheModule, SPIRVId TheId)
238 :SPIRVEntry(TheModule, WC, OC, TheId){
SPIRVBasicBlock.h 53 SPIRVBasicBlock(SPIRVId TheId, SPIRVFunction *Func);
SPIRVModule.cpp 98 virtual SPIRVValue *getValue(SPIRVId TheId) const;
102 virtual SPIRVType *getValueType(SPIRVId TheId)const;
    [all...]
SPIRVModule.h 125 virtual SPIRVValue *getValue(SPIRVId TheId)const = 0;
130 virtual SPIRVType *getValueType(SPIRVId TheId)const = 0;
  /external/python/cpython2/Mac/Modules/res/
_Resmodule.c 189 short theID;
198 &theID,
206 theID,
215 short theID;
221 &theID,
225 theID,
240 short theID;
247 &theID,
252 theID,
484 PyDoc_STR("() -> (short theID, ResType theType, Str255 name)")}
    [all...]
  /external/gptfdisk/
parttypes.cc 363 uint16_t theID = 0xFFFF;
367 theID = theItem->MBRType;
374 theID = 0xFFFF;
376 return theID;
  /external/icu/icu4c/source/i18n/
transreg.cpp 75 TransliteratorAlias::TransliteratorAlias(const UnicodeString& theID,
79 ID(theID),
87 TransliteratorAlias::TransliteratorAlias(const UnicodeString& theID,
90 ID(theID),
    [all...]
transreg.h 61 TransliteratorAlias(const UnicodeString& theID,
translit.cpp 123 * @param theID the string identifier for this transliterator
129 Transliterator::Transliterator(const UnicodeString& theID,
131 UObject(), ID(theID), filter(adoptedFilter),
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorRegistry.java 255 public CompoundRBTEntry(String theID, List<String> theIDBlockVector,
258 ID = theID;
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorRegistry.java 254 public CompoundRBTEntry(String theID, List<String> theIDBlockVector,
257 ID = theID;
    [all...]
  /external/python/cpython2/Modules/
_bsddb.c     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TransliteratorTest.java     [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TransliteratorTest.java     [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 

Completed in 1209 milliseconds