HomeSort by relevance Sort by last modified time
    Searched refs:NameIndex (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 24 support::ulittle32_t NameIndex;
53 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /external/llvm/lib/DebugInfo/PDB/Raw/
NameMap.cpp 123 uint32_t NameIndex;
124 if (auto EC = Stream.readInteger(NameIndex))
142 Mapping.insert({Str, NameIndex});
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 30 support::ulittle32_t NameIndex;
98 Item.NameIndex = BlockHeader->NameIndex;
ModuleSubstream.h 38 support::ulittle32_t NameIndex; // Index in DBI name buffer of filename.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
certenc.h 329 virtual HRESULT WINAPI GetNameChoice(LONG DistPointIndex,LONG NameIndex,LONG *pNameChoice) = 0;
330 virtual HRESULT WINAPI GetName(LONG DistPointIndex,LONG NameIndex,BSTR *pstrName) = 0;
333 virtual HRESULT WINAPI SetNameEntry(LONG DistPointIndex,LONG NameIndex,LONG NameChoice,const BSTR strName) = 0;
349 HRESULT (WINAPI *GetNameChoice)(ICertEncodeCRLDistInfo *This,LONG DistPointIndex,LONG NameIndex,LONG *pNameChoice);
350 HRESULT (WINAPI *GetName)(ICertEncodeCRLDistInfo *This,LONG DistPointIndex,LONG NameIndex,BSTR *pstrName);
353 HRESULT (WINAPI *SetNameEntry)(ICertEncodeCRLDistInfo *This,LONG DistPointIndex,LONG NameIndex,LONG NameChoice,const BSTR strName);
371 #define ICertEncodeCRLDistInfo_GetNameChoice(This,DistPointIndex,NameIndex,pNameChoice) (This)->lpVtbl->GetNameChoice(This,DistPointIndex,NameIndex,pNameChoice)
372 #define ICertEncodeCRLDistInfo_GetName(This,DistPointIndex,NameIndex,pstrName) (This)->lpVtbl->GetName(This,DistPointIndex,NameIndex,pstrName
    [all...]
usbuser.h 301 UCHAR NameIndex;
  /external/deqp/scripts/khr_util/
registry.py 202 class NameIndex(Index):
338 params=NameIndex(map(parseParam, eCmd.findall('param'))))
350 enums=NameIndex(enums[name] for name in eGroup.xpath('enum/@name')
354 return NameIndex(sorted(items, key=lambda item: item.location))
356 groups = NameIndex(createMissing=createGroup, kind="group")
357 types = NameIndex(map(createType, spec.types),
359 enums = NameIndex(map(createEnum, spec.enums),
361 commands = NameIndex(map(createCommand, spec.commands),
  /external/swiftshader/third_party/subzero/src/
IceConverter.cpp 813 uint32_t NameIndex = 0;
816 V->setName(createUnnamedName(GlobalPrefix, NameIndex));
817 ++NameIndex;
828 uint32_t NameIndex = 0;
831 F.setName(createUnnamedName(FunctionPrefix, NameIndex));
832 ++NameIndex;
    [all...]
PNaClTranslator.cpp 468 // Gives Decl a name if it doesn't already have one. Prefix and NameIndex are
469 // used to generate the name. NameIndex is automatically incremented if a new
475 NaClBcIndexSize_t &NameIndex) {
488 Decl->setName(Ctx, Translator.createUnnamedName(Prefix, NameIndex));
492 ++NameIndex;
501 NaClBcIndexSize_t NameIndex = 0;
503 installDeclarationName(Var, GlobalPrefix, "global", NameIndex);
513 NaClBcIndexSize_t NameIndex = 0;
515 installDeclarationName(Func, FunctionPrefix, "function", NameIndex);
    [all...]
  /external/llvm/tools/llvm-pdbdump/
LLVMOutputStyle.cpp 554 if (auto Result = getFileNameForOffset2(L.NameIndex))

Completed in 550 milliseconds

1 2