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

  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier.py 95 for node_path in node.iterkeys():
96 pfx = GetCommonPrefix([node_path, path])
99 if len(pfx) < len(node_path):
100 node[pfx] = {node_path[len(pfx):] : node[node_path]}
101 del node[node_path]
145 for node_path, node_children in radix_tree_node.iteritems():
147 'name': node_path[-16:],
148 'source_path': '^' + re.escape(parent_path + node_path),
150 node_children, max_depth - 1, parent_path + node_path)}
    [all...]
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_linux.cc 40 const char* node_path = udev_device_get_devnode(dev); local
41 if (!node_path)
45 bool is_gamepad = StartsWithASCII(node_path, kJoystickRoot, true);
51 base::StringPiece str(&node_path[base_len], strlen(node_path) - base_len);
59 *path = node_path;
116 std::string node_path; local
117 if (IsGamepad(dev, &index, &node_path)) {
139 device_fd = HANDLE_EINTR(open(node_path.c_str(), O_RDONLY | O_NONBLOCK));
  /external/chromium_org/chrome/browser/ui/webui/options/
cookies_view_handler.cc 233 std::string node_path; local
234 if (!args->GetString(0, &node_path))
240 cookies_tree_model_->GetRoot(), node_path);
246 std::string node_path; local
247 if (!args->GetString(0, &node_path))
253 cookies_tree_model_->GetRoot(), node_path);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_pepper_interface_html5_fs.cc 249 const Path& node_path = iter->first; local
250 if (node_path.find(path) == std::string::npos)
259 if (node_path.find('/', path.size() + 1) != std::string::npos)
263 Path entry_path = node_path;
264 size_t last_slash = node_path.rfind('/');

Completed in 370 milliseconds