Home
last modified time | relevance | path

Searched refs:FindChild (Results 1 – 10 of 10) sorted by relevance

/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dclass_definition.py39 def FindChild(self, snippet_type, **kwargs): member in Class
40 return self.suite.FindChild(snippet_type, **kwargs)
Dfunction_definition.py39 def FindChild(self, snippet_type, **kwargs): member in Function
40 return self.suite.FindChild(snippet_type, **kwargs)
Dimport_statement.py238 import_as_names = self.FindChild(symbol.import_as_names)
256 return self.FindChild(symbol.dotted_name).value
260 self.FindChild(symbol.dotted_name).value = value
265 import_as_names = self.FindChild(symbol.import_as_names)
/external/protobuf/src/google/protobuf/util/internal/
Ddefault_value_objectwriter.cc202 DefaultValueObjectWriter::Node* DefaultValueObjectWriter::Node::FindChild( in FindChild() function in google::protobuf::util::converter::DefaultValueObjectWriter::Node
471 Node* child = current_->FindChild(name); in StartObject()
517 Node* child = current_->FindChild(name); in StartList()
574 Node* child = current_->FindChild(name); in RenderDataPiece()
Ddefault_value_objectwriter.h150 Node* FindChild(StringPiece name);
/external/v8/src/profiler/
Dallocation-tracker.cc30 AllocationTraceNode* AllocationTraceNode::FindChild( in FindChild() function in v8::internal::AllocationTraceNode
41 AllocationTraceNode* child = FindChild(function_info_index); in FindOrAddChild()
Dallocation-tracker.h31 AllocationTraceNode* FindChild(unsigned function_info_index);
Dprofile-generator.h205 ProfileNode* FindChild(
Dprofile-generator.cc182 ProfileNode* ProfileNode::FindChild(CodeEntry* entry, int line_number) { in FindChild() function in v8::internal::ProfileNode
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
Dsnippet.py62 def FindChild(self, snippet_type, **kwargs): member in Snippet