OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:current_drive
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/testing/gtest/test/
gtest-filepath_test.cc
371
char
current_drive
[_MAX_PATH]; // NOLINT
local
372
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
373
current_drive
[1] = ':';
374
current_drive
[2] = '\\';
375
current_drive
[3] = '\0';
376
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
/external/gtest/test/
gtest-filepath_test.cc
371
char
current_drive
[_MAX_PATH]; // NOLINT
local
372
current_drive
[0] = static_cast<char>(_getdrive() + 'A' - 1);
373
current_drive
[1] = ':';
374
current_drive
[2] = '\\';
375
current_drive
[3] = '\0';
376
EXPECT_TRUE(FilePath(
current_drive
).DirectoryExists());
Completed in 111 milliseconds