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

  /external/chromium_org/chrome/browser/media_galleries/win/
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:__anon8825::MTPDeviceObjectEntryData
68 kTestCases[i].object_id,
79 EXPECT_EQ(kTestCases[i].object_id, enumerator.GetObjectId());
  /external/chromium_org/sync/notifier/
dropped_invalidation_tracker.cc 19 const invalidation::ObjectId& DroppedInvalidationTracker::object_id() const { function in class:syncer::DroppedInvalidationTracker
unacked_invalidation_set.cc 38 const invalidation::ObjectId& UnackedInvalidationSet::object_id() const { function in class:syncer::UnackedInvalidationSet
203 invalidation::ObjectId id = invalidations_.begin()->object_id();
  /external/chromium_org/content/renderer/java/
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/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());
  /external/chromium_org/components/autofill/content/browser/wallet/
instrument.h 69 const std::string& object_id() const { return object_id_; } function in class:autofill::wallet::Instrument
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
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_items.cc 111 const std::string& object_id)
119 object_id_(object_id) {
152 std::string object_id; local
153 if (!dictionary.GetString("object_id", &object_id)) {
189 object_id));
227 const std::string& object_id) const {
228 if (object_id.empty())
232 if (instruments_[i]->object_id() == object_id)
    [all...]
wallet_items.h 112 const std::string& object_id() const { return object_id_; } function in class:autofill::wallet::WalletItems::MaskedInstrument
135 const std::string& object_id);
234 const std::string& object_id) const;
  /external/chromium_org/sync/internal_api/public/base/
invalidation.cc 92 invalidation::ObjectId Invalidation::object_id() const { function in class:syncer::Invalidation
132 DCHECK(tracker->object_id() == object_id());
  /external/chromium_org/content/browser/android/java/
gin_java_bridge_dispatcher_host.cc 94 GinJavaBoundObject::ObjectID object_id; local
98 object_id = objects_.Add(new scoped_refptr<GinJavaBoundObject>(
101 object_id = objects_.Add(new scoped_refptr<GinJavaBoundObject>(
109 DCHECK_EQ(object_id, added_object_id);
117 return object_id;
122 GinJavaBoundObject::ObjectID* object_id) {
129 *object_id = it.GetCurrentKey();
137 GinJavaBoundObject::ObjectID object_id) {
138 scoped_refptr<GinJavaBoundObject>* result = objects_.Lookup(object_id);
176 GinJavaBoundObject::ObjectID object_id; local
    [all...]
gin_java_script_to_java_types_coercion.cc 569 GinJavaBoundObject::ObjectID object_id; local
570 if (gin_value->GetAsObjectID(&object_id)) {
571 ObjectRefs::const_iterator iter = object_refs.find(object_id);
  /external/chromium_org/components/storage_monitor/
portable_device_watcher_win.cc 172 // |object_id|.
173 REFPROPERTYKEY GetUniqueIdPropertyKey(const base::string16& object_id) {
174 return (object_id == WPD_DEVICE_OBJECT_ID) ?
179 // property key of the object specified by the |object_id|.
181 const base::string16& object_id,
189 REFPROPERTYKEY key = GetUniqueIdPropertyKey(object_id);
208 // Constructs a unique identifier for the object specified by the |object_id|.
211 const base::string16& object_id,
230 if (!PopulatePropertyKeyCollection(object_id, &properties_to_read))
234 if (FAILED(properties->GetValues(object_id.c_str()
287 base::win::ScopedPropVariant object_id; local
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 65 static JdwpError WriteTaggedObject(ExpandBuf* reply, ObjectId object_id)
68 JdwpError rc = Dbg::GetObjectTag(object_id, tag);
71 expandBufAddObjectId(reply, object_id);
91 * If "is_constructor" is set, this returns "object_id" rather than the
95 ObjectId thread_id, ObjectId object_id,
98 CHECK(!is_constructor || object_id != 0);
102 VLOG(jdwp) << StringPrintf(" --> thread_id=%#" PRIx64 " object_id=%#" PRIx64,
103 thread_id, object_id);
127 JdwpError err = Dbg::InvokeMethod(thread_id, object_id, class_id, method_id, arg_count, argValues.get(), argTypes.get(), options, &resultTag, &resultValue, &exceptObjId);
137 resultValue = (exceptObjId == 0) ? object_id : 0
352 ObjectId object_id = request.ReadObjectId(); local
710 ObjectId object_id; local
729 ObjectId object_id; local
807 ObjectId object_id = request.ReadObjectId(); local
816 ObjectId object_id = request.ReadObjectId(); local
836 ObjectId object_id = request.ReadObjectId(); local
858 ObjectId object_id = request.ReadObjectId(); local
875 ObjectId object_id = request.ReadObjectId(); local
885 ObjectId object_id = request.ReadObjectId(); local
891 ObjectId object_id = request.ReadObjectId(); local
897 ObjectId object_id = request.ReadObjectId(); local
906 ObjectId object_id = request.ReadObjectId(); local
1440 ObjectId object_id; local
    [all...]
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 898 SnapshotObjectId object_id = heap_object_map_->FindOrAddEntry( local
906 return snapshot_->AddEntry(type, name, object_id, size, trace_node_id);
    [all...]

Completed in 172 milliseconds