HomeSort by: relevance | last modified time | path
    Searched defs:is_dot (Results 1 - 13 of 13) sorted by relevancy

  /src/external/bsd/nsd/dist/simdzone/src/westmere/
ip4.h 136 __m128i is_dot = _mm_cmpeq_epi8(v, _mm_set1_epi8(0x2E)); local
137 uint32_t dot_mask = (uint32_t)_mm_movemask_epi8(is_dot);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
std-path.cc 337 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon17290
339 inline bool is_dot(char c) { return c == '.'; }
342 inline bool is_dot(const fs::path& path) function in namespace:__anon17290
345 return filename.size() == 1 && is_dot(filename[0]);
351 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
436 else if (is_dot(p))
478 else if (!p.empty() && !is_dot(p))
ops.cc 96 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon17277
98 inline bool is_dot(char c) { return c == '.'; }
101 inline bool is_dot(const fs::path& path) function in namespace:__anon17277
104 return filename.size() == 1 && is_dot(filename[0]);
110 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
170 if (is_dot(f))
458 if (!is_dot(filename) && !is_dotdot(filename))
std-ops.cc 116 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon17286
118 inline bool is_dot(char c) { return c == '.'; }
121 inline bool is_dot(const fs::path& path) function in namespace:__anon17286
124 return filename.size() == 1 && is_dot(filename[0]);
130 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
195 else if (is_dot(f))
666 if (is_dot(filename) || is_dotdot(filename))
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
ops.cc 97 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon14890
99 inline bool is_dot(char c) { return c == '.'; }
102 inline bool is_dot(const fs::path& path) function in namespace:__anon14890
105 return filename.size() == 1 && is_dot(filename[0]);
111 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
171 if (is_dot(f))
473 if (!is_dot(filename) && !is_dotdot(filename))
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
fs_ops.cc 136 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon17254
138 inline bool is_dot(char c) { return c == '.'; }
141 inline bool is_dot(const fs::path& path) function in namespace:__anon17254
144 return filename.size() == 1 && is_dot(filename[0]);
150 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
220 else if (is_dot(f))
525 if (is_dot(filename) || is_dotdot(filename))
fs_path.cc 1670 inline bool is_dot(fs::path::value_type c) { return c == dot; } function in namespace:__anon17258
1672 inline bool is_dot(const fs::path& path) function in namespace:__anon17258
1675 return filename.size() == 1 && is_dot(filename[0]);
1681 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
1766 else if (is_dot(p))
1825 else if (!p.empty() && !is_dot(p))
  /src/external/gpl3/binutils/dist/ld/
ldexp.c 954 is_dot (const etree_type *tree) function
1001 && is_dot (tree->binary.lhs)
1013 && is_dot (tree->binary.lhs)
ldlang.c 4832 bool is_dot;
4840 is_dot = false;
4847 is_dot = (dst[0] == '.' && dst[1] == 0);
4867 || is_dot
4878 if (is_dot)
4829 bool is_dot; local
  /src/external/gpl3/binutils.old/dist/ld/
ldexp.c 954 is_dot (const etree_type *tree) function
1001 && is_dot (tree->binary.lhs)
1013 && is_dot (tree->binary.lhs)
ldlang.c 4849 bool is_dot;
4857 is_dot = false;
4864 is_dot = (dst[0] == '.' && dst[1] == 0);
4884 || is_dot
4895 if (is_dot)
4846 bool is_dot; local
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
fs_ops.cc 136 inline bool is_dot(wchar_t c) { return c == L'.'; } function in namespace:__anon14860
138 inline bool is_dot(char c) { return c == '.'; }
141 inline bool is_dot(const fs::path& path) function in namespace:__anon14860
144 return filename.size() == 1 && is_dot(filename[0]);
150 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
220 else if (is_dot(f))
525 if (is_dot(filename) || is_dotdot(filename))
fs_path.cc 1684 inline bool is_dot(fs::path::value_type c) { return c == dot; } function in namespace:__anon14865
1686 inline bool is_dot(const fs::path& path) function in namespace:__anon14865
1689 return filename.size() == 1 && is_dot(filename[0]);
1695 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]);
1780 else if (is_dot(p))
1839 else if (!p.empty() && !is_dot(p))

Completed in 55 milliseconds