HomeSort by relevance Sort by last modified time
    Searched refs:FindChild (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
dir_node.h 51 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
node.h 123 virtual Error FindChild(const std::string& name, ScopedNode* out_node);
dir_node.cc 117 Error DirNode::FindChild(const std::string& name, ScopedNode* out_node) {
node.cc 240 Error Node::FindChild(const std::string& name, ScopedNode* out_node) {
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_node.h 42 MOCK_METHOD2(FindChild, Error(const std::string&, ScopedNode*));
mem_fs_node_test.cc 60 using MemFsNode::FindChild;
72 using DirNode::FindChild;
126 EXPECT_EQ(ENOTDIR, file.FindChild("", &result_node));
303 EXPECT_EQ(0, root.FindChild("F1", &result_node));
305 EXPECT_EQ(0, root.FindChild("F2", &result_node));
307 EXPECT_EQ(ENOENT, root.FindChild("F3", &result_node));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.cc 60 Error error = node->FindChild(path.Part(index), &node);
139 error = parent->FindChild(path.Basename(), &node);
260 error = parent->FindChild(path.Basename(), &child);
  /external/chromium_org/v8/src/
allocation-tracker.h 22 AllocationTraceNode* FindChild(unsigned function_info_index);
allocation-tracker.cc 29 AllocationTraceNode* AllocationTraceNode::FindChild(
41 AllocationTraceNode* child = FindChild(function_info_index);
profile-generator.h 113 ProfileNode* FindChild(CodeEntry* entry);
profile-generator.cc 184 ProfileNode* ProfileNode::FindChild(CodeEntry* entry) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.cc 249 error = fs_dir_->FindChild(path.Part(2), out_node);
255 error = root_->FindChild(path.Join(), out_node);
  /art/runtime/
profiler.h 65 StackTrieNode* FindChild(MethodReference method, uint32_t dex_pc);
profiler.cc 532 StackTrieNode* child = current->FindChild(method_ref, dex_pc);
894 StackTrieNode* StackTrieNode::FindChild(MethodReference method, uint32_t dex_pc) {
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 453 static const v8::CpuProfileNode* FindChild(v8::Isolate* isolate,
469 const v8::CpuProfileNode* result = FindChild(isolate, node, name);
739 FindChild(env->GetIsolate(), root, "start");
    [all...]
test-profile-generator.cc 102 node = node->FindChild(entry1);
105 node = node->FindChild(entry2);
109 node = node->FindChild(entry3);

Completed in 342 milliseconds