Home
last modified time | relevance | path

Searched refs:child_name (Results 1 – 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/protobuf/python/
Dstubout.py109 def Set(self, parent, child_name, new_child): argument
119 old_child = getattr(parent, child_name)
121 old_attribute = parent.__dict__.get(child_name)
125 self.cache.append((parent, old_child, child_name))
126 setattr(parent, child_name, new_child)
138 for (parent, old_child, child_name) in self.cache:
139 setattr(parent, child_name, old_child)
/external/protobuf/python/
Dstubout.py109 def Set(self, parent, child_name, new_child): argument
119 old_child = getattr(parent, child_name)
121 old_attribute = parent.__dict__.get(child_name)
125 self.cache.append((parent, old_child, child_name))
126 setattr(parent, child_name, new_child)
138 for (parent, old_child, child_name) in self.cache:
139 setattr(parent, child_name, old_child)
/external/chromium_org/chrome/common/extensions/docs/server2/
Dmanifest_features.py26 def add_child(features, parent, child_name, value): argument
27 value['name'] = child_name
30 features[parent]['children'][child_name] = value
36 parent, child_name = name.split('.', 1)
37 add_child(features, parent, child_name, value)
Dpatched_file_system.py86 child_name = child_path[0:child_path.find('/') + 1]
88 child_name = child_path
89 result.append(child_name)
/external/chromium_org/extensions/common/
Dextension_api.cc82 const std::string& child_name) { in GetSchemaChild() argument
88 child_node = FindListItem(list_node, "name", child_name); in GetSchemaChild()
308 std::string child_name; in GetSchema() local
309 std::string api_name = GetAPINameFromFullName(full_name, &child_name); in GetSchema()
337 if (!child_name.empty()) in GetSchema()
338 result = GetSchemaChild(result, child_name); in GetSchema()
356 std::string child_name; in GetFeatureDependency() local
358 GetAPINameFromFullName(feature_name, &child_name)); in GetFeatureDependency()
364 std::string* child_name) { in GetAPINameFromFullName() argument
375 if (child_name) { in GetAPINameFromFullName()
[all …]
Dextension_api.h116 std::string* child_name);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
Dpubsub_task.cc158 const buzz::QName& child_name(child_element->Name()); in HandlePubsubEventMessage() local
159 if (child_name == QN_PUBSUB_EVENT_ITEMS) { in HandlePubsubEventMessage()
185 const buzz::QName& child_name(child_element->Name()); in HandlePubsubIqGetResponse() local
186 if (child_name == QN_PUBSUB_ITEMS) { in HandlePubsubIqGetResponse()
/external/lldb/source/Core/
DValueObjectConstResultImpl.cpp129 ConstString child_name; in CreateChildAtIndex() local
131 child_name.SetCString (child_name_str.c_str()); in CreateChildAtIndex()
135 child_name, in CreateChildAtIndex()
DValueObject.cpp728 ConstString child_name; in CreateChildAtIndex() local
730 child_name.SetCString (child_name_str.c_str()); in CreateChildAtIndex()
734 child_name, in CreateChildAtIndex()
2652 ConstString child_name; in GetValueForExpressionPath_Impl() local
2655 child_name.SetCString (expression_cstr); in GetValueForExpressionPath_Impl()
2656 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl()
2677 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl()
2699child_name.SetCStringWithLength(expression_cstr, next_separator - expression_cstr); in GetValueForExpressionPath_Impl()
2700 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl()
2720 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl()
[all …]
/external/chromium_org/chrome/browser/metrics/
Dplugin_metrics_provider.cc331 const base::string16& child_name = data.name; in GetChildProcessStats() local
332 if (!ContainsKey(child_process_stats_buffer_, child_name)) { in GetChildProcessStats()
333 child_process_stats_buffer_[child_name] = in GetChildProcessStats()
336 return child_process_stats_buffer_[child_name]; in GetChildProcessStats()
/external/chromium_org/chrome/browser/chromeos/drive/
Dresource_metadata_storage.h125 const std::string& child_name,
147 const std::string& child_name);
Dresource_metadata_storage.cc800 const std::string& child_name, in GetChild() argument
804 DCHECK(!child_name.empty()); in GetChild()
809 leveldb::Slice(GetChildEntryKey(parent_id, child_name)), in GetChild()
861 const std::string& child_name) { in GetChildEntryKey() argument
863 DCHECK(!child_name.empty()); in GetChildEntryKey()
867 key.append(child_name); in GetChildEntryKey()
/external/lldb/source/Target/
DStackFrame.cpp666 ConstString child_name; in GetValueForVariableExpressionPath() local
668 child_name.SetCString (var_path.c_str()); in GetValueForVariableExpressionPath()
670 child_name.SetCStringWithLength(var_path.c_str(), separator_idx); in GetValueForVariableExpressionPath()
688 child_name.GetCString(), in GetValueForVariableExpressionPath()
694 child_name.GetCString(), in GetValueForVariableExpressionPath()
700 child_valobj_sp = valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath()
707 … child_valobj_sp = child_valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath()
724 if (child_name) in GetValueForVariableExpressionPath()
727child_name.GetCString(), in GetValueForVariableExpressionPath()
743 var_path.erase(0, child_name.GetLength()); in GetValueForVariableExpressionPath()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Ddot.rb153 child_name = 'n%i' % @node_to_number_map[ tree ]
155 :parent => parent_name, :child => child_name,
/external/lldb/include/lldb/Interpreter/
DScriptInterpreter.h113 … (*SWIGPythonGetIndexOfChildWithName) (void *implementor, const char* child_name);
392 …etIndexOfChildWithName (const lldb::ScriptInterpreterObjectSP& implementor, const char* child_name) in GetIndexOfChildWithName() argument
DScriptInterpreterPython.h108 …tIndexOfChildWithName (const lldb::ScriptInterpreterObjectSP& implementor, const char* child_name);
/external/chromium_org/chrome/common/extensions/api/
Dextension_api_unittest.cc658 std::string child_name; in TEST() member
674 std::string child_name; in TEST() local
676 &child_name); in TEST()
678 EXPECT_EQ(test_data[i].child_name, child_name) << test_data[i].input; in TEST()
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
Didl_definitions.py543 child_name = child.GetName()
544 if child_name != '...':
545 … raise ValueError('Unrecognized Argument node; expected "...", got "%s"' % child_name)
/external/lldb/source/Symbol/
DClangASTType.cpp2900 std::string& child_name, in GetChildClangTypeAtIndex() argument
2928 child_name = "isa"; in GetChildClangTypeAtIndex()
2980 child_name = base_class_clang_type.GetTypeName(); in GetChildClangTypeAtIndex()
3003 child_name.assign(field->getNameAsString().c_str()); in GetChildClangTypeAtIndex()
3051child_name.assign(superclass_interface_decl->getNameAsString().c_str()); in GetChildClangTypeAtIndex()
3083 child_name.assign(ivar_decl->getNameAsString().c_str()); in GetChildClangTypeAtIndex()
3153 child_name, in GetChildClangTypeAtIndex()
3166 child_name.assign(1, '*'); in GetChildClangTypeAtIndex()
3167 child_name += parent_name; in GetChildClangTypeAtIndex()
3193 child_name.assign(element_name); in GetChildClangTypeAtIndex()
[all …]
/external/chromium_org/sync/syncable/
Ddirectory_unittest.cc857 std::string child_name = "child"; in TEST_F() local
868 MutableEntry child(&wt, CREATE, BOOKMARKS, parent_folder.GetId(), child_name); in TEST_F()
874 EXPECT_EQ(0, CountEntriesWithName(&wt, wt.root_id(), child_name)); in TEST_F()
876 EXPECT_EQ(1, CountEntriesWithName(&wt, parent_folder.GetId(), child_name)); in TEST_F()
877 EXPECT_EQ(0, CountEntriesWithName(&wt, parent_folder2.GetId(), child_name)); in TEST_F()
880 EXPECT_EQ(0, CountEntriesWithName(&wt, parent_folder.GetId(), child_name)); in TEST_F()
881 EXPECT_EQ(1, CountEntriesWithName(&wt, parent_folder2.GetId(), child_name)); in TEST_F()
/external/chromium_org/tools/gyp/pylib/gyp/
Dxcodeproj_file.py1130 child_name = child.Name()
1131 if child_name != None:
1132 hashables.append(child_name)
1150 child_name = child._properties.get('name', None)
1151 key = (child_name, child_path)
1154 'name ' + str(child_name) + ' and path ' + \
/external/chromium_org/sandbox/mac/
Dbootstrap_sandbox_unittest.mm96 const char* child_name,
101 base::ProcessHandle pid = SpawnChildWithOptions(child_name, options);
/external/chromium_org/net/disk_cache/blockfile/
Dsparse_control_v3.cc134 std::string child_name = GenerateChildName(name_, signature_, child_id); in DeleteChildren() local
135 backend_->SyncDoomEntry(child_name); in DeleteChildren()
Dsparse_control.cc134 std::string child_name = GenerateChildName(name_, signature_, child_id); in DeleteChildren() local
135 backend_->SyncDoomEntry(child_name); in DeleteChildren()
/external/chromium_org/tools/binary_size/
Drun_binary_size_analysis.py328 for child_name, child in tree['children'].iteritems():
329 children.append(JsonifyTree(child, child_name))

12