OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kPath0
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker_unittest.cc
158
const char
kPath0
[] = "test/dir a/dir";
165
change_tracker()->OnCreateDirectory(URL(
kPath0
));
166
change_tracker()->OnRemoveDirectory(URL(
kPath0
)); // Offset the create.
184
// Changes for
kPath0
must have been offset and removed.
185
EXPECT_FALSE(ContainsKey(urls, URL(
kPath0
)));
271
const char
kPath0
[] = "file a";
286
file_system_.CreateFile(URL(
kPath0
))); // Creates a file.
318
VerifyAndClearChange(URL(
kPath0
),
340
const char
kPath0
[] = "file";
352
file_system_.CreateFile(URL(
kPath0
)));
[
all
...]
syncable_file_system_unittest.cc
181
const char
kPath0
[] = "dir a";
182
const char kPath1[] = "dir a/dir"; // child of
kPath0
183
const char kPath2[] = "dir a/file"; // child of
kPath0
188
file_system_.CreateDirectory(URL(
kPath0
))); // Creates a dir.
202
EXPECT_TRUE(ContainsKey(urls, URL(
kPath0
)));
206
VerifyAndClearChange(URL(
kPath0
),
227
// Recursively removes the
kPath0
directory.
229
file_system_.Remove(URL(
kPath0
), true /* recursive */));
234
//
kPath0
and its all chidren (kPath1 and kPath2) must have been deleted.
236
EXPECT_TRUE(ContainsKey(urls, URL(
kPath0
)));
[
all
...]
Completed in 710 milliseconds