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

1 2 3 4 5

  /external/libbrillo/brillo/glib/
object.h 351 : object_(0) {
355 : object_(x) {
363 return iterator(object_ ? object_->pdata : nullptr);
369 return const_iterator(object_ ? object_->pdata : nullptr);
378 if (!object_)
379 object_ = ::g_ptr_array_sized_new(1);
380 ::g_ptr_array_add(object_, ::gpointer(x));
389 return object_ ? object_->len : 0
417 ::GPtrArray* object_; member in class:brillo::glib::ScopedPtrArray
502 ::GHashTable* object_; member in class:brillo::glib::ScopedHashTable
    [all...]
dbus.h 40 BusConnection(const BusConnection& x) : object_(x.object_) {
41 if (object_)
42 ::dbus_g_connection_ref(object_);
46 if (object_)
47 ::dbus_g_connection_unref(object_);
56 DCHECK(object_) << "referencing an empty connection";
57 return object_;
60 operator bool() const { return object_; }
62 bool HasConnection() const { return object_; }
74 value_type object_; member in class:brillo::dbus::BusConnection
152 value_type object_; member in class:brillo::dbus::Proxy
198 void* object_; member in class:brillo::dbus::MonitorConnection
220 void* object_; member in class:brillo::dbus::MonitorConnection
242 void* object_; member in class:brillo::dbus::MonitorConnection
269 void* object_; member in class:brillo::dbus::MonitorConnection
    [all...]
dbus.cc 127 : object_(nullptr) {
137 : object_(GetGProxy(
146 : object_(GetGProxy(connection, name, path, interface, false)) {
153 : object_(GetGPeerProxy(connection, path, interface)) {
157 : object_(x.object_) {
158 if (object_)
159 ::g_object_ref(object_);
163 if (object_)
164 ::g_object_unref(object_);
    [all...]
  /external/v8/src/
prototype.h 36 object_(NULL),
49 object_(receiver),
59 object_(receiver_map->GetPrototypeChainRootMap(isolate_)->prototype()),
61 is_at_end_(object_->IsNull(isolate_)),
64 DCHECK(object_->IsJSReceiver());
65 Map* map = JSReceiver::cast(object_)->map();
73 object_(NULL),
102 return T::cast(object_);
108 DCHECK(iterator.object_ == NULL);
113 if (handle_.is_null() && object_->IsJSProxy())
180 Object* object_; member in class:v8::internal::PrototypeIterator
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.h 190 object_(object),
194 scratch1_ = GetRegThatIsNotEcxOr(object_, address_, scratch0_);
196 scratch0_ = GetRegThatIsNotEcxOr(object_, address_, scratch1_);
199 object_ = GetRegThatIsNotEcxOr(address_, scratch0_, scratch1_);
202 address_ = GetRegThatIsNotEcxOr(object_, scratch0_, scratch1_);
204 DCHECK(!AreAliased(scratch0_, object_, address_, ecx));
208 DCHECK(!address_orig_.is(object_));
209 DCHECK(object_.is(object_orig_) || address_.is(address_orig_));
210 DCHECK(!AreAliased(object_, address_, scratch1_, scratch0_));
212 DCHECK(!AreAliased(object_, address_orig_, scratch1_, scratch0_))
276 Register object_; member in class:v8::internal::RecordWriteStub::RegisterAllocation
    [all...]
  /external/v8/src/x64/
code-stubs-x64.h 183 object_(object),
187 scratch1_ = GetRegThatIsNotRcxOr(object_, address_, scratch0_);
189 scratch0_ = GetRegThatIsNotRcxOr(object_, address_, scratch1_);
192 object_ = GetRegThatIsNotRcxOr(address_, scratch0_, scratch1_);
195 address_ = GetRegThatIsNotRcxOr(object_, scratch0_, scratch1_);
197 DCHECK(!AreAliased(scratch0_, object_, address_, rcx));
201 DCHECK(!address_orig_.is(object_));
202 DCHECK(object_.is(object_orig_) || address_.is(address_orig_));
203 DCHECK(!AreAliased(object_, address_, scratch1_, scratch0_));
205 DCHECK(!AreAliased(object_, address_orig_, scratch1_, scratch0_))
271 Register object_; member in class:v8::internal::RecordWriteStub::RegisterAllocation
    [all...]
  /external/v8/src/x87/
code-stubs-x87.h 187 object_(object),
191 scratch1_ = GetRegThatIsNotEcxOr(object_, address_, scratch0_);
193 scratch0_ = GetRegThatIsNotEcxOr(object_, address_, scratch1_);
196 object_ = GetRegThatIsNotEcxOr(address_, scratch0_, scratch1_);
199 address_ = GetRegThatIsNotEcxOr(object_, scratch0_, scratch1_);
201 DCHECK(!AreAliased(scratch0_, object_, address_, ecx));
205 DCHECK(!address_orig_.is(object_));
206 DCHECK(object_.is(object_orig_) || address_.is(address_orig_));
207 DCHECK(!AreAliased(object_, address_, scratch1_, scratch0_));
209 DCHECK(!AreAliased(object_, address_orig_, scratch1_, scratch0_))
273 Register object_; member in class:v8::internal::RecordWriteStub::RegisterAllocation
    [all...]
  /external/v8/src/snapshot/
serializer.cc 341 serializer_->code_address_map_->Lookup(object_->address());
343 CodeNameEvent(object_->address(), sink_->Position(), code_name));
351 if (object_->IsCode()) {
364 int fill = serializer_->PutAlignmentPrefix(object_);
377 serializer_->reference_map()->Add(object_, back_reference);
387 DCHECK(object_->IsExternalString());
388 DCHECK(object_->map() != isolate->heap()->native_source_string_map());
389 ExternalString* string = ExternalString::cast(object_);
396 bool internalized = object_->IsInternalizedString();
397 if (object_->IsExternalOneByteString())
472 HeapObject* object_; member in class:v8::internal::UnlinkWeakNextScope
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_walker.h 23 const CPDF_Object* object() const { return object_; }
32 const CPDF_Object* object_; member in class:CPDF_ObjectWalker::SubobjectIterator
  /external/python/cpython3/Lib/test/
test_baseexception.py 24 for object_ in builtins.__dict__.values():
26 if issubclass(object_, BaseException):
27 exc_set.add(object_.__name__)
120 def raise_fails(self, object_):
121 """Make sure that raising 'object_' triggers a TypeError."""
123 raise object_
126 self.fail("TypeError expected for raising %s" % type(object_))
128 def catch_fails(self, object_):
129 """Catching 'object_' should raise a TypeError."""
133 except object_
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 25 : object_(JNI_NULL),
30 : object_(java_obj.object_),
36 : object_(NULL),
39 object_ = env->NewGlobalRef(object_);
48 object_ = java_obj.object_;
69 else if (object_)
70 env->DeleteGlobalRef(object_);
    [all...]
  /art/runtime/
monitor_test.cc 45 Handle<mirror::String> object_; member in class:art::MonitorTest
70 monitor_test_->object_.Get()->MonitorEnter(self); // Lock the object. This should transition
71 LockWord lock_after = monitor_test_->object_.Get()->GetLockWord(false); // it to thinLocked.
76 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis.
82 monitor_test_->object_.Get()->IdentityHashCode();
83 LockWord lock_after2 = monitor_test_->object_.Get()->GetLockWord(false);
88 monitor_test_->object_.Get()->MonitorExit(self); // To appease analysis.
103 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true,
117 monitor_test_->object_.Get()->MonitorExit(self); // Release the object. Appeases analysis.
148 Monitor::Wait(self, monitor_test_->object_.Get(), millis_, 0, true
    [all...]
  /system/libvintf/test/
utils-fake.h 107 MockRuntimeInfoFactory(const std::shared_ptr<MockRuntimeInfo>& info) { object_ = info; }
108 std::shared_ptr<RuntimeInfo> make_shared() const override { return object_; }
109 std::shared_ptr<MockRuntimeInfo> getInfo() const { return object_; }
112 std::shared_ptr<MockRuntimeInfo> object_; member in class:android::vintf::details::MockRuntimeInfoFactory
  /system/nvram/messages/
message_codec.cpp 25 : object_(object),
74 if (!desc.encode_function(object_, writer)) {
85 : object_(object),
111 if (!desc->decode_function(object_, reader)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkDebugReportUtil.hpp 55 deUint64 object_,
62 , object (object_)
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBufferObjectUtil.cpp 34 Buffer::Buffer (const vk::DeviceInterface& vk, vk::VkDevice device, vk::Move<vk::VkBuffer> object_)
36 , m_object (object_)
  /external/python/cpython2/Lib/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep352.py 149 def raise_fails(self, object_):
150 """Make sure that raising 'object_' triggers a TypeError."""
152 raise object_
155 self.fail("TypeError expected for raising %s" % type(object_))
157 def catch_fails(self, object_):
158 """Catching 'object_' should raise a TypeError."""
162 except object_:
167 self.fail("TypeError expected when catching %s" % type(object_))
172 except (object_,):
178 "tuple" % type(object_))
    [all...]
  /system/nvram/messages/include/nvram/messages/
message_codec.h 92 const void* object_; member in class:nvram::proto::MessageEncoderBase
134 void* object_; member in class:nvram::proto::MessageDecoderBase
  /toolchain/binutils/binutils-2.27/gold/
ehframe.h 169 : object_(object),
179 : object_(NULL),
198 if (this->object_ != NULL)
199 this->object_->add_merge_mapping(output_data, this->u_.from_object.shndx,
207 { return this->object_ == NULL && this->u_.from_linker.post_map; }
223 Relobj* object_; member in class:gold::Fde
227 // object_ field is not NULL).
236 // object_ field is NULL).
273 : object_(object),
287 : object_(cie.object_)
340 Relobj* object_; member in class:gold::Cie
    [all...]
  /external/mesa3d/include/CL/
cl.hpp 1096 cl_type object_; member in class:cl::detail::Wrapper
    [all...]

Completed in 535 milliseconds

1 2 3 4 5