/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 | 80 $(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)
|
/external/qemu/ |
path.c | 61 #define streq(a,b) (strcmp((a), (b)) == 0) macro 80 if (!streq(dirent->d_name,".") && !streq(dirent->d_name,"..")){
|
/bionic/libc/arch-arm/generic/bionic/ |
strcpy.S | 57 streq r3, [ip], #4 77 streq r4, [ip], #4
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S | 42 streq r10, [r7, #0]
|
/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/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),\
|
/ndk/sources/host-tools/make-3.81/ |
make.h | 307 # define streq(a, b) \ macro 317 # define strieq(a, b) streq(a, b) 321 # define streq(a, b) (strcmp ((a), (b)) == 0) macro
|
rule.c | 256 if (slen == s2len && streq (dep_name (d), dep_name (d2))) 304 if (!streq (rule->targets[i], r->targets[j])) 312 if (!streq (dep_name (d), dep_name (d2)))
|
/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 | 17 streq r1, [r0], #4
|
/external/protobuf/src/google/protobuf/stubs/ |
hash.h | 211 struct streq { struct in namespace:google::protobuf
|
/external/skia/src/opts/ |
memset32_neon.S | 17 streq r1, [r0], #4
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
StatusBarIconView.java | 86 private static boolean streq(String a, String b) { method in class:StatusBarIconView 104 && streq(mIcon.iconPackage, icon.iconPackage)
|
/external/chromium_org/third_party/icu/source/i18n/ |
rbnf.cpp | 116 streq(const UChar* lhs, const UChar* rhs) { function 136 if (!streq(getRuleSetName(i), rhs->getRuleSetName(i))) { 145 // if no locale, ix is -1, getLocaleName returns null, so streq returns false 146 if (!streq(locale, rhs->getLocaleName(ix))) { 150 if (!streq(getDisplayName(i, j), rhs->getDisplayName(ix, j))) { 165 if (streq(locale, getLocaleName(i))) { 176 if (streq(ruleset, getRuleSetName(i))) { [all...] |
/external/icu4c/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...] |
/build/core/ |
product.mk | 275 $(if $(call streq,$($(v)),$($(strip $(1))_$(call rot13,$(v)))),, \
|
/external/libffi/src/arm/ |
sysv.S | 195 streq r0, [r2]
|
/external/protobuf/src/google/protobuf/ |
message.cc | 210 hash<const char*>, streq> file_map_;
|