Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:IsPathAbsolute
(Results
1 - 7
of
7
) sorted by relevance
/third_party/gn/src/gn/
H
A
D
filesystem_utils_unittest.cc
127
TEST(FilesystemUtils,
IsPathAbsolute
) {
in TEST()
128
EXPECT_TRUE(
IsPathAbsolute
("/foo/bar"));
in TEST()
129
EXPECT_TRUE(
IsPathAbsolute
("/"));
in TEST()
130
EXPECT_FALSE(
IsPathAbsolute
(""));
in TEST()
131
EXPECT_FALSE(
IsPathAbsolute
("//"));
in TEST()
132
EXPECT_FALSE(
IsPathAbsolute
("//foo/bar"));
in TEST()
135
EXPECT_TRUE(
IsPathAbsolute
("C:/foo"));
in TEST()
136
EXPECT_TRUE(
IsPathAbsolute
("C:/"));
in TEST()
137
EXPECT_TRUE(
IsPathAbsolute
("C:\\foo"));
in TEST()
138
EXPECT_TRUE(
IsPathAbsolute
("
in TEST()
[all...]
H
A
D
filesystem_utils.cc
337
bool
IsPathAbsolute
(std::string_view path) {
in IsPathAbsolute()
function
365
DCHECK(
IsPathAbsolute
(source_root));
in MakeAbsolutePathRelativeIfPossible()
366
DCHECK(
IsPathAbsolute
(path));
in MakeAbsolutePathRelativeIfPossible()
645
if (!
IsPathAbsolute
(path) || !IsSlash(path[0]))
in GetPathWithDriveLetter()
670
bool is_path_absolute =
IsPathAbsolute
(path);
in RegulatePathIfAbsolute()
706
if (
IsPathAbsolute
(input) &&
IsPathAbsolute
(dest) && input.size() > 1 &&
in MakeRelativePath()
846
} else if (
IsPathAbsolute
(input)) {
in ResolveRelative()
H
A
D
filesystem_utils.h
99
bool
IsPathAbsolute
(std::string_view path);
H
A
D
label.cc
105
if (
IsPathAbsolute
(input)) {
in Resolve()
H
A
D
analyzer.cc
110
if (!IsPathSourceAbsolute(s) && !
IsPathAbsolute
(s)) {
in AbsoluteOrSourceAbsoluteStringToLabel()
144
if (!IsPathSourceAbsolute(s) && !
IsPathAbsolute
(s)) {
in JSONToInputs()
H
A
D
xcode_writer.cc
483
if (
IsPathAbsolute
(source.value())) {
in AddSourceFile()
688
if (
IsPathAbsolute
(source.value()))
in ShouldIncludeFileInProject()
/third_party/gn/src/base/files/
H
A
D
file_path.cc
79
bool
IsPathAbsolute
(StringViewType path) {
in IsPathAbsolute()
function
465
DCHECK(!
IsPathAbsolute
(appended));
in Append()
513
return
IsPathAbsolute
(path_);
in IsAbsolute()
Completed in 7 milliseconds