Home
last modified time | relevance | path

Searched refs:lookup_table (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/mapi/glapi/gen/
DglX_server_table.py63 self.lookup_table = []
193 print ' LEAF(%u),' % (len(self.lookup_table))
219 self.lookup_table.append(temp)
289 print 'static const void *%s_function_table[%u][2] = {' % (self.name_base, len(self.lookup_table))
291 for func in self.lookup_table:
305 …int 'static const int_fast16_t %s_size_table[%u][2] = {' % (self.name_base, len(self.lookup_table))
308 for func in self.lookup_table:
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
DglX_server_table.py63 self.lookup_table = []
193 print ' LEAF(%u),' % (len(self.lookup_table))
219 self.lookup_table.append(temp)
289 print 'static const void *%s_function_table[%u][2] = {' % (self.name_base, len(self.lookup_table))
291 for func in self.lookup_table:
305 …int 'static const int_fast16_t %s_size_table[%u][2] = {' % (self.name_base, len(self.lookup_table))
308 for func in self.lookup_table:
/external/chromium_org/chrome/browser/chromeos/input_method/
Dinput_method_engine_browsertests.cc630 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
655 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
684 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
712 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
734 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
777 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
832 mock_candidate_window->last_update_lookup_table_arg().lookup_table; in IN_PROC_BROWSER_TEST_P()
/external/e2fsprogs/e2fsck/
Dsigcatcher.c311 static const char *lookup_table(int num, struct str_table *table) in lookup_table() function
324 const char *ret = lookup_table(num, table); in lookup_table_fallback()
344 cp = lookup_table(siginfo->si_code, generic_code_table); in die_signal_handler()
/external/chromium_org/ui/base/ime/chromeos/
Dmock_ime_candidate_window_handler.cc22 last_update_lookup_table_arg_.lookup_table.CopyFrom(table); in UpdateLookupTable()
Dmock_ime_candidate_window_handler.h18 ui::CandidateWindow lookup_table; member
/external/libcap-ng/
DAndroid.mk7 libcap-ng-0.7/src/lookup_table.c
/external/libcap-ng/libcap-ng-0.7/src/
DMakefile.am34 libcap_ng_la_SOURCES = cap-ng.c lookup_table.c
DMakefile.in106 am_libcap_ng_la_OBJECTS = cap-ng.lo lookup_table.lo
309 libcap_ng_la_SOURCES = cap-ng.c lookup_table.c
390 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lookup_table.Plo@am__quote@
/external/llvm/test/Transforms/FunctionAttrs/
Dnocapture.ll34 @lookup_table = global [2 x i1] [ i1 0, i1 1 ]
42 %lookup = getelementptr [2 x i1]* @lookup_table, i32 0, i32 %bit
67 %lookup = getelementptr [2 x i1]* @lookup_table, i32 0, i32 %bit
/external/chromium_org/chrome/browser/themes/
Dbrowser_theme_pack.cc222 static std::map<int,int>* lookup_table = new std::map<int,int>(); in GetPersistentIDByIDR() local
223 if (lookup_table->empty()) { in GetPersistentIDByIDR()
227 (*lookup_table)[idr] = prs_id; in GetPersistentIDByIDR()
233 (*lookup_table)[idr] = prs_id; in GetPersistentIDByIDR()
237 std::map<int,int>::iterator it = lookup_table->find(idr); in GetPersistentIDByIDR()
238 return (it == lookup_table->end()) ? -1 : it->second; in GetPersistentIDByIDR()