HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 76 - 100 of 332) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/base/memory/
ref_counted_memory.cc 68 RefCountedString* self = new RefCountedString; local
69 to_destroy->swap(self->data_);
70 return self;
  /external/chromium_org/base/win/
message_window.cc 123 MessageWindow* self = reinterpret_cast<MessageWindow*>( local
127 // Set up the self before handling WM_CREATE.
130 self = reinterpret_cast<MessageWindow*>(cs->lpCreateParams);
134 self->window_ = hwnd;
136 // Store pointer to the self to the window's user data.
139 hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(self));
144 // Clear the pointer to stop calling the self once WM_DESTROY is
155 if (self) {
157 if (self->message_callback_.Run(message, wparam, lparam, &message_result))
  /external/chromium_org/mojo/public/cpp/environment/tests/
async_waiter_unittest.cc 30 TestAsyncWaitCallback* self = static_cast<TestAsyncWaitCallback*>(closure); local
31 self->result_count_++;
32 self->last_result_ = result;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/temp_storage_shared_worker/
TempStorageSharedWorker.js 41 self.onconnect = function(event)
101 self.webkitRequestFileSystem(self.TEMPORARY, 10, didGetFS, didFail);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.cpp 92 RefPtrWillBeRawPtr<DatabaseContext> self = adoptRefWillBeNoop(new DatabaseContext(context)); local
93 DatabaseManager::manager().registerDatabaseContext(self.get());
94 return self.release();
  /external/chromium_org/third_party/sqlite/src/src/
mutex_unix.c 214 ** is atomic - that it cannot be deceived into thinking self
216 ** that are not equal to self while the comparison is taking place.
223 pthread_t self = pthread_self(); local
224 if( p->nRef>0 && pthread_equal(p->owner, self) ){
229 p->owner = self;
257 ** is atomic - that it cannot be deceived into thinking self
259 ** that are not equal to self while the comparison is taking place.
266 pthread_t self = pthread_self(); local
267 if( p->nRef>0 && pthread_equal(p->owner, self) ){
272 p->owner = self;
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
voice_engine_impl.cc 44 VoiceEngine* self = pfn(); local
48 return (self);
53 VoiceEngineImpl* self = new VoiceEngineImpl(config, owns_config); local
54 if (self != NULL)
56 self->AddRef(); // First reference. Released in VoiceEngine::Delete.
59 return self;
72 "VoiceEngineImpl self deleting (voiceEngine=0x%p)",
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 117 SortedMap<Object, V> self = (SortedMap<Object, V>) this; local
118 Object ceilingKey = self.tailMap(key).firstKey();
141 SortedMap<Object, V> self = (SortedMap<Object, V>) this; local
143 self.tailMap(key).entrySet().iterator();
ForwardingSortedSet.java 115 SortedSet<Object> self = (SortedSet<Object>) this; local
116 Object ceiling = self.tailSet(object).first();
138 SortedSet<Object> self = (SortedSet<Object>) this; local
139 Iterator<Object> iterator = self.tailSet(object).iterator();
  /external/ltrace/
lens_enum.c 52 struct enum_lens *self = (void *)lens; local
54 VECT_DESTROY(&self->entries, struct enum_entry,
124 struct enum_lens *self = (void *)lens; local
126 const char *name = enum_get(self, value, arguments);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TabSpecTest.java 35 TabHost.TabSpec self = spec.setIndicator(view); local
36 assertThat(self, is(spec));
44 TabHost.TabSpec self = spec.setContent(intent); local
45 assertThat(self, is(spec));
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 94 BinaryDelayEstimator* self = NULL; local
111 self = malloc(sizeof(BinaryDelayEstimator));
112 *handle = self;
113 if (self == NULL) {
117 self->mean_bit_counts = NULL;
118 self->bit_counts = NULL;
119 self->binary_far_history = NULL;
120 self->far_bit_counts = NULL;
122 self->history_size = history_size;
123 self->near_history_size = lookahead + 1
    [all...]
  /frameworks/native/include/ui/
ANativeObjectBase.h 75 static inline TYPE* getSelf(NATIVE_TYPE* self) {
76 return static_cast<TYPE*>(self);
78 static inline TYPE const* getSelf(NATIVE_TYPE const* self) {
79 return static_cast<TYPE const *>(self);
88 ANativeObjectBase* self = getSelf(base); local
89 self->incStrong(self);
92 ANativeObjectBase* self = getSelf(base); local
93 self->decStrong(self);
    [all...]
  /external/clang/utils/
clang-completion-mode.el 175 (defun clang-complete-self-insert (arg)
177 (self-insert-command arg)
192 (defun clang-filter-self-insert (arg)
194 (self-insert-command arg)
227 (define-key clang-completion-mode-map char 'clang-complete-self-insert))
236 (define-key clang-completion-mode-map char 'clang-filter-self-insert))
  /art/runtime/arch/x86/
fault_handler_x86.cc 236 Thread* self = Thread::Current(); local
237 CHECK(self != nullptr); // This will cause a SIGABRT if self is nullptr.
240 uc->CTX_JMP_BUF = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
  /art/runtime/gc/collector/
garbage_collector.cc 76 Thread* self = Thread::Current(); local
90 if (Locks::mutator_lock_->IsExclusiveHeld(self)) {
  /art/runtime/gc/space/
bump_pointer_space.cc 101 Thread* self = Thread::Current(); local
102 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
103 MutexLock mu2(self, *Locks::thread_list_lock_);
120 Thread* self = Thread::Current(); local
121 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
122 MutexLock mu2(self, *Locks::thread_list_lock_);
211 Thread* self = Thread::Current(); local
212 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
213 MutexLock mu2(self, *Locks::thread_list_lock_);
229 Thread* self = Thread::Current() local
    [all...]
large_object_space_test.cc 103 void Run(Thread* self) {
106 mirror::Object* ptr = los_->Alloc(self, size_, &alloc_size, nullptr);
110 los_->Free(self, ptr);
134 Thread* self = Thread::Current(); local
137 thread_pool.AddTask(self, new AllocRaceTask(i, kNumIterations, 16 * KB, los));
140 thread_pool.StartWorkers(self);
142 thread_pool.Wait(self, true, false);
malloc_space.cc 233 Thread* self = context->self; local
234 Locks::heap_bitmap_lock_->AssertExclusiveHeld(self);
247 context->freed.bytes += space->FreeList(self, num_ptrs, ptrs);
  /art/runtime/
handle_scope.h 160 explicit StackHandleScope(Thread* self); variable
jni_internal.h 93 jweak AddWeakGlobalReference(Thread* self, mirror::Object* obj)
95 void DeleteWeakGlobalRef(Thread* self, jweak obj)
99 mirror::Object* DecodeWeakGlobal(Thread* self, IndirectRef ref)
139 JNIEnvExt(Thread* self, JavaVMExt* vm);
161 return Offset(OFFSETOF_MEMBER(JNIEnvExt, self));
167 Thread* const self; member in struct:art::JNIEnvExt
monitor_test.cc 59 static void FillHeap(Thread* self, ClassLinker* class_linker,
65 hsp->reset(new StackHandleScope<kMaxHandles>(self));
67 Handle<mirror::Class> c((*hsp)->NewHandle(class_linker->FindSystemClass(self,
70 Handle<mirror::Class> ca((*hsp)->NewHandle(class_linker->FindSystemClass(self,
77 mirror::ObjectArray<mirror::Object>::Alloc(self, ca.Get(), length / 4)));
78 if (self->IsExceptionPending() || h.Get() == nullptr) {
79 self->ClearException();
94 while (!self->IsExceptionPending()) {
95 Handle<mirror::Object> h = (*hsp)->NewHandle<mirror::Object>(c->AllocObject(self));
96 if (!self->IsExceptionPending() && h.Get() != nullptr)
312 Thread* self = Thread::Current(); local
327 Thread* self = Thread::Current(); local
344 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/mirror/
object.cc 68 Object* Object::CopyObject(Thread* self, mirror::Object* dest, mirror::Object* src,
95 heap->AddFinalizerReference(self, &dest);
103 explicit CopyObjectVisitor(Thread* self, Handle<Object>* orig, size_t num_bytes)
104 : self_(self), orig_(orig), num_bytes_(num_bytes) {
120 Object* Object::Clone(Thread* self) {
126 StackHandleScope<1> hs(self);
129 CopyObjectVisitor visitor(self, &this_object, num_bytes);
131 copy = heap->AllocObject<true>(self, GetClass(), num_bytes, visitor);
133 copy = heap->AllocNonMovableObject<true>(self, GetClass(), num_bytes, visitor);
167 Thread* self = Thread::Current() local
    [all...]
object_array-inl.h 35 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class,
37 Array* array = Array::Alloc<true>(self, object_array_class, length,
47 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class,
49 return Alloc(self, object_array_class, length,
231 Thread* self = Thread::Current(); local
232 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
234 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
245 inline ObjectArray<T>* ObjectArray<T>::CopyOf(Thread* self, int32_t new_length) {
248 StackHandleScope<1> hs(self);
253 ObjectArray<T>* new_array = Alloc(self, GetClass(), new_length, allocator_type)
    [all...]
  /art/runtime/native/
java_lang_System.cc 39 Thread* self = Thread::Current(); local
40 ThrowLocation throw_location = self->GetCurrentLocationForThrow();
41 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
79 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
80 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
133 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
134 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",

Completed in 711 milliseconds

1 2 34 5 6 7 8 91011>>