HomeSort by relevance Sort by last modified time
    Searched full:link (Results 1001 - 1025 of 8734) sorted by null

<<41424344454647484950>>

  /frameworks/base/core/java/android/app/
Dialog.java 54 * restoring of dialogs. See {@link Activity#onCreateDialog(int)},
55 * {@link Activity#onPrepareDialog(int, Dialog)},
56 * {@link Activity#showDialog(int)}, and {@link Activity#dismissDialog(int)}. If
57 * these methods are used, {@link #getOwnerActivity()} will return the Activity
62 * do this by setting the {@link WindowManager.LayoutParams#FLAG_ALT_FOCUSABLE_IM
193 * {@link Activity#showDialog(int)} is used to show this Dialog, that
214 * that in {@link #onStart}.
262 * that in {@link #onStop}.
313 * Similar to {@link Activity#onCreate}, you should initialized your dialo
    [all...]
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 40 * @deprecated {@link android.test.ActivityInstrumentationTestCase} is deprecated in favor of
41 * {@link android.test.ActivityInstrumentationTestCase2}, which provides more options for
70 * @deprecated {@link android.test.ActivityInstrumentationTestCase} is deprecated in favor of
71 * {@link android.test.ActivityInstrumentationTestCase2}, which provides more options for
98 * {@link #dragQuarterScreenUp(InstrumentationTestCase, Activity)}
103 * @deprecated {@link android.test.ActivityInstrumentationTestCase} is deprecated in favor of
104 * {@link android.test.ActivityInstrumentationTestCase2}, which provides more options for
114 * {@link #dragQuarterScreenUp(InstrumentationTestCase, Activity)}
139 * {@link #dragQuarterScreenDown(InstrumentationTestCase, Activity)}
144 * @deprecated {@link android.test.ActivityInstrumentationTestCase} is deprecated in favor o
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListViewTest.java 53 notes = "Test constructor(s) of {@link ExpandableListView}",
59 notes = "Test constructor(s) of {@link ExpandableListView}",
65 notes = "Test constructor(s) of {@link ExpandableListView}",
108 notes = "Test {@link ExpandableListView#setChildDivider(Drawable)}",
135 notes = "Test {@link ExpandableListView#getAdapter()}",
171 notes = "Test {@link ExpandableListView#performItemClick(View, int, long)}",
187 notes = "Test {@link ExpandableListView#setOnItemClickListener(OnItemClickListener)}",
289 notes = "Test {@link ExpandableListView#setOnGroupClickListener(OnGroupClickListener)}",
306 notes = "Test {@link ExpandableListView#setOnChildClickListener(OnChildClickListener)}",
326 notes = "Test {@link ExpandableListView#getExpandableListPosition(int)}"
    [all...]
CursorAdapterTest.java 46 * Test {@link CursorAdapter}.
101 notes = "Test constructor(s) of {@link CursorAdapter}",
107 notes = "Test constructor(s) of {@link CursorAdapter}",
124 notes = "Test {@link CursorAdapter#init(Context, Cursor, boolean)}",
174 notes = "Test {@link CursorAdapter#getCount()}",
189 notes = "Test {@link CursorAdapter#changeCursor(Cursor)}",
195 notes = "Test {@link CursorAdapter#changeCursor(Cursor)}",
213 notes = "Test {@link CursorAdapter#convertToString(Cursor)}",
226 notes = "Test {@link CursorAdapter#hasStableIds()}, this method always return true",
240 notes = "Test {@link CursorAdapter#getView(int, View, ViewGroup)}"
    [all...]
ExpandableListViewBasicTest.java 79 notes = "Test {@link ExpandableListView#expandGroup(int)}",
90 notes = "Test {@link ExpandableListView#collapseGroup(int)}",
106 notes = "Test {@link ExpandableListView#expandGroup(int)}",
112 notes = "Test {@link ExpandableListView#expandGroup(int)}",
ViewFlipperTest.java 38 * Test {@link ViewFlipper}.
57 notes = "Test constructor(s) of {@link ViewFlipper}",
63 notes = "Test constructor(s) of {@link ViewFlipper}",
88 notes = "Test {@link ViewFlipper#setFlipInterval(int)}",
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Semaphore.java 14 * permits. Each {@link #acquire} blocks if necessary until a permit is
15 * available, and then takes it. Each {@link #release} adds a permit,
74 * held when {@link #acquire} is called as that would prevent an item
85 * binary semaphore has the property (unlike many {@link Lock}
95 * invoking {@link #acquire} can be allocated a permit ahead of a
98 * semaphore guarantees that threads invoking any of the {@link
106 * Also note that the untimed {@link #tryAcquire() tryAcquire} methods do not
116 * <p>This class also provides convenience methods to {@link
117 * #acquire(int) acquire} and {@link #release(int) release} multiple
267 * <li>Some other thread invokes the {@link #release} method for thi
    [all...]
  /frameworks/base/core/java/android/os/
Handler.java 25 * A Handler allows you to send and process {@link Message} and Runnable
26 * objects associated with a thread's {@link MessageQueue}. Each Handler
38 * {@link #post}, {@link #postAtTime(Runnable, long)},
39 * {@link #postDelayed}, {@link #sendEmptyMessage},
40 * {@link #sendMessage}, {@link #sendMessageAtTime}, and
41 * {@link #sendMessageDelayed} methods. The <em>post</em> versions allow
44 * a {@link Message} object containing a bundle of data that will b
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java 65 * using the {@link #setRenderer(Renderer)} call.
68 * All you have to do to initialize a GLSurfaceView is call {@link #setRenderer(Renderer)}.
72 * <li>{@link #setDebugFlags(int)}
73 * <li>{@link #setEGLConfigChooser(boolean)}
74 * <li>{@link #setEGLConfigChooser(EGLConfigChooser)}
75 * <li>{@link #setEGLConfigChooser(int, int, int, int, int, int)}
76 * <li>{@link #setGLWrapper(GLWrapper)}
100 * one or more of the debugging methods {@link #setDebugFlags(int)},
101 * and {@link #setGLWrapper}. These methods may be called before and/or after setRenderer, but
105 * Finally, you must call {@link #setRenderer} to register a {@link Renderer}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 65 * as well as their children's attributes, see {@link UiAttributeNode}.
67 * The structure of a given {@link UiElementNode} is declared by a corresponding
68 * {@link ElementDescriptor}.
70 * The class implements {@link IPropertySource}, in order to fill the Eclipse property tab when
71 * an element is selected. The {@link AttributeDescriptor} are used property descriptors.
85 /** The {@link AndroidEditor} handling the UI hierarchy. This is defined only for the
88 /** The XML {@link Document} model that is being mirror by the UI model. This is defined
91 /** The XML {@link Node} mirror by this UI node. This can be null for mandatory UI node which
97 /** The list of <em>all</em> UI attributes, as declared in the {@link ElementDescriptor}.
102 * order, iterate through the {@link ElementDescriptor}'s attribute list. *
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 24 * value manipulated using methods {@link #getState}, {@link
25 * #setState} and {@link #compareAndSetState} is tracked with respect
33 * {@link #acquireInterruptibly} that can be invoked as
47 * {@link ReadWriteLock}. Subclasses that support only exclusive or
50 * <p>This class defines a nested {@link ConditionObject} class that
51 * can be used as a {@link Condition} implementation by subclasses
52 * supporting exclusive mode for which method {@link
54 * held with respect to the current thread, method {@link #release}
55 * invoked with the current {@link #getState} value fully release
    [all...]
  /external/guava/src/com/google/common/collect/
Multimaps.java 61 * can generate a multimap based on arbitrary {@link Map} and
62 * {@link Collection} classes.
79 * {@link #synchronizedMultimap}.
82 * {@link ArrayListMultimap#create()}, {@link HashMultimap#create()},
83 * {@link LinkedHashMultimap#create()}, {@link LinkedListMultimap#create()},
84 * {@link TreeMultimap#create()}, and
85 * {@link TreeMultimap#create(Comparator, Comparator)} won't suffice.
139 * It can generate a multimap based on arbitrary {@link Map} and {@link List
    [all...]
  /frameworks/base/core/java/android/content/
ContentProvider.java 43 * {@link ContentResolver} interface. A content provider is only required if you need to share
47 * {@link android.database.sqlite.SQLiteDatabase}.
53 * a {@link ContentResolver} the system inspects the authority of the given URI and passes the
55 * the rest of the URI however it wants. The {@link UriMatcher} class is helpful for parsing
60 * <li>{@link #query} which returns data to the caller</li>
61 * <li>{@link #insert} which inserts new data into the content provider</li>
62 * <li>{@link #update} which updates existing data in the content provider</li>
63 * <li>{@link #delete} which deletes data from the content provider</li>
64 * <li>{@link #getType} which returns the MIME type of data in the content provider</li>
91 * instance of {@link android.test.mock.MockContext})
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 64 * Displays the image rendered by the {@link GraphicalEditorPart} and handles
86 * The last valid ILayoutResult passed to {@link #setResult(ILayoutResult)}.
88 * When non null, {@link #mLastValidViewInfoRoot} is guaranteed to be non-null too.
93 * The CanvasViewInfo root created for the last update of {@link #mLastValidResult}.
94 * This is null when {@link #mLastValidResult} is null.
95 * When non null, {@link #mLastValidResult} is guaranteed to be non-null too.
100 * True when the last {@link #setResult(ILayoutResult)} provided a valid {@link ILayoutResult}
101 * in which case it is also available in {@link #mLastValidResult}.
105 * When this is false, {@link #mLastValidResult} can be non-null and points to an olde
    [all...]
  /bootable/bootloader/legacy/
Android.mk 18 # a link script.
  /build/core/
host_shared_library.mk 23 # to simplify the link line.
shared_library.mk 24 # to simplify the link line.
  /build/tools/droiddoc/src/
LinkReference.java 22 * Class that represents what you see in an link or see tag. This is
36 /** The link. */
39 /** The {@link PackageInfo} if any. */
42 /** The {@link ClassInfo} if any. */
45 /** The {@link MemberInfo} if any. */
68 * Parse and resolve a link string.
71 * @param base the class or whatever that this link is on
73 * @return a new link reference. It always returns something. If there was an
121 "unable to parse link/see tag: " + text.trim());
266 // be somewhere else; link to where it really is, not what the
    [all...]
  /cts/tests/assets/webkit/
test_favicon.html 19 <link rel="icon" type="image/png" href="favicon.png">
  /cts/tests/src/android/text/style/cts/
MockURLSpanTestActivity.java 25 * A Mock application for {@link URLSpan} test.
URLSpanStubActivity.java 25 * A minimal application for {@link URLSpan} test.
  /cts/tests/src/android/view/cts/
MenuInflaterStubActivity.java 23 * Stub activity for testing {@link MenuInflater}.
  /cts/tests/src/android/widget/cts/
LinearLayoutStubActivity.java 25 * A minimal application for {@link LinearLayout} test.
MockPopupWindowStubActivity.java 26 * Stub activity for testing {@link PopupWindow}
RemoteViewsStubActivity.java 26 * Stub activity for testing {@link RemoteViews}

Completed in 272 milliseconds

<<41424344454647484950>>