OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_separator
(Results
1 - 16
of
16
) sorted by null
/external/llvm/lib/Support/
Path.cpp
35
using llvm::sys::path::
is_separator
;
65
is_separator
(path[0]) &&
67
!
is_separator
(path[2])) {
74
if (
is_separator
(path[0]))
90
is_separator
(str[0]) &&
94
if (str.size() > 0 &&
is_separator
(str[str.size() - 1]))
105
(pos == 1 &&
is_separator
(str[0])))
116
is_separator
(str[2]))
122
is_separator
(str[0]) &&
128
is_separator
(str[0]) &
[
all
...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
strfilter.c
11
#define
is_separator
(c) (is_operator(c) || (c) == '(' || (c) == ')')
macro
45
if (!
is_separator
(*s)) {
48
while (*p && !
is_separator
(*p) && !isspace(*p))
/external/clang/lib/Frontend/
DependencyFile.cpp
56
llvm::sys::path::
is_separator
(Filename[1])) {
58
while (llvm::sys::path::
is_separator
(Filename[0]))
251
llvm::sys::path::
is_separator
(Filename[1])) {
253
while (llvm::sys::path::
is_separator
(Filename[0]))
InitHeaderSearch.cpp
114
return !Path.empty() && llvm::sys::path::
is_separator
(Path[0]);
/external/chromium_org/device/bluetooth/
bluetooth_device.cc
222
bool
is_separator
= (i + 1) % 3 == 0;
local
223
if (
is_separator
) {
/external/llvm/unittests/Support/
Path.cpp
38
TEST(
is_separator
, Works) {
39
EXPECT_TRUE(path::
is_separator
('/'));
40
EXPECT_FALSE(path::
is_separator
('\0'));
41
EXPECT_FALSE(path::
is_separator
('-'));
42
EXPECT_FALSE(path::
is_separator
(' '));
45
EXPECT_TRUE(path::
is_separator
('\\'));
47
EXPECT_FALSE(path::
is_separator
('\\'));
244
EXPECT_TRUE(path::
is_separator
(LastComponent[0]));
/frameworks/compile/mclinker/lib/Support/
Path.cpp
27
bool
is_separator
(char value)
function in namespace:__anon39521
35
bool
is_separator
(char value)
148
!
is_separator
(last_char)) {
/ndk/sources/host-tools/ndk-stack/elff/
dwarf_die.cc
88
while (!at_abbr->
is_separator
()) {
205
while (!at_abbr->
is_separator
()) {
dwarf_defs.h
302
bool
is_separator
() const {
function in struct:Dwarf_Abbr_AT
315
if (
is_separator
()) {
425
bool
is_separator
() const {
function in struct:Dwarf_DIE
444
if (
is_separator
()) {
853
while (!abbr_at->
is_separator
()) {
dwarf_cu.cc
337
while (is_attrib_ptr_valid(die) && !die->
is_separator
()) {
384
!at_abbr->
is_separator
()) {
/external/clang/lib/Basic/
FileManager.cpp
114
if (llvm::sys::path::
is_separator
(Filename[Filename.size() - 1]))
159
llvm::sys::path::
is_separator
(DirName.back()))
VirtualFileSystem.cpp
745
sys::path::
is_separator
(Trimmed.back()))
[
all
...]
/external/llvm/include/llvm/Support/
Path.h
296
bool
is_separator
(char value);
/external/fio/
parse.c
169
static int
is_separator
(char c)
function
197
if (
is_separator
(c[i])) {
/external/llvm/lib/Support/Windows/
Path.inc
69
static bool
is_separator
(const wchar_t value) {
685
!
is_separator
(path_utf16[path.size() - 1]) &&
/external/clang/lib/Driver/
Driver.cpp
[
all
...]
Completed in 888 milliseconds