/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeWizard.java | 34 public ExtractIncludeWizard(ExtractIncludeRefactoring ref, LayoutEditorDelegate editor) { 35 super(ref, editor); 36 setDefaultPageTitle(ref.getName()); 41 ExtractIncludeRefactoring ref = (ExtractIncludeRefactoring) getRefactoring(); local 42 String initialName = ref.getInitialName(); 43 IFile sourceFile = ref.getSourceFile();
|
/art/runtime/base/ |
debug_stack.h | 66 explicit DebugStackIndirectTopRefImpl(DebugStackReferenceImpl<false>* ref ATTRIBUTE_UNUSED) {} 112 explicit DebugStackIndirectTopRefImpl(DebugStackReferenceImpl<kIsDebug>* ref) 113 : ref_(ref) {
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_entropymv.h | 30 static INLINE int use_mv_hp(const MV *ref) { 32 return abs(ref->row) < kMvRefThresh && abs(ref->col) < kMvRefThresh;
|
/external/llvm/lib/IR/ |
Use.cpp | 43 const UserRef *ref = reinterpret_cast<const UserRef *>(End); local 44 return ref->getInt() ? ref->getPointer()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
Use.cpp | 138 const UserRef *ref = reinterpret_cast<const UserRef*>(End); local 139 return ref->getInt() 140 ? ref->getPointer()
|
/frameworks/base/tools/aapt2/link/ |
ReferenceLinker_test.cpp | 56 Reference* ref = test::GetValue<Reference>(table.get(), "com.app.test:string/foo"); local 57 ASSERT_NE(nullptr, ref); 58 AAPT_ASSERT_TRUE(ref->id); 59 EXPECT_EQ(ResourceId(0x7f020001), ref->id.value()); 61 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/bar"); 62 ASSERT_NE(nullptr, ref); 63 AAPT_ASSERT_TRUE(ref->id); 64 EXPECT_EQ(ResourceId(0x7f020002), ref->id.value()); 66 ref = test::GetValue<Reference>(table.get(), "com.app.test:string/baz"); 67 ASSERT_NE(nullptr, ref); [all...] |
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
ProviderExecutor.java | 23 import java.lang.ref.WeakReference; 58 for (WeakReference<Preemptable> ref : mPreemptable) { 59 final Preemptable p = ref.get();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/ |
Activator.java | 59 ServiceReference ref = context.getServiceReference(clazz.getName()); local 60 return (ref != null) ? (T) context.getService(ref) : null;
|
/art/runtime/ |
compiler_callbacks.h | 43 virtual void ClassRejected(ClassReference ref) = 0;
|
/art/runtime/gc/ |
reference_processor.cc | 67 // weak ref access is disabled as the call includes a read barrier which may push a ref onto the 107 // presence of threads blocking for weak ref access. 139 // Weak ref access is enabled at Zygote compaction by SemiSpace (concurrent == false). 206 // Process the "referent" field in a java.lang.ref.Reference. If the referent has not yet been 209 ObjPtr<mirror::Reference> ref, 211 // klass can be the class of the old object if the visitor already updated the class of ref. 214 mirror::HeapReference<mirror::Object>* referent = ref->GetReferentReferenceAddr(); 232 soft_reference_queue_.AtomicEnqueueIfNotEnqueued(self, ref); 234 weak_reference_queue_.AtomicEnqueueIfNotEnqueued(self, ref); [all...] |
/art/test/154-gc-loop/src/ |
Main.java | 17 import java.lang.ref.WeakReference;
|
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/ |
Class.pm | 24 (my $class = ref $test) =~ s/^Test:://xms;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
NodeLocator.java | 22 package org.apache.xml.dtm.ref;
|
/external/clang/test/CodeGenCXX/ |
debug-info-static-member.cpp | 108 int ref() { function
|
/external/eigen/test/ |
commainitializer.cpp | 80 Matrix3d ref = Map<Matrix<double,3,3,RowMajor> >(data); local 84 VERIFY_IS_APPROX(m3, ref ); 92 VERIFY_IS_APPROX(m3, ref); 101 VERIFY_IS_APPROX(m3, ref);
|
product_trsolve.cpp | 13 (XB).setRandom(); ref = (XB); \ 15 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 16 (XB).setRandom(); ref = (XB); \ 18 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 22 (XB).setRandom(); ref = (XB); \ 24 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 25 (XB).setRandom(); ref = (XB); \ 27 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 41 Matrix<Scalar,Dynamic,Dynamic,colmajor> ref(size,cols);
|
/external/guava/guava/src/com/google/common/base/internal/ |
Finalizer.java | 19 import java.lang.ref.PhantomReference; 20 import java.lang.ref.Reference; 21 import java.lang.ref.ReferenceQueue; 22 import java.lang.ref.WeakReference;
|
/external/parameter-framework/upstream/remote-processor/ |
BackgroundRemoteProcessorServer.cpp | 46 _server.get(), std::ref(*mCommandHandler));
|
/external/skia/tools/gpu/gl/debug/ |
GrFakeRefObj.h | 16 // reference counting (i.e., we don't free the objects when their ref count 35 void ref() { function in class:GrFakeRefObj 66 int fRef; // ref count
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/ |
BasicMarker.java | 124 Marker ref = (Marker) referenceList.get(i); local 125 if (ref.contains(other)) { 147 Marker ref = (Marker) referenceList.get(i); local 148 if (ref.contains(name)) {
|
/external/swiftshader/third_party/LLVM/include/llvm-c/ |
ExecutionEngine.h | 135 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \ 136 inline ty *unwrap(ref P) { \ 140 inline ref wrap(const ty *P) { \ 141 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
|