Searched defs:test_path (Results 1 - 7 of 7) sorted by relevance

/external/chromium/base/memory/
H A Dscoped_temp_dir_unittest.cc11 FilePath test_path; local
13 &test_path);
16 EXPECT_TRUE(file_util::DirectoryExists(test_path));
19 EXPECT_TRUE(dir.Set(test_path));
22 EXPECT_FALSE(file_util::DirectoryExists(test_path));
26 EXPECT_TRUE(dir.Set(test_path));
28 EXPECT_TRUE(file_util::DirectoryExists(test_path));
31 EXPECT_EQ(path.value(), test_path.value());
34 EXPECT_TRUE(file_util::DirectoryExists(test_path));
39 EXPECT_TRUE(dir.Set(test_path));
47 FilePath test_path; local
66 FilePath test_path; local
[all...]
/external/chromium/chrome/browser/importer/
H A Dfirefox_profile_lock_unittest.cc37 FilePath test_path; local
39 FILE_PATH_LITERAL("firefox_profile"), &test_path));
40 FilePath lock_file_path = test_path;
47 lock.reset(new FirefoxProfileLock(test_path));
73 FilePath test_path; local
75 FILE_PATH_LITERAL("firefox_profile"), &test_path));
76 FilePath lock_file_path = test_path;
88 lock.reset(new FirefoxProfileLock(test_path));
99 FilePath test_path; local
101 FILE_PATH_LITERAL("firefox_profile"), &test_path));
[all...]
H A Dimporter_unittest.cc63 FilePath test_path = temp_dir_.path().AppendASCII("ImporterTest"); local
64 file_util::Delete(test_path, true);
65 file_util::CreateDirectory(test_path);
66 profile_path_ = test_path.AppendASCII("profile");
67 app_path_ = test_path.AppendASCII("app");
/external/skia/gm/
H A Dpathreverse.cpp13 static void test_path(SkCanvas* canvas, const SkPath& path) { function
24 test_path(canvas, path);
30 test_path(canvas, rev);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb15 attr_accessor :test_path
18 File.basename( test_path, '.rb' )
22 File.dirname( test_path )
159 klass.test_path = call_stack[ 0 ].file
166 def test_path method in class:ANTLR3.Test.Functional
167 self.class.test_path
/external/chromium/chrome/browser/themes/
H A Dbrowser_theme_pack_unittest.cc130 FilePath test_path; local
131 if (!PathService::Get(chrome::DIR_TEST_DATA, &test_path)) {
133 return test_path;
136 test_path = test_path.AppendASCII("profiles");
137 test_path = test_path.AppendASCII("complex_theme");
138 test_path = test_path.AppendASCII("Default");
139 test_path
[all...]
/external/chromium/base/
H A Dfile_util_unittest.cc1534 FilePath test_path = local
1537 FilePath test_path = local
1541 EXPECT_FALSE(file_util::PathExists(test_path));
1542 EXPECT_TRUE(file_util::CreateDirectory(test_path));
1543 EXPECT_TRUE(file_util::PathExists(test_path));
1545 EXPECT_TRUE(file_util::CreateDirectory(test_path));
1548 test_path = test_path.Append(FILE_PATH_LITERAL("foobar.txt"));
1549 EXPECT_FALSE(file_util::PathExists(test_path));
1550 CreateTextFile(test_path,
1595 FilePath test_path = local
[all...]

Completed in 220 milliseconds