/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
MenuWrapperICS.java | 76 Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) { 83 .addIntentOptions(groupId, itemId, order, caller, specifics, intent, flags, items);
|
/external/chromium/chrome/browser/sync/glue/ |
extension_sync.cc | 154 LOG(ERROR) << "Invalid extensions specifics for id " << id; 210 const sync_pb::ExtensionSpecifics& specifics = local 212 const std::string& id = specifics.id(); 215 (*traits.extension_specifics_setter)(specifics, &write_node); 227 (*traits.extension_specifics_setter)(specifics, &create_node); 310 LOG(ERROR) << "Invalid extensions specifics for id " << id
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_service.cc | 1275 sync_pb::EntitySpecifics specifics; local 1323 sync_pb::SearchEngineSpecifics specifics = local [all...] |
/development/samples/NotePad/src/com/example/android/notepad/ |
NotesList.java | 205 Intent[] specifics = new Intent[1]; local 208 specifics[0] = new Intent(Intent.ACTION_EDIT, uri); 230 specifics, // These specific options must appear first. 231 intent, // These Intent objects map to the options in specifics. 233 items // The menu items generated from the specifics-to-
|
/external/chromium_org/chrome/browser/prefs/ |
synced_pref_change_registrar_browsertest.cc | 68 sync_pb::EntitySpecifics specifics; local 70 specifics.mutable_preference(); 75 ++next_sync_data_id_, specifics, base::Time());
|
pref_model_associator.h | 95 // Extract preference value and name from sync specifics. 97 const sync_pb::PreferenceSpecifics& specifics,
|
/external/chromium_org/chrome/browser/sync/sessions2/ |
sessions_sync_manager.h | 209 const sync_pb::SessionSpecifics& specifics, 222 // Helper method to load the favicon data from the tab specifics. If the 240 // Used to populate a session header from the session specifics header 247 // Builds |session_window| from the session specifics window 251 const sync_pb::SessionWindow& specifics, 295 // Populates |specifics| based on the data in |tab_delegate|. 297 sync_pb::SessionSpecifics* specifics);
|
tab_node_pool2.cc | 73 sync_pb::SessionSpecifics* specifics = entity.mutable_session(); local 74 specifics->set_session_tag(machine_tag_); 75 specifics->set_tab_node_id(tab_node_id);
|
sessions_sync_manager_unittest.cc | 74 const sync_pb::SessionSpecifics& specifics, 77 entity.mutable_session()->CopyFrom(specifics); 541 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); 542 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); 543 EXPECT_TRUE(specifics.has_header()); 544 const sync_pb::SessionHeader& header_s = specifics.header(); 649 const sync_pb::SessionSpecifics& specifics(data.GetSpecifics().session()); 650 EXPECT_EQ(manager()->current_machine_tag(), specifics.session_tag()); 651 EXPECT_TRUE(specifics.has_header()); 652 const sync_pb::SessionHeader& header_s = specifics.header() [all...] |
/external/chromium_org/sync/syncable/ |
mutable_entry.cc | 40 // Normally the SPECIFICS setting code is wrapped in logic to deal with 44 sync_pb::EntitySpecifics specifics; local 45 AddDefaultFieldValue(model_type, &specifics); 46 kernel->put(SPECIFICS, specifics); 207 if (kernel_->ref(SPECIFICS).SerializeAsString() != 209 kernel_->put(SPECIFICS, value);
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
ActionMenu.java | 71 ComponentName caller, Intent[] specifics, Intent intent, int flags, 75 pm.queryIntentActivityOptions(caller, specifics, intent, 0); 85 ri.specificIndex < 0 ? intent : specifics[ri.specificIndex]);
|
/external/chromium/chrome/browser/sync/engine/ |
syncapi.cc | 97 using syncable::SPECIFICS; 202 const sync_pb::EntitySpecifics& specifics, Cryptographer* crypto) { 203 if (!specifics.HasExtension(sync_pb::password)) 206 specifics.GetExtension(sync_pb::password); 219 const sync_pb::EntitySpecifics& specifics = local 220 entry->Get(syncable::SPECIFICS); 221 if (specifics.HasExtension(sync_pb::password)) { 224 specifics, GetTransaction()->GetCryptographer())); 232 if (!specifics.has_encrypted()) 236 specifics.encrypted() 251 const sync_pb::EntitySpecifics& specifics = entry->Get(SPECIFICS); local 750 sync_pb::EntitySpecifics specifics; local 1103 const sync_pb::EntitySpecifics& specifics = GetEntry()->Get(SPECIFICS); local [all...] |
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 97 entry_types = GetEntryTypesFromSpecifics(entry.specifics) 108 def GetEntryTypesFromSpecifics(specifics): 111 If the specifics have more than one recognized extension (as commonly 117 specifics: A EntitySpecifics protobuf message whose extensions to 121 recognized extension of the specifics message. 125 if specifics.HasExtension(extension)] 143 specifics = sync_pb2.EntitySpecifics() 146 specifics.Extensions[extension_handle].SetInParent() 147 return specifics 440 entry.specifics.CopyFrom(GetDefaultEntitySpecifics(spec.sync_type) [all...] |
/external/chromium_org/sync/engine/ |
syncer_util.cc | 68 using syncable::SPECIFICS; 198 const sync_pb::EntitySpecifics& specifics = entry->GetServerSpecifics(); local 208 if (specifics.has_encrypted() && 209 !cryptographer->CanDecrypt(specifics.encrypted())) { 215 } else if (specifics.has_password() && 218 const sync_pb::PasswordSpecifics& password = specifics.password(); 263 if (specifics.has_encrypted()) { 401 target->PutServerSpecifics(update.specifics()); 446 // Clear the previous server specifics now that we're applying successfully.
|
sync_directory_update_handler_unittest.cc | 696 sync_pb::EntitySpecifics specifics; local 701 specifics.mutable_password()->mutable_encrypted()); 703 entry_factory()->CreateUnappliedNewItem("item", specifics, false); 774 sync_pb::EntitySpecifics specifics; local 785 specifics.mutable_password()->mutable_encrypted()); 788 entry_factory()->CreateUnappliedNewItem("item1", specifics, false); 796 sync_pb::EntitySpecifics specifics; local 801 specifics.mutable_password()->mutable_encrypted()); 803 entry_factory()->CreateUnappliedNewItem("item2", specifics, false);
|
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service_session_unittest.cc | 280 // Check that we can get the correct session specifics back from the node. 285 const sync_pb::SessionSpecifics& specifics(node.GetSessionSpecifics()); 286 ASSERT_EQ(machine_tag, specifics.session_tag()); 287 ASSERT_TRUE(specifics.has_header()); 288 const sync_pb::SessionHeader& header_s = specifics.header(); 367 // Fill an instance of session specifics with a foreign session's data. 506 // Fill an instance of session specifics with a foreign session's data. 537 // Fill an instance of session specifics with a foreign session's data. 741 // Fill an instance of session specifics with a foreign session's data. 986 sync_pb::SessionSpecifics specifics; local 1017 sync_pb::SessionSpecifics specifics; local 1049 sync_pb::SessionSpecifics specifics; local 1151 sync_pb::SessionSpecifics specifics; local 1275 sync_pb::SessionSpecifics specifics = tab_node.GetSessionSpecifics(); local [all...] |
/external/chromium_org/sync/tools/testserver/ |
chromiumsync_test.py | 131 specifics = chromiumsync.GetDefaultEntitySpecifics(sync_type) 138 entry.specifics.CopyFrom(specifics) 186 specifics = chromiumsync.GetDefaultEntitySpecifics(sync_type) 207 proto.specifics.CopyFrom(specifics) 610 proto.specifics.managed_user.acknowledged = False 611 self.assertTrue(proto.specifics.HasField('managed_user')) 616 self.assertTrue(not change.specifics.managed_user.acknowledged) 624 self.assertTrue(change.specifics.managed_user.acknowledged [all...] |
/external/chromium/chrome/browser/sync/protocol/ |
proto_value_conversions.cc | 86 if (specifics.HasExtension(ns::field)) { \ 87 value->Set(#field, fn(specifics.GetExtension(ns::field))); \ 296 const sync_pb::EntitySpecifics& specifics) {
|
/external/chromium_org/sync/test/engine/ |
mock_connection_manager.h | 108 // Versions of the AddUpdate function that accept specifics. 117 const sync_pb::EntitySpecifics& specifics); 126 const sync_pb::EntitySpecifics& specifics, 133 const sync_pb::EntitySpecifics& specifics); 147 // additional information beyond the deletion, and no specifics.
|
/external/chromium/chrome/browser/sync/ |
profile_sync_service_session_unittest.cc | 184 // Check that we can get the correct session specifics back from the node. 189 const sync_pb::SessionSpecifics& specifics(node.GetSessionSpecifics()); 190 ASSERT_EQ(machine_tag, specifics.session_tag()); 191 ASSERT_TRUE(specifics.has_header()); 192 const sync_pb::SessionHeader& header_s = specifics.header(); 260 // Fill an instance of session specifics with a foreign session's data. 284 // Update the server with the session specifics.
|
/external/chromium/chrome/browser/sync/syncable/ |
directory_backing_store_unittest.cc | 327 "server_bookmark_favicon blob, specifics blob, " 457 "specifics blob,server_specifics blob);" 1002 sync_pb::EntitySpecifics specifics; local [all...] |
/external/chromium_org/chrome/browser/history/ |
typed_url_syncable_service.h | 108 sync_pb::TypedUrlSpecifics* specifics);
|
/external/chromium_org/chrome/browser/managed_mode/ |
managed_user_settings_service.cc | 152 ::sync_pb::EntitySpecifics specifics; local 153 specifics.mutable_managed_user_setting()->set_name(name); 154 specifics.mutable_managed_user_setting()->set_value(json_value); 155 return SyncData::CreateLocalData(name, name, specifics);
|
/external/chromium_org/chrome/browser/webdata/ |
autofill_profile_syncable_service_unittest.cc | 364 sync_pb::EntitySpecifics specifics; local 366 specifics.mutable_autofill_profile(); 379 profile.guid(), profile.guid(), specifics)); 494 sync_pb::AutofillProfileSpecifics specifics = local 496 EXPECT_EQ(kGuid1, specifics.guid()); 497 EXPECT_EQ(kHttpsOrigin, specifics.origin()); 498 EXPECT_THAT(specifics.name_first(), testing::ElementsAre("Jane")); 513 sync_pb::AutofillProfileSpecifics specifics = local 515 EXPECT_EQ(kGuid2, specifics.guid());
|
/external/chromium_org/sync/internal_api/public/ |
base_node.h | 235 // Returns the unencrypted specifics associated with |entry|. If |entry| was 241 // Copy |specifics| into |unencrypted_data_|. 242 void SetUnencryptedSpecifics(const sync_pb::EntitySpecifics& specifics);
|