HomeSort by relevance Sort by last modified time
    Searched refs:is_separator (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/Support/
PathV2.cpp 24 using llvm::sys::path::is_separator;
53 is_separator(path[0]) &&
55 !is_separator(path[2])) {
62 if (is_separator(path[0]))
78 is_separator(str[0]) &&
82 if (str.size() > 0 && is_separator(str[str.size() - 1]))
93 (pos == 1 && is_separator(str[0])))
104 is_separator(str[2]))
110 is_separator(str[0]) &&
116 is_separator(str[0]) &
    [all...]
  /external/linux-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/llvm/unittests/Support/
Path.cpp 32 TEST(is_separator, Works) {
33 EXPECT_TRUE(path::is_separator('/'));
34 EXPECT_FALSE(path::is_separator('\0'));
35 EXPECT_FALSE(path::is_separator('-'));
36 EXPECT_FALSE(path::is_separator(' '));
39 EXPECT_TRUE(path::is_separator('\\'));
41 EXPECT_FALSE(path::is_separator('\\'));
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 99 gboolean is_separator = false; local
105 &is_separator, local
107 return is_header || is_separator;
316 gboolean is_separator; local
320 &is_separator,
322 return is_separator;
  /external/qemu/elff/
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()) {
    [all...]
dwarf_die.cc 86 while (!at_abbr->is_separator()) {
203 while (!at_abbr->is_separator()) {
dwarf_cu.cc 337 while (is_attrib_ptr_valid(die) && !die->is_separator()) {
384 !at_abbr->is_separator()) {
  /ndk/sources/host-tools/ndk-stack/elff/
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_die.cc 88 while (!at_abbr->is_separator()) {
205 while (!at_abbr->is_separator()) {
dwarf_cu.cc 337 while (is_attrib_ptr_valid(die) && !die->is_separator()) {
384 !at_abbr->is_separator()) {
  /external/llvm/include/llvm/Support/
PathV2.h 265 bool is_separator(char value);
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 115 /// is_separator - is the given character a separator of a path.
120 bool is_separator(char value);
  /external/clang/lib/Frontend/
DependencyFile.cpp 122 llvm::sys::path::is_separator(Filename[1])) {
124 while (llvm::sys::path::is_separator(Filename[0]))
InitHeaderSearch.cpp 123 llvm::sys::path::is_separator(MappedPathStr[0]) &&
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 124 !is_separator(*(m_PathName.end()-1))) {
186 bool mcld::sys::fs::is_separator(char value) function in class:mcld::sys::fs
  /external/clang/lib/Basic/
FileManager.cpp 238 if (llvm::sys::path::is_separator(Filename[Filename.size() - 1]))
283 llvm::sys::path::is_separator(DirName.back()))

Completed in 376 milliseconds