Searched refs:idx (Results 151 - 175 of 2166) sorted by relevance

1234567891011>>

/external/lldb/source/Core/
H A DDynamicLoader.cpp35 for (uint32_t idx = 0; (create_callback = PluginManager::GetDynamicLoaderCreateCallbackAtIndex(idx)) != NULL; ++idx)
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.cpp39 DWARFDIECollection::GetDIEPtrAtIndex(uint32_t idx) const
41 if (idx < m_dies.size())
42 return m_dies[idx];
/external/lldb/source/Target/
H A DOperatingSystem.cpp39 for (uint32_t idx = 0; (create_callback = PluginManager::GetOperatingSystemCreateCallbackAtIndex(idx)) != NULL; ++idx)
H A DThreadList.cpp98 ThreadList::GetThreadAtIndex (uint32_t idx, bool can_update) argument
105 if (idx < m_threads.size())
106 thread_sp = m_threads[idx];
119 uint32_t idx = 0; local
121 for (idx = 0; idx < num_threads; ++idx)
123 if (m_threads[idx]->GetID() == tid)
125 thread_sp = m_threads[idx];
141 uint32_t idx local
164 uint32_t idx = 0; local
187 uint32_t idx = 0; local
209 uint32_t idx = 0; local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h46 uint16_t getFormByIndex(uint32_t idx) const {
47 return idx < AttributeSpecs.size() ? AttributeSpecs[idx].Form : 0;
/external/chromium_org/third_party/skia/include/core/
H A DSkTDStack.h51 const T& index(int idx) const {
52 SkASSERT(fRec && fCount > idx);
53 return fRec->fSlots[fCount - idx - 1];
56 T& index(int idx) { argument
57 SkASSERT(fRec && fCount > idx);
58 return fRec->fSlots[fCount - idx - 1];
/external/libnl/src/
H A Dnf-monitor.c41 int i, idx; local
69 for (idx = 1; argc > idx; idx++) {
71 if (strcmp(argv[idx], groups[i].gr_name))
84 argv[idx]);
/external/lldb/include/lldb/Target/
H A DStackFrameList.h40 GetFrameAtIndex (uint32_t idx);
57 SetSelectedFrameByIndex (uint32_t idx);
60 GetVisibleStackFrameIndex(uint32_t idx) argument
63 return idx - m_current_inlined_depth;
65 return idx;
98 SetFrameAtIndex (uint32_t idx, lldb::StackFrameSP &frame_sp);
/external/skia/include/core/
H A DSkTDStack.h51 const T& index(int idx) const {
52 SkASSERT(fRec && fCount > idx);
53 return fRec->fSlots[fCount - idx - 1];
56 T& index(int idx) { argument
57 SkASSERT(fRec && fCount > idx);
58 return fRec->fSlots[fCount - idx - 1];
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRuleStack.h60 - (void) insertObject:(ANTLRHashRule *)aHashRule atIndex:(NSInteger)idx;
61 - (ANTLRHashRule *)objectAtIndex:(NSInteger)idx;
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttgload.h39 FT_UInt idx,
45 FT_UInt idx,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_linkage.c87 unsigned idx = finst->Dst[i].Register.Index; local
88 if(semantic_name[idx] == TGSI_SEMANTIC_GENERIC)
90 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
100 unsigned idx = finst->Src[i].Register.Index; local
101 if(semantic_name[idx] == TGSI_SEMANTIC_GENERIC)
103 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
145 unsigned idx = 0; local
147 layout[idx++] = i;
/external/chromium_org/tools/perf/profile_creators/
H A Dsmall_profile_creator.py24 idx = page.page_set.pages.index(page)
26 if idx <= (len(page.page_set.pages) - self._NUM_TABS):
/external/compiler-rt/test/asan/TestCases/
H A Dstack-buffer-overflow-with-position.cc22 int idx = atoi(argv[1]); local
28 char *p = AAA + idx;
/external/elfutils/0.153/libdw/
H A Ddwarf_entry_breakpoints.c111 size_t idx = (l + u) / 2; local
112 if (lines->info[idx].addr < low)
113 l = idx + 1;
114 else if (lines->info[idx].addr > low)
115 u = idx;
116 else if (lines->info[idx].end_sequence)
117 l = idx + 1;
120 l = idx;
/external/freetype/src/autofit/
H A Dhbshim.c117 hb_codepoint_t idx; local
190 for ( idx = -1; hb_set_next( gsub_lookups, &idx ); )
193 FT_TRACE4(( " %d", idx ));
200 idx,
221 for ( idx = -1; hb_set_next( gpos_lookups, &idx ); )
224 FT_TRACE4(( " %d", idx ));
231 idx,
270 for ( idx
[all...]
/external/freetype/src/truetype/
H A Dttgload.h39 FT_UInt idx,
45 FT_UInt idx,
/external/lldb/include/lldb/Interpreter/
H A DCommandHistory.h44 GetStringAtIndex (size_t idx) const;
47 operator [] (size_t idx) const;
/external/lldb/scripts/Python/interface/
H A DSBStringList.i38 GetStringAtIndex (size_t idx);
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableArray.cpp76 CFCMutableArray::GetValueAtIndex(CFIndex idx) const
82 if (0 <= idx && idx < num_array_items)
84 return ::CFArrayGetValueAtIndex (array, idx);
91 CFCMutableArray::SetValueAtIndex(CFIndex idx, const void *value) argument
97 if (0 <= idx && idx < num_array_items)
99 ::CFArraySetValueAtIndex (array, idx, value);
H A DCFCMutableArray.h29 const void * GetValueAtIndex(CFIndex idx) const;
30 bool SetValueAtIndex(CFIndex idx, const void *value);
/external/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp118 for (size_t idx = 0; idx < file_spec_list.GetSize(); ++idx)
121 const FileSpec fspec = file_spec_list.GetFileSpecAtIndex (idx);
162 for (size_t idx = 0; idx < sizeof(g_sections) / sizeof(g_sections[0]); ++idx)
164 SectionType section_type = g_sections[idx];

Completed in 3623 milliseconds

1234567891011>>