HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 151 - 175 of 1627) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewAction.java 32 ChangeViewRefactoring ref = new ChangeViewRefactoring(mFile, mDelegate, local
34 RefactoringWizard wizard = new ChangeViewWizard(ref, mDelegate);
ExtractIncludeAction.java 32 ExtractIncludeRefactoring ref = new ExtractIncludeRefactoring(mFile, mDelegate, local
34 RefactoringWizard wizard = new ExtractIncludeWizard(ref, mDelegate);
ExtractStyleAction.java 32 ExtractStyleRefactoring ref = new ExtractStyleRefactoring(mFile, mDelegate, local
34 RefactoringWizard wizard = new ExtractStyleWizard(ref, mDelegate);
UnwrapAction.java 32 UnwrapRefactoring ref = new UnwrapRefactoring(mFile, mDelegate, local
34 RefactoringWizard wizard = new UnwrapWizard(ref, mDelegate);
UseCompoundDrawableAction.java 32 UseCompoundDrawableRefactoring ref = new UseCompoundDrawableRefactoring( local
34 RefactoringWizard wizard = new UseCompoundDrawableWizard(ref, mDelegate);
WrapInAction.java 32 WrapInRefactoring ref = new WrapInRefactoring(mFile, mDelegate, local
34 RefactoringWizard wizard = new WrapInWizard(ref, mDelegate);
  /dalvik/tests/036-finalizer/src/
Main.java 3 import java.lang.ref.WeakReference;
57 Object ref = wimp.get();
58 if (ref != null) {
59 s[0] = ref.toString();
  /dalvik/tests/079-phantom/src/
Bitmap.java 17 import java.lang.ref.ReferenceQueue;
18 import java.lang.ref.PhantomReference;
137 PhantomWrapper ref = (PhantomWrapper) mQueue.remove(); local
138 //System.out.println("dequeued ref " + ref.mNativeData +
139 // " - " + ref);
140 Bitmap.freeNativeStorage(ref.mNativeData);
141 //ref.clear();
  /dalvik/vm/mterp/cstubs/
stubdefs.cpp 12 u2 ref, vsrc1, vsrc2, vdst; \
16 (void)ref; (void)vsrc1; (void)vsrc2; (void)vdst; (void)inst; \
58 u4 ref; \
61 (void)ref; (void)vsrc1; (void)vsrc2; (void)vdst; (void)inst;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource.java 22 package org.apache.xml.dtm.ref;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
p2.cpp 120 void test(B<int> &ref) {
121 test7_function(ref);
131 void test(B<int> &ref) {
132 test8_function(ref);
  /external/valgrind/main/none/tests/ppc32/
test_dfp3.stdout.exp     [all...]
  /external/valgrind/main/none/tests/ppc64/
test_dfp3.stdout.exp     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
CrossThreadRefCounted.h 45 // (like UString) that get ref/deref'ed a lot. This class has the benefit of doing fast ref
65 void ref();
108 void CrossThreadRefCounted<T>::ref() function in class:WTF::CrossThreadRefCounted
111 m_refCounter.ref();
113 // Store the threadId as soon as the ref count gets to 2.
114 // The class gets created with a ref count of 1 and then passed
115 // to another thread where to ref count get increased. This
132 // Clear the threadId when the ref goes to 1 because it
155 m_threadSafeRefCounter->ref();
    [all...]
  /external/webkit/Source/WebCore/dom/
DOMStringMap.h 43 virtual void ref() = 0;
  /external/webkit/Source/WebKit/wx/
WebDOMSelection.cpp 65 range->ref();
  /packages/apps/Mms/src/com/android/mms/util/
SimpleCache.java 19 import java.lang.ref.SoftReference;
70 private static <V> V unwrap(SoftReference<V> ref) {
71 return ref != null ? ref.get() : null;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CodeItem.java 52 private final CstMethodRef ref; field in class:CodeItem
78 * @param ref {@code non-null;} method that this code implements
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
89 if (ref == null) {
90 throw new NullPointerException("ref == null");
101 this.ref = ref;
121 debugInfo = new DebugInfoItem(code, isStatic, ref);
146 return ref.toHuman();
155 return ref;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 52 private final CstMethodRef ref; field in class:CodeItem
78 * @param ref {@code non-null;} method that this code implements
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
89 if (ref == null) {
90 throw new NullPointerException("ref == null");
101 this.ref = ref;
121 debugInfo = new DebugInfoItem(code, isStatic, ref);
146 return ref.toHuman();
155 return ref;
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathValidatorExceptionTest.java 64 CertPathValidatorException ref = (CertPathValidatorException) oref; local
66 CertPath cp = ref.getCertPath();
67 int ind = ref.getIndex();
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 50 * @param ref The key value we're looking for
58 XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)
84 nl = kt.getNodeSetDTMByKey(name, ref);
108 nl = kt.getNodeSetDTMByKey(name, ref);
  /external/clang/test/CodeGenCXX/
constructors.cpp 21 A::A(struct Undeclared &ref) : mem(0) {}
24 // CHECK: define void @_ZN1AC1ER10Undeclared(%struct.A* %this, %struct.Undeclared* %ref) unnamed_addr
27 // CHECK: define void @_ZN1AC2ER10Undeclared(%struct.A* %this, %struct.Undeclared* %ref) unnamed_addr
45 B::B(struct Undeclared &ref) : A(ref), mem(1) {}
47 // CHECK: define void @_ZN1BC1ER10Undeclared(%struct.B* %this, %struct.Undeclared* %ref) unnamed_addr
50 // CHECK: define void @_ZN1BC2ER10Undeclared(%struct.B* %this, %struct.Undeclared* %ref) unnamed_addr
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 52 private final CstMethodRef ref; field in class:CodeItem
78 * @param ref {@code non-null;} method that this code implements
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
89 if (ref == null) {
90 throw new NullPointerException("ref == null");
101 this.ref = ref;
121 debugInfo = new DebugInfoItem(code, isStatic, ref);
146 return ref.toHuman();
155 return ref;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/beos/
SDL_BeApp.cc 67 entry_ref ref = info.ref; local
69 if (B_OK == entry.SetTo(&ref)) {
  /external/skia/include/images/
SkFlipPixelRef.h 73 SkAutoFlipUpdate(SkFlipPixelRef* ref) : fRef(ref) {
74 fDirty = &ref->beginUpdate(&fBitmap);

Completed in 847 milliseconds

1 2 3 4 5 67 8 91011>>