Home
last modified time | relevance | path

Searched refs:__table (Results 1 – 25 of 37) sorted by relevance

12

/external/libcxx/include/
Dunordered_map767 __key_equal, __allocator_type> __table;
769 __table __table_;
771 typedef typename __table::_NodeTypes _NodeTypes;
772 typedef typename __table::__node_pointer __node_pointer;
773 typedef typename __table::__node_const_pointer __node_const_pointer;
774 typedef typename __table::__node_traits __node_traits;
775 typedef typename __table::__node_allocator __node_allocator;
776 typedef typename __table::__node __node;
781 static_assert((is_same<typename __table::__container_value_type, value_type>::value), "");
782 static_assert((is_same<typename __table::__node_value_type, __value_type>::value), "");
[all …]
Dunordered_set351 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
353 __table __table_;
356 typedef typename __table::pointer pointer;
357 typedef typename __table::const_pointer const_pointer;
358 typedef typename __table::size_type size_type;
359 typedef typename __table::difference_type difference_type;
361 typedef typename __table::const_iterator iterator;
362 typedef typename __table::const_iterator const_iterator;
363 typedef typename __table::const_local_iterator local_iterator;
364 typedef typename __table::const_local_iterator const_local_iterator;
[all …]
/external/syslinux/gpxe/src/include/gpxe/
Dinit.h19 #define INIT_FNS __table ( struct init_fn, "init_fns" )
57 #define STARTUP_FNS __table ( struct startup_fn, "startup_fns" )
Dopen.h64 #define URI_OPENERS __table ( struct uri_opener, "uri_openers" )
87 #define SOCKET_OPENERS __table ( struct socket_opener, "socket_openers" )
Dtcpip.h104 #define TCPIP_PROTOCOLS __table ( struct tcpip_protocol, "tcpip_protocols" )
111 __table ( struct tcpip_net_protocol, "tcpip_net_protocols" )
Dfeatures.h57 #define DHCP_FEATURES __table ( uint8_t, "dhcp_features" )
79 #define FEATURES __table ( struct feature, "features" )
Dsettings.h41 #define SETTINGS __table ( struct setting, "settings" )
136 #define SETTING_TYPES __table ( struct setting_type, "setting_types" )
155 __table ( struct settings_applicator, "settings_applicators" )
Derrortab.h19 #define ERRORTAB __table ( struct errortab, "errortab" )
Dcommand.h22 #define COMMANDS __table ( struct command, "commands" )
Dsanboot.h14 __table ( struct sanboot_protocol, "sanboot_protocols" )
Darp.h33 __table ( struct arp_net_protocol, "arp_net_protocols" )
Dgdbstub.h50 #define GDB_TRANSPORTS __table ( struct gdb_transport, "gdb_transports" )
Deapol.h105 #define EAPOL_HANDLERS __table ( struct eapol_handler, "eapol_handlers" )
Ddevice.h108 #define ROOT_DEVICES __table ( struct root_device, "root_devices" )
Disa.h64 #define ISA_DRIVERS __table ( struct isa_driver, "isa_drivers" )
Dnetdevice.h333 #define LL_PROTOCOLS __table ( struct ll_protocol, "ll_protocols" )
339 #define NET_PROTOCOLS __table ( struct net_protocol, "net_protocols" )
Dprocess.h70 #define PERMANENT_PROCESSES __table ( struct process, "processes" )
Dmca.h83 #define MCA_DRIVERS __table ( struct mca_driver, "mca_drivers" )
Deisa.h85 #define EISA_DRIVERS __table ( struct eisa_driver, "eisa_drivers" )
/external/libcxx/include/ext/
Dhash_set228 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
230 __table __table_;
233 typedef typename __table::pointer pointer;
234 typedef typename __table::const_pointer const_pointer;
235 typedef typename __table::size_type size_type;
236 typedef typename __table::difference_type difference_type;
238 typedef typename __table::const_iterator iterator;
239 typedef typename __table::const_iterator const_iterator;
450 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
452 __table __table_;
[all …]
Dhash_map486 __key_equal, __allocator_type> __table;
488 __table __table_;
490 typedef typename __table::__node_pointer __node_pointer;
491 typedef typename __table::__node_const_pointer __node_const_pointer;
492 typedef typename __table::__node_traits __node_traits;
493 typedef typename __table::__node_allocator __node_allocator;
494 typedef typename __table::__node __node;
504 typedef __hash_map_iterator<typename __table::iterator> iterator;
505 typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator;
760 __key_equal, __allocator_type> __table;
[all …]
/external/libcxx/include/experimental/
Dfunctional154 std::unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table;
159 : __default_value_(__default), __table(__sz, __hf, __pred) {}
164 __table [__key] = __val; // Would skip_.insert (val) be better here?
170 auto __it = __table.find (__key);
171 return __it == __table.end() ? __default_value_ : __it->second;
185 skip_map __table;
191 std::fill_n(__table.begin(), __table.size(), __default);
197 __table[static_cast<unsigned_key_type>(__key)] = __val;
203 return __table[static_cast<unsigned_key_type>(__key)];
/external/syslinux/gpxe/src/include/gpxe/efi/
Defi.h64 #define EFI_PROTOCOLS __table ( struct efi_protocol, "efi_protocols" )
99 __table ( struct efi_config_table, "efi_config_tables" )
/external/syslinux/gpxe/src/include/
Dconsole.h91 #define CONSOLES __table ( struct console_driver, "consoles" )
/external/autotest/scheduler/
Dscheduler_models.py203 self.__table = self._table_name
227 sql = 'SELECT * FROM %s WHERE ID=%%s' % self.__table
231 % (self.__table, row_id))
238 self.__table, row, len(row), self._fields, len(self._fields)))
291 table = self.__table
309 query = "UPDATE %s SET %s = %%s WHERE id = %%s" % (self.__table, field)
328 (self.__table, columns, values_str))
338 query = 'DELETE FROM %s WHERE id=%%s' % self.__table

12