/external/autotest/server/cros/ |
interactive_client.py | 125 def append_list_item(self, list_name, item_name, html): 129 @param item_name: Name to use for making modifications to the item. 135 return self._proxy.append_list_item(list_name, item_name, html) 138 def replace_list_item(self, item_name, html): 141 @param item_name: Name of item provided to append_list_item(). 147 return self._proxy.replace_list_item(item_name, html)
|
/external/android-clat/ |
config.c | 42 * item_name - name of config item to locate 45 char *config_item_str(cnode *root, const char *item_name, const char *defaultvar) { 48 if(!(tmp = config_str(root, item_name, defaultvar))) { 49 logmsg(ANDROID_LOG_FATAL,"%s config item needed",item_name); 58 * item_name - name of config item to locate 62 int16_t *config_item_int16_t(cnode *root, const char *item_name, const char *defaultvar, int16_t *ret_val_ptr) { 67 if(!(tmp = config_str(root, item_name, defaultvar))) { 68 logmsg(ANDROID_LOG_FATAL,"%s config item needed",item_name); 75 logmsg(ANDROID_LOG_FATAL,"%s config item is not numeric: %s (error=%s)",item_name,tmp,strerror(errno)); 79 logmsg(ANDROID_LOG_FATAL,"%s config item is not numeric: %s",item_name,tmp) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/ |
response.py | 37 for header_name, item_name in response_headers: 38 self[item_name] = http_response.getheader(header_name)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/ |
domain.py | 57 def put_attributes(self, item_name, attributes, 62 :type item_name: string 63 :param item_name: The name of the item whose attributes are being stored. 93 return self.connection.put_attributes(self, item_name, attributes, 117 def get_attributes(self, item_name, attribute_name=None, 122 :type item_name: string 123 :param item_name: The name of the item whose attributes are being retrieved. 133 return self.connection.get_attributes(self, item_name, attribute_name, 136 def delete_attributes(self, item_name, attributes=None, 141 :type item_name: strin [all...] |
connection.py | 62 for item_name in self.item_names: 63 item = self.conn.get_attributes(self.domain_name, item_name) 178 for item_name in item_names: 179 params['Item.%d.ItemName' % i] = item_name 181 item = items[item_name] 382 def put_attributes(self, domain_or_name, item_name, attributes, 390 :type item_name: string 391 :param item_name: The name of the item whose attributes are being 424 'ItemName': item_name} 457 def get_attributes(self, domain_or_name, item_name, attribute_names=None [all...] |
/external/autotest/client/common_lib/cros/ |
interactive_xmlrpc_server.py | 168 def append_list_item(self, list_name, item_name, html): 172 @param item_name: Name to use for making modifications to the item. 180 item_html = '"<div id=\\"%s\\"></div>"' % cgi.escape(item_name) 188 return self.replace_list_item(item_name, html) 191 def replace_list_item(self, item_name, html): 194 @param item_name: Name of item provided to append_list_item(). 206 cgi.escape(item_name),
|
/external/webrtc/webrtc/libjingle/xmpp/ |
pubsub_task.cc | 186 const buzz::QName& item_name(item->Name()); 187 if (item_name != QN_PUBSUB_EVENT_ITEM && 188 item_name != QN_PUBSUB_EVENT_RETRACT && 189 item_name != QN_PUBSUB_ITEM) {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
test_six.py | 95 @py.test.mark.parametrize("item_name", 97 def test_move_items(item_name): 100 item = getattr(six.moves, item_name) 102 __import__("six.moves." + item_name) 104 if item_name == "zip_longest" and sys.version_info < (2, 6): 107 if item_name == "winreg" and not sys.platform.startswith("win"): 109 if item_name.startswith("tkinter"): 112 if item_name == "tkinter_ttk" and sys.version_info[:2] <= (2, 6): 114 if item_name.startswith("dbm_gnu") and not have_gdbm: 118 assert item_name in dir(six.moves [all...] |
/external/chromium-trace/catapult/third_party/six/ |
test_six.py | 115 @py.test.mark.parametrize("item_name", 117 def test_move_items(item_name): 120 item = getattr(six.moves, item_name) 122 __import__("six.moves." + item_name) 124 if item_name == "zip_longest" and sys.version_info < (2, 6): 127 if item_name == "winreg" and not sys.platform.startswith("win"): 129 if item_name.startswith("tkinter"): 132 if item_name == "tkinter_ttk" and sys.version_info[:2] <= (2, 6): 134 if item_name.startswith("dbm_gnu") and not have_gdbm: 138 assert item_name in dir(six.moves [all...] |
/external/autotest/server/site_tests/bluetooth_Sanity_Discovery/ |
bluetooth_Sanity_Discovery.py | 58 item_name = device['Address'].replace(':', '') 63 self.interactive.replace_list_item(item_name, html) 65 self.interactive.append_list_item('devices', item_name,
|
/external/autotest/server/site_tests/bluetooth_Sanity_LEDiscovery/ |
bluetooth_Sanity_LEDiscovery.py | 58 item_name = device['Address'].replace(':', '') 63 self.interactive.replace_list_item(item_name, html) 65 self.interactive.append_list_item('devices', item_name,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/ |
config.py | 194 def dump_to_sdb(self, domain_name, item_name): 200 item = domain.new_item(item_name) 209 def load_from_sdb(self, domain_name, item_name): 213 item = domain.get_item(item_name)
|
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/ |
log.h | 61 const char* (*item_name)(void* ctx); member in struct:AVClass
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
datastore_range_iterators.py | 257 item_name = json_item["name"] 264 json["item_name"] = item_name 273 item_name = json["item_name"] 280 json_item["name"] = item_name
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
service.py | 118 item_name = '/'.join([message['Service-Write'], message['Bucket'], message['InputKey']]) 119 self.output_domain.put_attributes(item_name, message)
|
/external/chromium-trace/catapult/telemetry/telemetry/ |
record_wpr.py | 88 def _PrintAllImpl(all_items, item_name, output_stream): 89 output_stream.write('Available %s\' names with descriptions:\n' % item_name)
|
/external/mesa3d/src/mapi/glapi/gen/ |
gl_XML.py | 786 def create_item(self, item_name, element, context): 787 if item_name == "function": 789 if item_name == "type": 791 elif item_name == "enum": 793 elif item_name == "parameter": 795 elif item_name == "api":
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
menu.h | 193 extern NCURSES_EXPORT(const char *) item_name (const ITEM *);
|
cursesm.h | 91 return ::item_name (item);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
menu.h | 193 extern NCURSES_EXPORT(const char *) item_name (const ITEM *);
|
cursesm.h | 91 return ::item_name (item);
|