HomeSort by relevance Sort by last modified time
    Searched refs:other_string (Results 1 - 2 of 2) sorted by null

  /system/extras/libc_test/
main.cpp 250 char *other_string = (char *)malloc(max_size+2);
251 if (other_string == NULL) {
259 other_string[j] = (char)(32 + (j % 96));
260 string[j] = other_string[j];
262 other_string[i] = '\0';
268 if (test_strcmp(other_string, string) != 0) {
269 printf(" Failed at size %d, src1 %p, src2 %p\n", i, other_string, string);
276 if (test_strcmp(string, other_string) != 0) {
277 printf(" Failed at size %d, src1 %p, src2 %p\n", i, string, other_string);
281 // Now make other_string longer than our protected string
    [all...]
  /external/chromium_org/base/json/
json_parser.cc 152 std::string other_string; variable
153 return other->IsType(TYPE_STRING) && other->GetAsString(&other_string) &&
154 StringPiece(other_string) == string_piece_;

Completed in 421 milliseconds