HomeSort by relevance Sort by last modified time
    Searched refs:str2 (Results 126 - 150 of 464) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-unsequenced.cpp 51 S str2 = { a++, a++ }; // ok local
  /external/avb/libavb/
avb_util.c 175 const char* str2,
190 avb_memcpy(buf + str1_len, str2, str2_len);
  /external/libpcap/
pcap-sita.c 503 char str1[MAX_LINE_SIZE], str2[MAX_LINE_SIZE]; local
522 strncpy(str2, s2, (s2_p1_len > sizeof(str2)) ? s2_p1_len : sizeof(str2)); *(str2 + s2_p1_len) = 0;
523 retval = strcmp(str1, str2);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-d30v.c 1574 char *str2; local
    [all...]
tc-i370.c 598 char *str2;
615 for (ch = *str, str2 = ident;
616 (str2 < ident + sizeof (ident) - 1
619 *str2++ = TOLOWER (ch);
621 *str2 = '\0';
622 len = str2 - ident;
592 char *str2; local
    [all...]
  /external/libxml2/
SAX2.c 93 * @str2: extra data
99 const char *msg, const char *str1, const char *str2)
114 (const char *) str2, NULL, 0, 0,
115 msg, (const char *) str1, (const char *) str2);
122 (const char *) str2, NULL, 0, 0,
123 msg, (const char *) str1, (const char *) str2);
133 * @str2: an error string
139 const char *msg, const xmlChar *str1, const xmlChar *str2)
148 (const char *) str1, (const char *) str2,
149 NULL, 0, 0, msg, str1, str2);
    [all...]
c14n.c 394 xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) {
395 if (str1 == str2) return(1);
396 if (str1 == NULL) return((*str2) == '\0');
397 if (str2 == NULL) return((*str1) == '\0');
399 if (*str1++ != *str2) return(0);
400 } while (*str2++);
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 627 UnicodeString str2(strerror(errno), "");
628 str2.append((UChar32) 0);
630 u_wmsg(stderr, "cantOpenInputF", str1.getBuffer(), str2.getBuffer());
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 7265 PyObject *str2; local
7303 PyUnicodeObject *str2; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 7157 PyObject *str2; local
7195 PyUnicodeObject *str2; local
    [all...]
  /external/python/cpython2/Objects/
unicodeobject.c 7278 PyObject *str2; local
7316 PyUnicodeObject *str2; local
    [all...]
  /external/selinux/libsepol/cil/src/
cil.c 1340 char *str2 = NULL; local
1393 char *str2 = NULL; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
regcoll.cpp 1285 UChar str2[maxLength]; local
    [all...]
tchcfmt.cpp 568 double v2, const char* str2,
590 const char* str[] = {str1, str2, str3};
rbbiapts.cpp 258 UnicodeString str2="Second string."; local
269 CharacterIterator* text2= new StringCharacterIterator(str2);
270 CharacterIterator* text3= new StringCharacterIterator(str2, 3, 10, 3); // "ond str"
282 wordIter1->setText(str2);
291 TEST_ASSERT(tstr == str2);
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersExampleTests.cs 262 var str2 = fbb2.CreateString("My Monster");
265 Monster.AddName(fbb2, str2);
  /external/flatbuffers/tests/
JavaTest.java 173 int str2 = fbb2.createString("My Monster"); local
176 Monster.addName(fbb2, str2);
  /external/libevent/include/event2/
util.h 642 int evutil_ascii_strcasecmp(const char *str1, const char *str2);
647 int evutil_ascii_strncasecmp(const char *str1, const char *str2, size_t n);
  /external/valgrind/drd/
drd_thread.c 1171 HChar *str1, *str2; local
1225 HChar *str1, *str2; local
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 85 static bool StringsEqual(const char* str1, const char* str2) {
86 if (str1 == nullptr && str2 == nullptr) {
89 if (str1 == nullptr || str2 == nullptr) {
92 return strcmp(str1, str2) == 0;
    [all...]
  /external/pdfium/core/fxcrt/
bytestring.cpp 182 ByteString::ByteString(const ByteStringView& str1, const ByteStringView& str2) {
184 nSafeLen += str2.GetLength();
192 m_pData->CopyContentsAt(str1.GetLength(), str2.unterminated_c_str(),
193 str2.GetLength());
widestring.cpp 383 WideString::WideString(const WideStringView& str1, const WideStringView& str2) {
385 nSafeLen += str2.GetLength();
393 m_pData->CopyContentsAt(str1.GetLength(), str2.unterminated_c_str(),
394 str2.GetLength());
  /external/toybox/kconfig/
expr.c 946 const char *str1, *str2; local
970 str2 = sym_get_string_value(e->right.sym);
971 return !strcmp(str1, str2) ? yes : no;
976 str2 = sym_get_string_value(e->right.sym);
977 return !strcmp(str1, str2) ? no : yes;
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 499 llvm::StringRef str2; member in struct:StringTypes
528 io.mapRequired("str2", st.str2);
559 map.str2 = "\"bbb";
612 EXPECT_TRUE(map.str2.equals("\"bbb"));
2184 llvm::StringRef str1, str2, str3; member in struct:FlowMap
    [all...]
  /external/Microsoft-GSL/tests/
string_span_tests.cpp 347 std::vector<char> str2 = std::move(str1); variable
348 cstring_span<> span2 = str2;

Completed in 2349 milliseconds

1 2 3 4 56 7 8 91011>>