HomeSort by relevance Sort by last modified time
    Searched refs:object_id (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_object_entry.cc 12 MTPDeviceObjectEntry::MTPDeviceObjectEntry(const base::string16& object_id,
17 : object_id(object_id),
mtp_device_object_entry.h 19 MTPDeviceObjectEntry(const base::string16& object_id,
27 base::string16 object_id; member in struct:MTPDeviceObjectEntry
mtp_device_object_enumerator_unittest.cc 24 base::string16 object_id; member in struct:__anon8901::MTPDeviceObjectEntryData
68 kTestCases[i].object_id,
79 EXPECT_EQ(kTestCases[i].object_id, enumerator.GetObjectId());
mtp_device_operations_util.cc 162 // Gets the details of the object specified by the |object_id| given the media
167 const base::string16 object_id,
174 DCHECK(!object_id.empty());
206 hr = properties->GetValues(object_id.c_str(),
235 // Creates an MTP device object entry for the given |device| and |object_id|.
238 const base::string16& object_id) {
241 DCHECK(!object_id.empty());
247 if (GetObjectDetails(device, object_id, &name, &is_directory, &size,
249 entry = MTPDeviceObjectEntry(object_id, name, is_directory, size,
285 if (entry.object_id.empty()
    [all...]
mtp_device_operations_util.h 31 // Gets the details of the object specified by |object_id| from the given MTP
37 const base::string16& object_id,
  /external/chromium_org/chrome/browser/sync/glue/
invalidation_helper.h 15 invalidation::ObjectId* object_id);
invalidation_helper.cc 12 invalidation::ObjectId* object_id) {
17 object_id->Init(ipc::invalidation::ObjectSource::CHROME_SYNC,
  /external/chromium_org/components/invalidation/
invalidation_util.cc 27 DCHECK(a.object_id() == b.object_id())
28 << "a: " << ObjectIdToString(a.object_id()) << ", "
29 << "b: " << ObjectIdToString(a.object_id());
44 const invalidation::ObjectId& object_id) {
46 value->SetInteger("source", object_id.source());
47 value->SetString("name", object_id.name());
63 std::string ObjectIdToString(const invalidation::ObjectId& object_id) {
64 scoped_ptr<base::DictionaryValue> value(ObjectIdToValue(object_id));
invalidation_util.h 47 const invalidation::ObjectId& object_id);
53 const invalidation::ObjectId& object_id);
sync_invalidation_listener.cc 128 const invalidation::ObjectId& id = invalidation.object_id();
148 const invalidation::ObjectId& object_id,
156 Invalidation unknown_version = Invalidation::InitUnknownVersion(object_id);
227 const invalidation::ObjectId& object_id,
232 << ObjectIdToString(object_id) << " " << new_state;
236 registration_manager_->MarkRegistrationLost(object_id);
242 const invalidation::ObjectId& object_id,
248 << ObjectIdToString(object_id)
255 registration_manager_->MarkRegistrationLost(object_id);
262 // Either way, block future registration attempts for |object_id|. However
    [all...]
  /external/chromium_org/sync/tools/
invalidation_helper.h 15 invalidation::ObjectId* object_id);
invalidation_helper.cc 12 invalidation::ObjectId* object_id) {
17 object_id->Init(ipc::invalidation::ObjectSource::CHROME_SYNC,
  /external/chromium_org/content/renderer/java/
gin_java_bridge_dispatcher.cc 85 ObjectID object_id) {
88 named_objects_.insert(std::make_pair(name, object_id));
100 ObjectID object_id,
103 routing_id(), object_id, methods));
106 bool GinJavaBridgeDispatcher::HasJavaMethod(ObjectID object_id,
110 routing_id(), object_id, method_name, &result));
115 ObjectID object_id,
122 object_id,
135 GinJavaBridgeObject* GinJavaBridgeDispatcher::GetObject(ObjectID object_id) {
136 GinJavaBridgeObject* result = objects_.Lookup(object_id);
    [all...]
gin_java_bridge_dispatcher.h 50 void GetJavaMethods(ObjectID object_id, std::set<std::string>* methods);
51 bool HasJavaMethod(ObjectID object_id, const std::string& method_name);
52 scoped_ptr<base::Value> InvokeJavaMethod(ObjectID object_id,
56 GinJavaBridgeObject* GetObject(ObjectID object_id);
57 void OnGinJavaBridgeObjectDeleted(ObjectID object_id);
61 ObjectID object_id);
gin_java_bridge_object.h 31 GinJavaBridgeDispatcher::ObjectID object_id() const { return object_id_; } function in class:content::GinJavaBridgeObject
47 GinJavaBridgeDispatcher::ObjectID object_id);
50 GinJavaBridgeDispatcher::ObjectID object_id);
55 GinJavaBridgeDispatcher::ObjectID object_id);
gin_java_bridge_object.cc 31 GinJavaBridgeDispatcher::ObjectID object_id) {
39 new GinJavaBridgeObject(isolate, dispatcher, object_id);
57 GinJavaBridgeDispatcher::ObjectID object_id) {
59 blink::mainThreadIsolate(), dispatcher, object_id);
65 GinJavaBridgeDispatcher::ObjectID object_id)
68 object_id_(object_id),
154 GinJavaBridgeDispatcher::ObjectID object_id; local
155 if (gin_value->GetAsObjectID(&object_id)) {
156 result = dispatcher_->GetObject(object_id);
  /external/chromium_org/tools/telemetry/telemetry/core/heap/
live_heap_object.py 9 object_id: int, identifier for the object.
21 def __init__(self, object_id, type_string, class_name):
25 object_id: int, identifier for the LiveHeapObject.
29 self.object_id = object_id
54 prefix = 'LiveHeapObject(' + str(self.object_id) + ' '
  /external/chromium_org/content/browser/android/java/
gin_java_bridge_dispatcher_host.cc 142 GinJavaBoundObject::ObjectID object_id = g_next_object_id.GetNext() + 1; local
145 objects_[object_id] = new_object;
151 DCHECK_EQ(object_id, added_object_id);
160 return object_id;
165 GinJavaBoundObject::ObjectID* object_id) {
173 *object_id = pair.first;
181 GinJavaBoundObject::ObjectID object_id) {
182 scoped_refptr<GinJavaBoundObject> object = FindObject(object_id);
224 GinJavaBoundObject::ObjectID object_id; local
226 bool existing_object = FindObjectId(object, &object_id);
315 GinJavaBoundObject::ObjectID object_id = 0; local
    [all...]
gin_java_bridge_dispatcher_host.h 65 GinJavaBoundObject::ObjectID object_id) OVERRIDE;
85 GinJavaBoundObject::ObjectID object_id);
87 GinJavaBoundObject::ObjectID* object_id);
94 void OnGetMethods(GinJavaBoundObject::ObjectID object_id,
96 void OnHasMethod(GinJavaBoundObject::ObjectID object_id,
99 void OnInvokeMethod(GinJavaBoundObject::ObjectID object_id,
104 void OnObjectWrapperDeleted(GinJavaBoundObject::ObjectID object_id);
  /external/chromium_org/ppapi/proxy/
ppb_var_deprecated_proxy.h 38 void OnMsgAddRefObject(int64 object_id);
39 void OnMsgReleaseObject(int64 object_id);
91 void DoReleaseObject(int64 object_id);
  /external/chromium_org/content/common/android/
gin_java_bridge_value_unittest.cc 65 scoped_ptr<base::BinaryValue> object_id(
67 ASSERT_TRUE(object_id.get());
68 EXPECT_TRUE(GinJavaBridgeValue::ContainsGinJavaBridgeValue(object_id.get()));
70 GinJavaBridgeValue::FromValue(object_id.get()));
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 27 const std::string& object_id) {
105 object_id,
150 const std::string& object_id,
162 object_id_(object_id),
171 std::string object_id; local
172 if (!dictionary.GetString("id", &object_id)) {
176 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
182 std::string object_id; local
183 dictionary.GetString("id", &object_id);
184 return scoped_ptr<Address>(CreateAddressInternal(dictionary, object_id));
    [all...]
wallet_address.h 55 const std::string& object_id,
117 const std::string& object_id() const { return object_id_; } function in class:autofill::wallet::Address
150 void set_object_id(const std::string& object_id) {
151 object_id_ = object_id;
163 // formatting). Therefore, |object_id| and |language_code| are ignored.
166 // Tests if this address exact matches |other| including |object_id| and
  /external/chromium_org/win8/metro_driver/ime/
ime_popup_monitor.cc 22 LONG object_id,
  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl_unittest.cc 170 std::string object_id; local
172 &client, 0, std::string(), &got_object, &object_id).IsOk());
174 ASSERT_TRUE(object_id.empty());
184 std::string object_id; local
186 &client, 0, std::string(), &got_object, &object_id).IsOk());
188 ASSERT_STREQ("id", object_id.c_str());

Completed in 1053 milliseconds

1 2 3