/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/ |
TextViewBindingAdapter.java | 326 private static boolean haveContentsChanged(CharSequence str1, CharSequence str2) { 327 if ((str1 == null) != (str2 == null)) { 329 } else if (str1 == null) { 332 final int length = str1.length(); 337 if (str1.charAt(i) != str2.charAt(i)) {
|
/toolchain/binutils/binutils-2.27/bfd/ |
rs6000-core.c | 708 const char *str1, *str2; local 762 str1 = strrchr (path, '/'); 766 str1 = str1 != NULL ? str1 + 1 : path; 769 if (strcmp (str1, str2) == 0)
|
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
BrowsingPage.cpp | 365 CString str1; local 372 str1 = self->m_browseListCtrl.GetItemText( (int) lParam1, 1 ); 375 ret = str1.Compare( str2 );
|
/external/avb/libavb/ |
avb_util.h | 201 /* Concatenates |str1| (of |str1_len| bytes) and |str2| (of |str2_len| 211 const char* str1,
|
avb_util.c | 173 const char* str1, 189 avb_memcpy(buf, str1, str1_len);
|
/external/v8/src/ |
flags.cc | 147 const char* str1 = string_value(); local 149 if (str2 == NULL) return str1 == NULL; 150 if (str1 == NULL) return str2 == NULL; 151 return strcmp(str1, str2) == 0;
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_stdinc.h | 338 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); 339 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); 340 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); 341 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_stdinc.h | 338 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); 339 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); 340 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); 341 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_stdinc.h | 328 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); 329 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); 330 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); 331 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_stdinc.h | 338 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); 339 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); 340 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); 341 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
|
/toolchain/binutils/binutils-2.27/gas/config/ |
tc-m32r.c | 896 assemble_two_insns (char *str1, char *str2, int parallel_p) 920 (gas_cgen_cpu_desc, str1, & first.fields, first.buffer, & errmsg))) 930 as_bad (_("not a 16 bit instruction '%s'"), str1); 942 as_bad (_("instruction '%s' is for the M32R2 only"), str1); 955 as_bad (_("unknown instruction '%s'"), str1); 964 as_bad (_("instruction '%s' is for the M32RX only"), str1); 973 as_bad (_("instruction '%s' cannot be executed in parallel."), str1); 981 str3 = str1; 984 str1 = str2 + 2; 992 char *s2 = str1; [all...] |
/external/libxml2/ |
SAX2.c | 62 const char *str1 = "out of memory\n"; local 71 XML_ERR_ERROR, NULL, 0, (const char *) str1, 73 msg, (const char *) str1, NULL); 81 XML_ERR_ERROR, NULL, 0, (const char *) str1, 83 msg, (const char *) str1, NULL); 92 * @str1: extra data 99 const char *msg, const char *str1, const char *str2) 113 XML_ERR_ERROR, NULL, 0, (const char *) str1, 115 msg, (const char *) str1, (const char *) str2); 121 XML_ERR_ERROR, NULL, 0, (const char *) str1, [all...] |
/external/icu/icu4c/source/test/cintltst/ |
cmsgtst.c | 667 UChar* str1; local 676 str1=(UChar*)malloc(sizeof(UChar) * 25); 677 u_uastrcpy(str1, "female"); 682 resultLengthOut=u_formatMessage( "fr", pattern, u_strlen(pattern), NULL, resultlength, &status, str , str1); 688 u_formatMessage( "fr", pattern, u_strlen(pattern), result, resultlength, &status, str , str1); 701 free(str1); 706 str1=(UChar*)malloc(sizeof(UChar) * 25); 707 u_uastrcpy(str1, "other"); 712 resultLengthOut=u_formatMessage( "fr", pattern, u_strlen(pattern), NULL, resultlength, &status, str , str1,6); 718 u_formatMessage( "fr", pattern, u_strlen(pattern), result, resultlength, &status, str , str1, 6) [all...] |
/external/google-breakpad/src/testing/test/ |
gmock-matchers_test.cc | 1097 string str1("oabocdooeoo"); 1099 Matcher<const string&> m0 = StrCaseEq(str1); 1102 str1[3] = str2[3] = '\0'; 1103 Matcher<const string&> m1 = StrCaseEq(str1) [all...] |
/art/test/074-gc-thrash/src/ |
Main.java | 269 String str1; local 282 funStr = str1 = makeString(iteration);
|
/external/apache-http/src/org/apache/commons/codec/language/ |
Metaphone.java | 383 * @param str1 First of two strings to compare 388 public boolean isMetaphoneEqual(String str1, String str2) { 389 return metaphone(str1).equals(metaphone(str2));
|
/external/icu/icu4c/source/test/iotest/ |
stream.cpp | 56 UnicodeString str1 = UNICODE_STRING_SIMPLE("str1"); local 97 outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << UTF8_NEW_LINE << str4 << ends;
|
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
DateFormatTest.java | 197 String str1 = dfmt.format(d); local 200 if (!str1.equals(str2)) {
|
/external/valgrind/include/ |
pub_tool_basics.h | 68 #define VGAPPEND(str1,str2) str1##str2
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/inputmethod/ |
VirtualKeyboardPreferenceControllerTest.java | 131 final String str1 = (String) args[1]; 134 str1, str2);
|
/external/boringssl/src/util/fipstools/testdata/x86_64-Sections/ |
out.s | 22 # WAS .section .rodata.str1.1,"aMS",@progbits,1
|
/external/clang/test/SemaCXX/ |
warn-unsequenced.cpp | 50 S str1(a++, a++); // expected-warning {{multiple unsequenced modifications}}
|
/external/selinux/libsepol/cil/src/ |
cil.c | 1339 char *str1 = NULL; local 1392 char *str1 = NULL; local [all...] |
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/ |
32bit.s | 2 .section .rodata.str1.1,"aMS",@progbits,1
|
/external/libpcap/ |
pcap-sita.c | 503 char str1[MAX_LINE_SIZE], str2[MAX_LINE_SIZE]; local 521 strncpy(str1, s1, (s1_p1_len > sizeof(str1)) ? s1_p1_len : sizeof(str1)); *(str1 + s1_p1_len) = 0; 523 retval = strcmp(str1, str2); [all...] |