OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_separator
(Results
1 - 13
of
13
) sorted by null
/external/llvm/lib/Support/
Path.cpp
35
using llvm::sys::path::
is_separator
;
64
is_separator
(path[0]) &&
66
!
is_separator
(path[2])) {
73
if (
is_separator
(path[0]))
83
is_separator
(str[0]) &&
87
if (str.size() > 0 &&
is_separator
(str[str.size() - 1]))
98
(pos == 1 &&
is_separator
(str[0])))
109
is_separator
(str[2]))
115
is_separator
(str[0]) &&
121
is_separator
(str[0]) &
[
all
...]
/frameworks/compile/mclinker/lib/Support/
Path.cpp
30
bool
is_separator
(char value) {
function in namespace:mcld::sys::fs::__anon29750
37
bool
is_separator
(char value) {
135
if (!m_PathName.empty() && !
is_separator
(last_char)) {
/external/llvm/unittests/Support/
Path.cpp
44
TEST(
is_separator
, Works) {
45
EXPECT_TRUE(path::
is_separator
('/'));
46
EXPECT_FALSE(path::
is_separator
('\0'));
47
EXPECT_FALSE(path::
is_separator
('-'));
48
EXPECT_FALSE(path::
is_separator
(' '));
51
EXPECT_TRUE(path::
is_separator
('\\'));
53
EXPECT_FALSE(path::
is_separator
('\\'));
298
EXPECT_TRUE(path::
is_separator
(LastComponent[0]));
[
all
...]
/external/curl/lib/vtls/
gskit.c
151
static bool
is_separator
(char c)
function
311
while(
is_separator
(*cipherlist)) /* Skip initial separators. */
336
for(clp = cipherlist; *cipherlist && !
is_separator
(*cipherlist);)
361
while(
is_separator
(*cipherlist))
/external/clang/lib/Basic/
FileManager.cpp
111
if (llvm::sys::path::
is_separator
(Filename[Filename.size() - 1]))
156
llvm::sys::path::
is_separator
(DirName.back()))
VirtualFileSystem.cpp
[
all
...]
/external/libxml2/
rngparser.c
155
#define
IS_SEPARATOR
(c) (((c) == 0x20) || ((c) == 0x09) || ((c) == 0xA) || \
326
(!(
IS_SEPARATOR
(*cur))) && (!(IS_OP(*cur)))) cur++;
345
(!(
IS_SEPARATOR
(*cur))) && (!(IS_OP(*cur)))) cur++;
[
all
...]
/external/llvm/include/llvm/Support/
Path.h
304
bool
is_separator
(char value);
/external/fio/
parse.c
173
static int
is_separator
(char c)
function
201
if (
is_separator
(c[i])) {
/external/llvm/lib/Support/Windows/
Path.inc
49
static bool
is_separator
(const wchar_t value) {
588
!
is_separator
(path_utf16[path.size() - 1]) &&
/external/clang/lib/Frontend/
InitHeaderSearch.cpp
109
return !Path.empty() && llvm::sys::path::
is_separator
(Path[0]);
/external/clang/lib/Driver/
Driver.cpp
[
all
...]
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
Completed in 713 milliseconds