/external/skia/platform_tools/android/gyp_gen/ |
D | gypd_parser.py | 72 sub_path = li[0] 73 assert(sub_path.endswith('.gyp')) 76 sub_path = sub_path + 'd' 77 parse_gypd(var_dict, sub_path, dest_dir, sub_targets)
|
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/ |
D | gypd_parser.py | 72 sub_path = li[0] 73 assert(sub_path.endswith('.gyp')) 76 sub_path = sub_path + 'd' 77 parse_gypd(var_dict, sub_path, dest_dir, sub_targets)
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | fileutils_mock.h | 115 std::string sub_path = path_iterator_->first; in IsDirectory() local 118 sub_path.find(Pathname::DefaultFolderDelimiter(), path_.size()); in IsDirectory() 122 std::string sub_path = path_iterator_->first; in Name() local 128 size_t end = sub_path.find(Pathname::DefaultFolderDelimiter(), start); in Name() 131 return sub_path.substr(start, end - start); in Name() 133 return sub_path.substr(start); in Name()
|
/external/chromium_org/third_party/webrtc/base/ |
D | fileutils_mock.h | 98 std::string sub_path = path_iterator_->first; in IsDirectory() local 101 sub_path.find(Pathname::DefaultFolderDelimiter(), path_.size()); in IsDirectory() 105 std::string sub_path = path_iterator_->first; in Name() local 111 size_t end = sub_path.find(Pathname::DefaultFolderDelimiter(), start); in Name() 114 return sub_path.substr(start, end - start); in Name() 116 return sub_path.substr(start); in Name()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
D | filesystem_unittest.py | 199 sub_path = os.path.join(base_path, "newdir") 200 self.assertFalse(os.path.exists(sub_path)) 201 self.assertFalse(fs.isdir(sub_path)) 203 fs.maybe_make_directory(sub_path) 204 self.assertTrue(os.path.exists(sub_path)) 205 self.assertTrue(fs.isdir(sub_path)) 208 fs.maybe_make_directory(sub_path) 209 self.assertTrue(os.path.exists(sub_path)) 210 self.assertTrue(fs.isdir(sub_path)) 213 os.rmdir(sub_path)
|
/external/chromium_org/url/ |
D | url_canon_internal_file.h | 69 ParsedComponent sub_path(after_slashes, end - after_slashes); in FileDoPath() 70 if (sub_path.len > 0) { in FileDoPath() 75 spec, sub_path, output, &fake_output_path); in FileDoPath()
|
D | url_canon_fileurl.cc | 75 Component sub_path = MakeRange(after_drive, path.end()); in DoFileCanonicalizePath() local 77 success = CanonicalizePath(spec, sub_path, output, &fake_output_path); in DoFileCanonicalizePath()
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
D | browser.py | 338 for sub_path in paths: 339 if parent_path == sub_path: 341 if os.path.commonprefix((parent_path, sub_path)) == parent_path: 342 duplicates.add(sub_path)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
D | filter.py | 213 for sub_path in sub_paths: 214 if path.find(sub_path) > -1:
|
/external/chromium_org/device/hid/ |
D | hid_service_linux.cc | 190 std::string sub_path = device_path.substr(parent_path.length()); in FindHidrawDevNode() local 191 if (sub_path.substr(0, sizeof(kHidrawSubsystem) - 1) == in FindHidrawDevNode()
|
/external/chromium_org/base/files/ |
D | file_path_watcher_browsertest.cc | 373 FilePath sub_path(temp_dir_.path()); in TEST_F() local 376 sub_path = sub_path.AppendASCII(*d); in TEST_F() 377 ASSERT_TRUE(base::CreateDirectory(sub_path)); in TEST_F()
|
/external/chromium_org/chrome/installer/util/ |
D | shell_util.cc | 268 base::string16 sub_path(model_id_shell); in GetProgIdEntries() local 269 sub_path.push_back(base::FilePath::kSeparators[0]); in GetProgIdEntries() 270 sub_path.append(verbs[i].verb); in GetProgIdEntries() 278 entries->push_back(new RegistryEntry(sub_path, verb_name.c_str())); in GetProgIdEntries() 281 sub_path, L"CommandId", L"Browser.Launch")); in GetProgIdEntries() 283 sub_path.push_back(base::FilePath::kSeparators[0]); in GetProgIdEntries() 284 sub_path.append(ShellUtil::kRegCommand); in GetProgIdEntries() 287 entries->push_back(new RegistryEntry(sub_path, delegate_command)); in GetProgIdEntries() 289 sub_path, ShellUtil::kRegDelegateExecute, delegate_guid)); in GetProgIdEntries()
|
/external/chromium_org/net/tools/testserver/ |
D | testserver.py | 858 sub_path = url_path[len(prefix):] 859 entries = sub_path.split('/') 865 print "File not found " + sub_path + " full path:" + file_path 942 sub_path = url_path[len(prefix):] 943 entries = sub_path.split('/') 949 print "File not found " + sub_path + " full path:" + file_path
|