/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFGdbIndex.cpp | 65 if (!E.NameOffset && !E.VecOffset) in dumpSymbolTable() 69 E.NameOffset, E.VecOffset); in dumpSymbolTable() 72 ConstantPoolOffset - StringPoolOffset + E.NameOffset); in dumpSymbolTable() 171 uint32_t NameOffset = Data.getU32(&Offset); in parseImpl() local 173 SymbolTable.push_back({NameOffset, CuVecOffset}); in parseImpl() 174 if (NameOffset || CuVecOffset) in parseImpl()
|
H A D | DWARFAcceleratorTable.cpp | 168 uint64_t NameOffset = *DataOffset; in dumpName() local 177 DictScope NameScope(W, ("Name@0x" + Twine::utohexstr(NameOffset)).str()); in dumpName()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
H A D | FunctionInfo.cpp | 160 uint32_t NameOffset = Data.getU32(&Offset); in lookup() local 174 if (NameOffset == 0) in lookup() 178 LR.FuncName = GR.getString(NameOffset); in lookup()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFGdbIndex.h | 52 uint32_t NameOffset; /// Offset of the symbol's name in the constant pool. member
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 1265 int NameOffset; // When Window==NULL, offset to name within parent ImGuiTabBar::TabsNames member 1270 ImGuiTabItem() { ID = Flags = 0; LastFrameVisible = LastFrameSelected = -1; NameOffset = -1; Offset = Width = WidthContents = 0.0f; } in ImGuiTabItem() 1302 IM_ASSERT(tab->NameOffset != -1 && tab->NameOffset < TabsNames.Buf.Size); in GetTabName() 1303 return TabsNames.Buf.Data + tab->NameOffset; in GetTabName()
|
H A D | imgui_widgets.cpp | 6389 tab->NameOffset = tab_bar->TabsNames.size();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | COFF.h | 722 support::ulittle32_t NameOffset; member 725 return maskTrailingOnes<uint32_t>(31) & NameOffset; in getNameOffset() 729 void setNameOffset(uint32_t Offset) { NameOffset = Offset | (1 << 31); } in setNameOffset()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | SampleProfReader.cpp | 549 for (auto NameOffset : FuncOffsetTable) { in readFuncProfiles() 550 auto FuncName = NameOffset.first; in readFuncProfiles() 554 const uint8_t *FuncProfileAddr = Start + NameOffset.second; in readFuncProfiles()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
H A D | name_table.cc | 478 int32_t offset = NameOffset(index); in NameAsBytes() 571 int32_t NameTable::NameOffset(int32_t index) { in NameOffset() function in sfntly::NameTable
|
H A D | name_table.h | 718 int32_t NameOffset(int32_t index);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_internal.h | 2061 ImS32 NameOffset; // When Window==NULL, offset to name within parent ImGuiTabBar::TabsNames 2066 ImGuiTabItem() { memset(this, 0, sizeof(*this)); LastFrameVisible = LastFrameSelected = -1; NameOffset = -1; BeginOrder = IndexDuringLayout = -1; } 2108 IM_ASSERT(tab->NameOffset != -1 && tab->NameOffset < TabsNames.Buf.Size); 2109 return TabsNames.Buf.Data + tab->NameOffset; 2148 ImS16 NameOffset; // Offset into parent ColumnsNames[] 2177 NameOffset = -1;
|
H A D | imgui_tables.cpp | 553 // At this point the ->NameOffset field of each column will be invalid until TableUpdateLayout() or the first call to TableSetupColumn() in BeginTableEx() 750 column->NameOffset = -1; in TableUpdateLayout() 1458 column->NameOffset = -1; in TableSetupColumn() 1461 column->NameOffset = (ImS16)table->ColumnsNames.size(); in TableSetupColumn() 1530 return ""; // NameOffset is invalid at this point in TableGetColumnName() 1532 if (column->NameOffset == -1) in TableGetColumnName() 1534 return &table->ColumnsNames.Buf[column->NameOffset]; in TableGetColumnName() 3473 table->Columns[n].NameOffset = -1;
|
H A D | imgui.cpp | 11916 tab_n > 0 ? ", " : "", (tab->NameOffset != -1) ? tab_bar->GetTabName(tab) : "???"); in DebugNodeTabBar() 11938 tab_n, (tab->ID == tab_bar->SelectedTabId) ? '*' : ' ', tab->ID, (tab->NameOffset != -1) ? tab_bar->GetTabName(tab) : "???", tab->Offset, tab->Width, tab->ContentWidth); in DebugNodeTabBar()
|
H A D | imgui_widgets.cpp | 7922 tab->NameOffset = (ImS32)tab_bar->TabsNames.size();
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 1692 def NameOffset(self): member in Script 1698 self.name = self.ObjectField(self.NameOffset())
|