Home
last modified time | relevance | path

Searched refs:item_name (Results 1 – 24 of 24) sorted by relevance

/external/llvm-project/lldb/source/DataFormatters/
DFormattersHelpers.cpp119 size_t lldb_private::formatters::ExtractIndexFromString(const char *item_name) { in ExtractIndexFromString() argument
120 if (!item_name || !*item_name) in ExtractIndexFromString()
122 if (*item_name != '[') in ExtractIndexFromString()
124 item_name++; in ExtractIndexFromString()
126 unsigned long int idx = ::strtoul(item_name, &endptr, 0); in ExtractIndexFromString()
127 if (idx == 0 && endptr == item_name) in ExtractIndexFromString()
DVectorType.cpp245 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
246 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/external/python/six/
Dtest_six.py117 def test_move_items(item_name): argument
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)
143 def test_move_items_urllib_parse(item_name): argument
[all …]
/external/autotest/server/cros/
Dinteractive_client.py125 def append_list_item(self, list_name, item_name, html): argument
135 return self._proxy.append_list_item(list_name, item_name, html)
138 def replace_list_item(self, item_name, html): argument
147 return self._proxy.replace_list_item(item_name, html)
/external/autotest/client/common_lib/cros/
Dinteractive_xmlrpc_server.py168 def append_list_item(self, list_name, item_name, html): argument
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): argument
206 cgi.escape(item_name),
/external/llvm-project/lldb/source/Plugins/Language/ObjC/
DNSSet.cpp420 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
421 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
561 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
562 const uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
699 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
700 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
DNSDictionary.cpp566 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
567 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
703 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
704 const uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
924 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
925 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
1091 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
1092 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
DNSIndexPath.cpp128 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
129 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
DNSArray.cpp526 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
527 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
614 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
615 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
/external/tensorflow/tensorflow/tools/docs/
Dgenerate2.py55 tf.__all__ = [item_name for item_name, value in tf_inspect.getmembers(tf)]
/external/llvm-project/lldb/include/lldb/DataFormatters/
DVectorIterator.h24 ConstString item_name);
DFormattersHelpers.h55 size_t ExtractIndexFromString(const char *item_name);
/external/dynamic_depth/internal/xmpmeta/xml/
Dserializer.h45 const string& prefix, const string& item_name) const = 0;
Dserializer_impl.h122 const string& prefix, const string& item_name) const override;
Dserializer_impl.cc78 const string& prefix, const string& item_name) const { in CreateItemSerializer()
97 ToXmlChar(item_name.data())); in CreateItemSerializer()
/external/python/cpython3/Lib/test/libregrtest/
Drefleak.py130 for deltas, item_name, checker in [
139 test_name, deltas, item_name, sum(deltas))
/external/rust/crates/bindgen/src/
Dcallbacks.rs75 fn item_name(&self, _original_item_name: &str) -> Option<String> { in item_name() method
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DLibCxxVector.cpp277 const char *item_name = name.GetCString(); in GetIndexOfChildWithName() local
278 uint32_t idx = ExtractIndexFromString(item_name); in GetIndexOfChildWithName()
DLibStdcpp.cpp182 ConstString item_name) in VectorIteratorSyntheticFrontEnd() argument
184 m_item_name(item_name), m_item_sp() { in VectorIteratorSyntheticFrontEnd()
/external/vulkan-validation-layers/scripts/
Dhelper_file_generator.py209 item_name = elem.get('name')
210 … if self.debug_report_object_types.count(item_name) == 0: # TODO: Strangely there are duplicates
211 self.debug_report_object_types.append(item_name)
216 item_name = elem.get('name')
217 self.core_object_types.append(item_name)
/external/fonttools/Tests/varLib/instancer/
Dinstancer_test.py277 table_tag, item_name = MVAR_ENTRIES[mvar_tag]
278 assert getattr(varfont[table_tag], item_name) == expected_value
317 table_tag, item_name = MVAR_ENTRIES[mvar_tag]
318 assert getattr(varfont[table_tag], item_name) == expected_value
/external/python/cpython2/Lib/test/
Dregrtest.py1497 for deltas, item_name, checker in [
1502 msg = '%s leaked %s %s, sum=%s' % (test, deltas, item_name, sum(deltas))
/external/rust/crates/bindgen/src/ir/
Ditem.rs911 .and_then(|callbacks| callbacks.item_name(&name)) in real_canonical_name()
/external/jcommander/doc/
Dindex.adoc16 <input type="hidden" name="item_name" value="Cedric Beust">