OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsSpecialResourceId
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/chromeos/drive/
file_system_util_unittest.cc
237
TEST(FileSystemUtilTest,
IsSpecialResourceId
) {
238
EXPECT_FALSE(util::
IsSpecialResourceId
("abc"));
239
EXPECT_FALSE(util::
IsSpecialResourceId
("file:123"));
240
EXPECT_FALSE(util::
IsSpecialResourceId
("folder:root"));
241
EXPECT_FALSE(util::
IsSpecialResourceId
("folder:xyz"));
243
EXPECT_TRUE(util::
IsSpecialResourceId
("<drive>"));
244
EXPECT_TRUE(util::
IsSpecialResourceId
("<other>"));
file_system_util.h
89
bool
IsSpecialResourceId
(const std::string& resource_id);
file_system_util.cc
169
bool
IsSpecialResourceId
(const std::string& resource_id) {
file_system.cc
823
if (util::
IsSpecialResourceId
(entry->resource_id())) {
[
all
...]
/external/chromium_org/chrome/browser/chromeos/drive/sync/
entry_update_performer.cc
143
if (!util::
IsSpecialResourceId
(parent_entry->resource_id()))
Completed in 42 milliseconds