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

  /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/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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
hash.h 223 struct streq { struct in namespace:google::protobuf
  /external/compiler-rt/make/
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)),,\
  /external/protobuf/src/google/protobuf/stubs/
hash.h 211 struct streq { struct in namespace:google::protobuf
  /external/qemu/
path.c 61 #define streq(a,b) (strcmp((a), (b)) == 0) macro
80 if (!streq(dirent->d_name,".") && !streq(dirent->d_name,"..")){
  /external/oprofile/module/
oprofile.h 39 #define streq(a, b) (!strcmp((a), (b))) macro
  /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)
  /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
  /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...]
  /external/valgrind/main/cachegrind/
cg_merge.c 194 static Bool streq ( char* s1, char* s2 ) function
784 if (!streq( dst->events_line, src->events_line ))
865 if (streq(argv[i], "-h") || streq(argv[i], "--help"))
871 if (streq(argv[i], "-o")) {
    [all...]
  /build/core/
definitions.mk 563 define streq macro
    [all...]

Completed in 272 milliseconds