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

  /external/chromium_org/apps/
saved_files_service_unittest.cc 63 std::string id_string = GenerateId(id); local
64 SCOPED_TRACE(id_string);
65 EXPECT_TRUE(service_->IsRegistered(extension_->id(), id_string));
67 service_->GetFileEntry(extension_->id(), id_string);
69 EXPECT_EQ(id_string, entry->id);
  /external/chromium_org/sync/syncable/
nigori_util.cc 110 Id id_string = type_root.GetFirstChildId(); local
111 to_visit.push(id_string);
113 id_string = to_visit.front();
115 if (id_string.IsRoot())
118 Entry child(trans, GET_BY_ID, id_string);
directory_backing_store.cc 1242 std::string id_string; local
    [all...]
  /external/chromium_org/sync/internal_api/
base_node.cc 179 syncable::Id id_string = GetEntry()->GetPredecessorId(); local
180 if (id_string.IsRoot())
182 return IdToMetahandle(GetTransaction()->GetWrappedTrans(), id_string);
186 syncable::Id id_string = GetEntry()->GetSuccessorId(); local
187 if (id_string.IsRoot())
189 return IdToMetahandle(GetTransaction()->GetWrappedTrans(), id_string);
193 syncable::Id id_string = GetEntry()->GetFirstChildId(); local
194 if (id_string.IsRoot())
196 return IdToMetahandle(GetTransaction()->GetWrappedTrans(), id_string);
  /external/chromium_org/components/bookmarks/browser/
bookmark_codec.cc 275 std::string id_string; local
278 if (!value.GetString(kIdKey, &id_string) ||
279 !base::StringToInt64(id_string, &id) ||
319 UpdateChecksumWithUrlNode(id_string, title, url_string);
347 UpdateChecksumWithFolderNode(id_string, title);
  /external/chromium_org/sync/test/engine/
mock_connection_manager.cc 398 last_sent_commit().entries(0).id_string()));
409 last_commit_response().entryresponse(0).id_string());
415 last_commit_response().entryresponse(0).id_string());
442 string id_string = GetMutableLastUpdate()->id_string(); local
444 AddUpdateTombstone(syncable::Id::CreateFromServerId(id_string));
578 string id_string = entry.id_string(); local
585 id = syncable::Id::CreateFromClientString(id_string);
587 id = syncable::Id::CreateFromServerId(id_string);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmarks_api.cc 120 bool BookmarksFunction::GetBookmarkIdAsInt64(const std::string& id_string,
122 if (base::StringToInt64(id_string, id))
130 const std::string& id_string) {
132 if (!GetBookmarkIdAsInt64(id_string, &id))
557 std::string id_string; local
558 if (!args->GetString(0, &id_string))
561 if (base::StringToInt64(id_string, &id))
  /external/chromium_org/chrome/test/chromedriver/
window_commands.cc 318 std::string id_string; local
320 if (id->GetAsString(&id_string)) {
322 "[@name=\"%s\" or @id=\"%s\"]", id_string.c_str(), id_string.c_str());
  /external/chromium_org/components/policy/core/common/
schema.cc 437 std::string id_string; local
438 if (schema.GetString(schema::kId, &id_string)) {
485 std::string id_string; local
486 if (schema.GetString(schema::kId, &id_string)) {
487 if (ContainsKey(*id_map, id_string)) {
488 *error = "Duplicated id: " + id_string;
491 (*id_map)[id_string] = *index;
    [all...]
  /external/chromium_org/storage/browser/fileapi/
sandbox_directory_database.cc 863 std::string id_string; local
865 db_->Get(leveldb::ReadOptions(), LastFileIdKey(), &id_string);
867 if (!base::StringToInt64(id_string, file_id)) {
891 std::string id_string = GetFileLookupKey(file_id); local
898 batch->Put(child_key, id_string);
904 id_string,
  /external/chromium_org/components/search_engines/
template_url_service.cc 295 std::string id_string = prefs->GetString(prefs::kDefaultSearchProviderID); local
327 if (!id_string.empty() && !*is_managed) {
329 base::StringToInt64(id_string, &value);
396 std::string id_string; local
418 id_string = base::Int64ToString(t_url->id());
442 prefs->SetString(prefs::kDefaultSearchProviderID, id_string);
    [all...]
  /external/netperf/
netlib.c 2886 static char id_string[80]; local
    [all...]

Completed in 368 milliseconds