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

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p8.cpp 7 constexpr bool streq(const char *p, const char *q) { function
8 return *p == *q && (!*p || streq(p+1, q+1));
10 static_assert(streq(s, "foobarbazquux"), "");
16 static_assert(streq(t, "foo"), "");
  /external/clang/test/SemaCXX/
constexpr-duffs-device.cpp 26 constexpr bool streq(const char *a, const char *b) { function
31 static_assert(streq(S().stuff, "Hello, world!"), "should be same");
32 static_assert(!streq(S().stuff, "Something else"), "should be different");
cxx11-user-defined-literals.cpp 47 constexpr bool streq(const char *p, const char *q) { function
48 return *p == *q && (!*p || streq(p+1, q+1));
51 static_assert(streq(143.97_fractional_digits, "97"), "");
52 static_assert(streq(0x786_fractional_digits, "0x786"), "");
53 static_assert(streq(.4_fractional_digits, "4"), "");
54 static_assert(streq(4._fractional_digits, ""), "");
55 static_assert(streq(1e+97_fractional_digits, "1e+97"), "");
56 static_assert(streq(0377_fractional_digits, "0377"), "");
57 static_assert(streq(0377.5_fractional_digits, "5"), "");
  /external/compiler-rt/make/
lib_util.mk 20 $(if $(call streq,1,$(words $(Tmp.SelectFunctionDir))),\
23 $(if $(call streq,0,$(words $(Tmp.SelectFunctionDir))),\
31 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\
36 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\
40 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\
44 $(if $(call streq,Generic,$($(key).Implementation)),$(key))))
63 $(if $(call streq,1,$(4)),\
util.mk 6 # Function: streq LHS RHS
11 streq = $(if $(1),$(if $(subst $(1),,$(2))$(subst $(2),,$(1)),,true),$(if $(2),,true)) macro
16 strneq = $(if $(call streq,$(1),$(2)),,true)
21 contains = $(if $(strip $(foreach i,$(1),$(if $(call streq,$(2),$(i)),T,))),true,)
49 IsUndefined = $(call streq,undefined,$(flavor $(1)))
63 # foo = $(call streq,a,a)
66 # CHECKVALUE: foo: $(call streq,,) - true
88 $(if $(call streq,$($(1)),$(2)),,\
subdir.mk 81 $(if $(call streq,.,$(Dir)),\
  /external/compiler-rt/make/test/
test-util.mk 3 streq_t0 = $(call streq,,)
5 streq_t1 = $(call streq,b,)
7 streq_t2 = $(call streq,,b)
9 streq_t3 = $(call streq,b,b)
11 streq_t4 = $(call streq,bb,b)
13 streq_t5 = $(call streq,b,bb)
15 streq_t6 = $(call streq,bb,bb)
  /bionic/libc/arch-arm/generic/bionic/
strcpy.S 57 streq r3, [ip], #4
77 streq r4, [ip], #4
  /external/oprofile/module/
oprofile.h 39 #define streq(a, b) (!strcmp((a), (b))) macro
op_dname.c 194 if (streq(get_from_pool(entry->name), dname->name)
  /external/lldb/tools/darwin-debug/
darwin-debug.cpp 47 #define streq(a,b) strcmp(a,b) == 0 macro
199 if (streq (optarg, "i386"))
201 else if (streq (optarg, "x86_64"))
  /external/compiler-rt/
Makefile 140 $(if $(call streq,1,$(Tmp.SHARED_LIBRARY)),
158 $(if $(call streq,1,$(words $(Tmp.ArchsToBuild))), \
196 $(if $(call streq,1,$(Tmp.SHARED_LIBRARY)),
244 $(if $(call streq,$(Tmp.VISIBILITY_HIDDEN),1),\
246 $(if $(call streq,$(Tmp.KERNEL_USE),1),\
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
hash.h 223 struct streq { struct in namespace:google::protobuf
  /external/chromium_org/third_party/skia/src/opts/
memset32_neon.S 16 streq r1, [r0], #4
  /external/chromium_org/third_party/icu/source/i18n/
rbnf.cpp 114 streq(const UChar* lhs, const UChar* rhs) { function
134 if (!streq(getRuleSetName(i), rhs->getRuleSetName(i))) {
143 // if no locale, ix is -1, getLocaleName returns null, so streq returns false
144 if (!streq(locale, rhs->getLocaleName(ix))) {
148 if (!streq(getDisplayName(i, j), rhs->getDisplayName(ix, j))) {
163 if (streq(locale, getLocaleName(i))) {
174 if (streq(ruleset, getRuleSetName(i))) {
    [all...]
  /external/icu/icu4c/source/i18n/
rbnf.cpp 117 streq(const UChar* lhs, const UChar* rhs) { function
137 if (!streq(getRuleSetName(i), rhs->getRuleSetName(i))) {
146 // if no locale, ix is -1, getLocaleName returns null, so streq returns false
147 if (!streq(locale, rhs->getLocaleName(ix))) {
151 if (!streq(getDisplayName(i, j), rhs->getDisplayName(ix, j))) {
166 if (streq(locale, getLocaleName(i))) {
177 if (streq(ruleset, getRuleSetName(i))) {
    [all...]
  /build/core/
product.mk 294 $(if $(call streq,$($(v)),$($(strip $(1))_$(call rot13,$(v)))),, \
definitions.mk 617 define streq macro
    [all...]
  /external/lldb/source/Symbol/
ClangASTContext.cpp 813 #define streq(a,b) strcmp(a,b) == 0 macro
876 if (streq(type_name, "wchar_t") &&
879 if (streq(type_name, "void") &&
    [all...]
  /bionic/libc/arch-arm/cortex-a9/bionic/
string_copy.S 169 streq r2, [r0], #3
171 streq r2, [r0]
strcat.S 194 streq r2, [r0]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.cc 249 hash<const char*>, streq> file_map_;
descriptor.cc 294 hash<const char*>, streq>
300 hash<const char*>, streq>
    [all...]
  /external/bison/lib/
gnulib.mk     [all...]

Completed in 2043 milliseconds