HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 201 - 225 of 304) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 93 * Sanitize a given list of conversation participants by de-duping and stripping out self
111 // Remove self phone number from group conversation.
116 // Prescan to count the self numbers in the list
122 // If all are self numbers, maybe that's what the user wants, just leave
123 // the participants as is. Otherwise, do another scan to remove self numbers.
222 // Create the conversation with the default self participant which always maps to
224 final ParticipantData self = ParticipantData.getSelfParticipant( local
229 // Look up the "self" participantId (creating if necessary)
231 BugleDatabaseOperations.getOrCreateParticipantInTransaction(db, self);
591 // conversation self id. Therefore, notify UI through local broadcast receiver abou
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ComposeMessageView.java 210 // onFinishInflate() is called before self is loaded from db. We set the default text
244 // onFinishInflate() is called before self is loaded from db. We set the default text
518 // Refresh the length filters according to the selected self's MmsConfig.
611 // Fall back to default self-avatar in the base case.
612 final ParticipantData self = mConversationDataModel.getData().getDefaultSelfParticipant(); local
613 return self == null ? null : AvatarUriUtil.createAvatarUri(self);
665 // Update the send message button. Self icon uri might be null if self participant data
    [all...]
ConversationFragment.java 181 // ComposeMessageView to be the only source of truth (incl. the conversation self id). However,
1436 final ParticipantData self = mBinding.getData().getSelfParticipantById(selfParticipantId); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 829 IFile self = AdtUtils.getActiveFile(); local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 445 Thread* self = Thread::Current(); local
447 MutexLock mu(self, compiled_classes_lock_);
451 MutexLock mu(self, compiled_methods_lock_);
512 Thread* self, Handle<mirror::ClassLoader> class_loader, const DexFile& dex_file,
521 mirror::Class* klass = class_linker->FindClass(self, descriptor, class_loader);
523 CHECK(self->IsExceptionPending());
524 self->ClearException();
546 void CompilerDriver::CompileOne(Thread* self, ArtMethod* method, TimingLogger* timings) {
555 ScopedObjectAccessUnchecked soa(self);
564 self->TransitionFromRunnableToSuspended(kNative)
764 Thread* self = Thread::Current(); local
823 Thread* self = Thread::Current(); local
1614 Thread* self = Thread::Current(); local
1724 Thread* self = Thread::Current(); local
1987 Thread* self = soa.Self(); local
2142 Thread* self = Thread::Current(); local
2419 Thread* self = Thread::Current(); local
    [all...]
  /art/oatdump/
oatdump.cc 1487 Thread* self = Thread::Current(); local
2214 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/
jni_internal.cc 94 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
105 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
109 static mirror::Class* EnsureInitialized(Thread* self, mirror::Class* klass)
114 StackHandleScope<1> hs(self);
116 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
125 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(jni_class));
152 ArtMethod* method = soa.Self()->GetCurrentMethod(nullptr);
155 return soa.Decode<mirror::ClassLoader*>(soa.Self()->GetClassLoaderOverride());
168 class_loader = soa.Decode<mirror::ClassLoader*>(soa.Self()->GetClassLoaderOverride());
183 StackHandleScope<2> hs(soa.Self());
531 Thread* self = down_cast<JNIEnvExt*>(env)->self; local
543 Thread* self = down_cast<JNIEnvExt*>(env)->self; local
    [all...]
thread.cc 239 Thread* self = reinterpret_cast<Thread*>(arg); local
242 LOG(ERROR) << "Thread attaching to non-existent runtime: " << *self;
246 // TODO: pass self to MutexLock - requires self to equal Thread::Current(), which is only true
247 // after self->Init().
256 CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env));
257 self->tlsPtr_.tmp_jni_env = nullptr;
261 ScopedObjectAccess soa(self);
262 self->InitStringEntryPoints()
390 Thread* self = static_cast<JNIEnvExt*>(env)->self; local
520 Thread* self; local
599 Thread* self = this; local
894 Thread* self = Thread::Current(); local
1215 Thread* self = reinterpret_cast<Thread*>(arg); local
1355 Thread* self = this; local
1602 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 123 return VerifyMethod(hs.Self(), method->GetDexMethodIndex(), method->GetDexFile(), h_dex_cache,
129 MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
160 StackHandleScope<2> hs(self);
164 self, &dex_file, dex_cache, class_loader, class_def, allow_soft_failures, error);
167 MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
198 self->AllowThreadSuspension();
211 DCHECK(self->IsExceptionPending());
213 self->ClearException();
217 StackHandleScope<1> hs(self);
218 MethodVerifier::FailureKind result = VerifyMethod(self,
528 Thread* self = Thread::Current(); local
4127 Thread* self = Thread::Current(); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 280 // We generally assume that 'self' lives throughout a method call.
298 // safe because the receiver value is always loaded from 'self',
368 // self. This represents the call taking direct ownership of that
370 // arguments because they might also reference self, but we don't
371 // have to worry about any of them modifying self because that would
378 // Do an unsafe store of null into self.
381 assert(selfAddr && "no self entry for a delegate init call?");
407 // the call back into self. This takes ownership of the value.
437 llvm::Value *self = CGF.LoadObjCSelf(); variable
445 self,
878 llvm::Value *self = Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy); local
1166 llvm::Value *self = local
1314 llvm::Value *self = CGF.LoadObjCSelf(); local
    [all...]
CGObjCGNU.cpp 658 llvm::Value *self; variable
661 self = CGF.LoadObjCSelf();
663 self = llvm::ConstantPointerNull::get(IdTy);
    [all...]
  /external/skia/src/ports/
SkFontHost_mac.cpp 97 CFRef self = fCFRef; local
99 return self;
479 CTFontRef self = (CTFontRef)context; local
482 return CFEqual(self, other);
    [all...]
  /external/valgrind/coregrind/m_demangle/
cp-demangle.c 5393 struct d_component_stack self; local
    [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.registry_3.5.301.v20130717-1549.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.registry_3.5.300.v20130327-1442.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/boot/
plexus-classworlds-2.5.1.jar 
  /art/runtime/gc/
heap.cc 512 PrintFileToLog("/proc/self/maps", LogSeverity::ERROR);
617 Thread* self = Thread::Current(); local
618 ScopedThreadStateChange tsc(self, kSuspended);
627 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
786 Thread* self = Thread::Current(); local
817 Thread* self = Thread::Current(); local
825 Thread* self = Thread::Current(); local
1665 Thread* self = Thread::Current(); local
1809 Thread* self = Thread::Current(); local
1883 Thread* const self = Thread::Current(); local
2194 Thread* self = Thread::Current(); local
2372 Thread* self = Thread::Current(); local
2812 Thread* self = Thread::Current(); local
2941 Thread* self = Thread::Current(); local
3053 Thread* const self = Thread::Current(); local
3101 Thread* const self = Thread::Current(); local
3133 Thread* const self = Thread::Current(); local
3473 Thread* self = Thread::Current(); local
3590 Thread* self = ThreadForEnv(env); local
    [all...]
  /external/skia/tests/
PathTest.cpp 3654 SkPath& self = p; local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 621 final Thread self = Thread.currentThread(); local
622 final UncaughtExceptionHandler original = self.getUncaughtExceptionHandler();
626 self.setUncaughtExceptionHandler(test);
652 self.setUncaughtExceptionHandler(original);
    [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 

Completed in 949 milliseconds

1 2 3 4 5 6 7 891011>>