HomeSort by relevance Sort by last modified time
    Searched refs:str1 (Results 51 - 75 of 281) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 59 String str1 = "Some data for testing communication between processes\n"; local
62 os.write(str1.getBytes());
73 assertEquals(str1 + str2 + str3, received);
  /external/valgrind/VEX/test/
fpgames.s 4 .section .rodata.str1.1,"aMS",@progbits,1
75 .section .rodata.str1.1,"aMS",@progbits,1
fp1.s 4 .section .rodata.str1.1,"aMS",@progbits,1
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
MultiArgTestAdapter.java 52 public static void setBoth(TextView view, String str1,
54 view.setText(join(str1, str2));
  /external/clang/test/FixIt/
typo.cpp 24 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'otherstd'?}} \
  /external/libxml2/
error.c 413 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) &&
415 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) {
419 channel(data, "%s\n", err->str1);
440 * @str1: extra string info
456 const char *file, int line, const char *str1,
587 if (str1 != NULL)
588 to->str1 = (char *) xmlStrdup((const xmlChar *) str1);
881 if (err->str1 != NULL)
882 xmlFree(err->str1);
956 char *message, *file, *str1, *str2, *str3; local
    [all...]
  /external/llvm/test/MC/Mips/
elf-N64.s 58 .section .rodata.str1.4,"aMS",@progbits,1
xgot.s 61 .section .rodata.str1.1,"aMS",@progbits,1
r-mips-got-disp.s 59 .section .rodata.str1.1,"aMS",@progbits,1
  /packages/apps/InCallUI/src/com/android/incallui/
Log.java 53 public static void d(Object obj, String str1, Object str2) {
55 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
65 public static void v(Object obj, String str1, Object str2) {
67 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
  /external/protobuf/src/google/protobuf/
message_unittest.cc 78 string str1("foo");
81 EXPECT_TRUE(message.SerializeToString(&str1));
85 EXPECT_EQ(str1.size() + 3, str2.size());
89 EXPECT_TRUE(str2.substr(3) == str1);
91 // GCC gives some sort of error if we try to just do stream.str() == str1.
93 EXPECT_TRUE(temp == str1);
95 EXPECT_TRUE(message.SerializeAsString() == str1);
  /external/clang/test/SemaCXX/
array-bounds.cpp 66 const char *str1 = "foo"; local
67 char c1 = str1[5]; // no warning for pointers
  /external/icu/icu4c/source/common/
cstring.h 131 uprv_stricmp(const char *str1, const char *str2);
138 uprv_strnicmp(const char *str1, const char *str2, uint32_t n);
  /external/icu/icu4c/source/test/cintltst/
ulistfmttest.c 29 static const UChar str1[] = { 0x42,0x62,0 }; /* "Bb" */ variable
33 static const UChar* strings[] = { str0, str1, str2, str3, str4 };
  /external/libvncserver/x11vnc/
help.c 5980 char str1[] = local
    [all...]
  /external/valgrind/include/
pub_tool_basics.h 68 #define VGAPPEND(str1,str2) str1##str2
  /external/llvm/test/MC/ELF/
relocation-386.s 149 .section .rodata.str1.16,"aMS",@progbits,1
  /external/bison/src/
files.c 88 | STR1, and STR2. |
92 concat2 (char const *str1, char const *str2)
94 size_t len = strlen (str1) + strlen (str2);
97 cp = stpcpy (res, str1);
  /external/eigen/bench/btl/generic_bench/
btl.hh 147 BtlString str1 = str; local
148 str1.toLowerCase();
149 return str0 == str1;

Completed in 1910 milliseconds

1 23 4 5 6 7 8 91011>>