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

  /external/syslinux/core/fs/
chdir.c 21 static size_t copy_string(char *buf, size_t ix, size_t bufsize, const char *src) function
51 s = copy_string(dst, s, bufsize, "/");
52 s = copy_string(dst, s, bufsize, inode->name);
78 s = copy_string(dst, 0, bufsize, "/");
  /external/libchrome/base/
values_unittest.cc 482 Value* copy_string = NULL; local
483 ASSERT_TRUE(copy_dict->Get("string", &copy_string));
484 ASSERT_TRUE(copy_string);
485 ASSERT_NE(copy_string, original_string);
486 ASSERT_TRUE(copy_string->IsType(Value::TYPE_STRING));
489 ASSERT_TRUE(copy_string->GetAsString(&copy_string_value));
490 ASSERT_TRUE(copy_string->GetAsString(&copy_string16_value));
663 std::unique_ptr<Value> copy_string = original_string->CreateDeepCopy(); local
673 EXPECT_TRUE(original_string->Equals(copy_string.get()));
    [all...]

Completed in 72 milliseconds