/external/compiler-rt/make/ |
D | 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)),\
|
D | util.mk | 11 streq = $(if $(1),$(if $(subst $(1),,$(2))$(subst $(2),,$(1)),,true),$(if $(2),,true)) 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))) 88 $(if $(call streq,$($(1)),$(2)),,\
|
D | subdir.mk | 81 $(if $(call streq,.,$(Dir)),\
|
/external/compiler-rt/make/test/ |
D | 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/clang/test/SemaCXX/ |
D | cxx11-user-defined-literals.cpp | 47 constexpr bool streq(const char *p, const char *q) { in streq() function 48 return *p == *q && (!*p || streq(p+1, q+1)); in streq() 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"), "");
|
D | constexpr-duffs-device.cpp | 26 constexpr bool streq(const char *a, const char *b) { in streq() function 31 static_assert(streq(S().stuff, "Hello, world!"), "should be same"); 32 static_assert(!streq(S().stuff, "Something else"), "should be different");
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
D | p8.cpp | 7 constexpr bool streq(const char *p, const char *q) { in streq() function 8 return *p == *q && (!*p || streq(p+1, q+1)); in streq() 10 static_assert(streq(s, "foobarbazquux"), ""); 16 static_assert(streq(t, "foo"), "");
|
/external/lldb/tools/darwin-debug/ |
D | darwin-debug.cpp | 47 #define streq(a,b) strcmp(a,b) == 0 macro 199 if (streq (optarg, "i386")) in main() 201 else if (streq (optarg, "x86_64")) in main()
|
/external/compiler-rt/ |
D | 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/llvm/test/CodeGen/Thumb2/ |
D | 2011-06-07-TwoAddrEarlyClobber.ll | 8 ; CHECK: streq {{(r[0-9])|(lr)}}, {{\[}}[[REGISTER]]{{\]}}, #24
|
/external/icu/icu4c/source/i18n/ |
D | rbnf.cpp | 118 streq(const UChar* lhs, const UChar* rhs) { in streq() function 138 if (!streq(getRuleSetName(i), rhs->getRuleSetName(i))) { in operator ==() 148 if (!streq(locale, rhs->getLocaleName(ix))) { in operator ==() 152 if (!streq(getDisplayName(i, j), rhs->getDisplayName(ix, j))) { in operator ==() 167 if (streq(locale, getLocaleName(i))) { in indexForLocale() 178 if (streq(ruleset, getRuleSetName(i))) { in indexForRuleSet()
|
/external/llvm/test/CodeGen/ARM/ |
D | ifcvt-iter-indbr.ll | 14 ; CHECK-NEXT: streq.w
|
/external/valgrind/cachegrind/ |
D | cg_merge.c | 199 static Bool streq ( const char* s1, const char* s2 ) in streq() function 795 if (!streq( dst->events_line, src->events_line )) in merge_CacheProfInfo() 876 if (streq(argv[i], "-h") || streq(argv[i], "--help")) in main() 882 if (streq(argv[i], "-o")) { in main()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | hash.h | 223 struct streq {
|
/external/lldb/source/Symbol/ |
D | ClangASTContext.cpp | 813 #define streq(a,b) strcmp(a,b) == 0 in GetBuiltinTypeForDWARFEncodingAndBitSize() macro 876 if (streq(type_name, "wchar_t") && in GetBuiltinTypeForDWARFEncodingAndBitSize() 879 if (streq(type_name, "void") && in GetBuiltinTypeForDWARFEncodingAndBitSize() 924 if (streq(type_name, "signed char")) in GetBuiltinTypeForDWARFEncodingAndBitSize() 995 if (streq(type_name, "char16_t")) in GetBuiltinTypeForDWARFEncodingAndBitSize() 999 else if (streq(type_name, "char32_t")) in GetBuiltinTypeForDWARFEncodingAndBitSize()
|
/external/protobuf/src/google/protobuf/ |
D | message.cc | 249 hash<const char*>, streq> file_map_;
|
D | descriptor.cc | 306 hash<const char*>, streq> 312 hash<const char*>, streq>
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | arm-tests.txt | 306 # CHECK: streq r1, [sp], #-1567
|
/external/bison/m4/ |
D | gnulib-comp.m4 | 196 # Code from module streq: 1093 lib/streq.h
|
/external/bison/lib/ |
D | gnulib.mk | 2068 EXTRA_DIST += streq.h
|
D | Makefile.in | 1549 strchrnul.valgrind strdup.c streq.h strerror.c \
|
/external/llvm/lib/Target/ARM/ |
D | README.txt | 648 streq r0, [r2]
|
/external/valgrind/ |
D | NEWS | 1320 298354 Unhandled ARM Thumb instruction 0xEB0D 0x0585 (streq)
|