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

<<21222324252627282930>>

  /frameworks/base/core/java/android/app/
AlarmManager.java 27 * an alarm goes off, the {@link Intent} that had been registered for it
38 * called {@link android.content.Context#startService Context.startService()}, it
48 * {@link android.os.Handler}.</b>
52 * {@link android.content.Context#getSystemService
58 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
64 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
71 * Alarm time in {@link android.os.SystemClock#elapsedRealtime
77 * Alarm time in {@link android.os.SystemClock#elapsedRealtime
97 * {@link android.os.Handler}.</b> If there is already an alarm scheduled
103 * {@link Intent#filterEquals}), then it will be removed and replaced b
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/
layout-objects.jd 3 parent.link=index.html
20 to use in your applications. Like all layouts, they are subclasses of {@link android.view.ViewGroup ViewGroup}.</p>
26 <p>{@link android.widget.FrameLayout FrameLayout} is the simplest type of layout
36 <p>{@link android.widget.LinearLayout LinearLayout} aligns all children in a
41 high (the height of the tallest child, plus padding). A {@link
45 <p>{@link android.widget.LinearLayout LinearLayout} also supports assigning a
70 <p>The following two forms represent a {@link android.widget.LinearLayout LinearLayout} with a set of elements: a
80 <p>Within a horizontal {@link android.widget.LinearLayout LinearLayout}, items are aligned by the position of
92 <p>{@link android.widget.TableLayout} positions its children into rows
96 <p>{@link android.widget.TableRow} objects are the child views of a TableLayou
    [all...]
menus.jd 3 parent.link=index.html
10 <li>{@link android.view.Menu}</li>
11 <li>{@link android.view.ContextMenu}</li>
12 <li>{@link android.view.SubMenu}</li>
76 the Android system will call the Activity <code>{@link android.app.Activity#onCreateOptionsMenu(Menu)
78 and populate the {@link android.view.Menu} object given to you. You can populate the menu by
80 <code>{@link android.view.Menu#add(CharSequence) add()}</code>
81 for each item you'd like in the menu. This method adds a {@link android.view.MenuItem}, and returns the
85 <p>There are multiple <code>{@link android.view.Menu#add(CharSequence) add()}</code> methods.
90 <code>{@link android.app.Activity#onOptionsItemSelected(MenuItem) onOptionsItemSelected()}</code>
    [all...]
  /frameworks/base/docs/html/guide/tutorials/views/
hello-formstuff.jd 3 parent.link=index.html
37 <li>Open the layout file and, inside the LinearLayout, add the {@link android.widget.ImageButton} element:
48 images from the Android {@link android.R.drawable} resources,
64 The {@link android.view.View.OnClickListener} must define the <code>onClick()</code> method, which
66 {@link android.widget.Toast} message when clicked.</p>
76 <li>Open the layout file and, inside the LinearLayout, add the {@link android.widget.EditText} element:
100 The {@link android.view.View.OnKeyListener} must define the <code>onKey()</code> method, which
102 Enter key (when pressed down), then pop up a {@link android.widget.Toast} message with the
114 <li>Open the layout file and, inside the LinearLayout, add the {@link android.widget.CheckBox} element:
138 The {@link android.view.View.OnClickListener} must define the <code>onClick()</code> method, whic
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceManager.java 38 * Used to help create {@link Preference} hierarchies
42 * {@link PreferenceActivity#addPreferencesFromIntent} or
43 * {@link PreferenceActivity#addPreferencesFromResource(int)}.
93 * inflating the hierarchy. Do not set this directly, use {@link #setNoCommit(boolean)}
98 * The SharedPreferences name that will be used for all {@link Preference}s
104 * The SharedPreferences mode that will be used for all {@link Preference}s
110 * The {@link PreferenceScreen} at the root of the preference hierarchy.
148 * The {@link PreferenceManager#PreferenceManager(Activity)}
163 * Returns a list of {@link Activity} (indirectly) that match a given
164 * {@link Intent}
    [all...]
  /external/freetype/src/autofit/
afcjk.c 218 seg1->link = seg2;
226 seg2->link = seg1;
248 link1 = seg1->link;
249 if ( !link1 || link1->link != seg1 || link1->pos <= seg1->pos )
260 link2 = seg2->link;
261 if ( !link2 || link2->link != seg2 || link2->pos < link1->pos )
279 AF_Segment link = seg->link; local
282 if ( link == seg2 )
284 seg->link = 0
393 AF_Segment link = seg->link; local
    [all...]
  /frameworks/base/docs/html/guide/topics/testing/
testing_android.jd 57 <li>{@link android.test.InstrumentationTestRunner}</li>
58 <li>{@link android.test.ActivityInstrumentationTestCase2}</li>
59 <li>{@link android.test.ActivityUnitTestCase}</li>
60 <li>{@link android.test.ApplicationTestCase}</li>
61 <li>{@link android.test.ProviderTestCase2}</li>
62 <li>{@link android.test.ServiceTestCase}</li>
172 Some of the classes in the testing API extend the JUnit {@link junit.framework.TestCase TestCase} but do not use the instrumentation framework. These classes
174 and so forth. The base class is {@link android.test.AndroidTestCase}, but you usually use a subclass associated with a particular component.
180 {@link android.test.ApplicationTestCase} - A class for testing an entire application. It allows you to inject a mock Context into the application,
184 {@link android.test.ProviderTestCase2} - A class for isolated testing of a single {@link android.content. (…)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
package.html 76 {@link org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager}
79 {@link org.apache.http.impl.conn.tsccm.AbstractConnPool}
85 {@link org.apache.http.impl.conn.tsccm.BasicPooledConnAdapter}
88 {@link org.apache.http.impl.conn.tsccm.ConnPoolByRoute}
96 {@link org.apache.http.impl.conn.tsccm.BasicPoolEntry}
99 {@link org.apache.http.impl.conn.tsccm.BasicPoolEntry}
110 {@link org.apache.http.conn.ClientConnectionOperator}
116 {@link org.apache.http.conn.OperatedClientConnection}
125 interfaces {@link org.apache.http.conn.ClientConnectionManager}
126 and {@link org.apache.http.conn.ManagedClientConnection}
    [all...]
  /frameworks/base/common/java/com/android/common/
OperationScheduler.java 34 * {@link #getNextTimeMillis()} as appropriate and do the actual work.
37 /** Tunable parameter options for {@link #getNextTimeMillis}. */
131 * @return the wall clock time ({@link System#currentTimeMillis()}) when the
172 * @return the wall clock time when {@link #onSuccess()} was last called.
181 * @return the wall clock time when {@link #onSuccess()} or {@link
191 * Fetch a {@link SharedPreferences} property, but force it to be before
208 * minimum intervals. Use {@link Long#MAX_VALUE} to disable triggering.
210 * @param millis wall clock time ({@link System#currentTimeMillis()}) to
219 * Limited by {@link #Options.maxMoratoriumMillis}
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 32 * <p>{@link BluetoothClass} is useful as a hint to roughly describe a device
36 * performed when creating an RFCOMM socket with {@link
37 * BluetoothDevice#createRfcommSocketToServiceRecord(UUID)} and {@link
40 * <p>Use {@link BluetoothDevice#getBluetoothClass} to retrieve the class for
103 * <p>Each {@link BluetoothClass} encodes zero or more service classes.
121 * {@link BluetoothClass}.
123 * {@link BluetoothClass.Service}. For example, {@link
135 * <p>Each {@link BluetoothClass} encodes exactly one device class, with
137 * <p>The constants in {@link
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java 102 * Window that shows QuickContact dialog for a specific {@link Contacts#_ID}.
111 * Interface used to allow the person showing a {@link QuickContactWindow} to
194 * Set of {@link Action} that are associated with the aggregate currently
195 * displayed by this dialog, represented as a map from {@link String}
196 * MIME-type to {@link ActionList}.
201 * Pool of unused {@link CheckableImageView} that have previously been
202 * inflated, and are ready to be recycled through {@link #obtainView()}.
209 * {@link #PRECEDING_MIMETYPES} and {@link #FOLLOWING_MIMETYPES} are used to sort MIME-types.
211 * <p>The MIME-types in {@link #PRECEDING_MIMETYPES} appear in the front of the dialog
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/patterns/
NodeTest.java 63 * Make sure this does not conflict with {@link org.w3c.dom.traversal.NodeFilter}.
69 * These constants are defined in the {@link org.w3c.dom.traversal.NodeFilter}
72 * @return bitset mainly defined in {@link org.w3c.dom.traversal.NodeFilter}.
81 * These constants are defined in the {@link org.w3c.dom.traversal.NodeFilter}
84 * @param what bitset mainly defined in {@link org.w3c.dom.traversal.NodeFilter}.
100 * @return The namespace to be tested for, or {@link #WILD}, or null.
110 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
126 * @return the local name to be tested, or {@link #WILD}, or an empty string.
136 * @param name the local name to be tested, or {@link #WILD}, or an empty string.
145 * {@link #SCORE_NODETEST}
    [all...]
  /frameworks/base/core/java/android/database/
Cursor.java 156 * @deprecated use {@link ContentResolver#delete(Uri, String, String[])}
163 * If you expect the column to exist use {@link #getColumnIndexOrThrow(String)} instead, which
175 * {@link IllegalArgumentException} if the column doesn't exist. If you're not sure if
176 * a column will exist or not use {@link #getColumnIndex(String)} and check for -1, which
307 * @deprecated use the {@link ContentResolver} update methods instead of the Cursor
318 * @deprecated use the {@link ContentResolver} update methods instead of the Cursor
327 * until {@link #commitUpdates()} is called.
333 * @deprecated use the {@link ContentResolver} update methods instead of the Cursor
342 * until {@link #commitUpdates()} is called.
348 * @deprecated use the {@link ContentResolver} update methods instead of the Curso
    [all...]
  /bionic/libc/include/net/
if_dl.h 35 * A Link-Level Sockaddr may specify the interface in one of two
43 * High volume transactions (such as giving a link-level ``from'' address
47 * The form and interpretation of the link-level address is purely a matter
58 * Structure of a Link-Level sockaddr:
66 u_char sdl_alen; /* link level address length */
67 u_char sdl_slen; /* link layer selector length */
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStorageTester.java 27 * Tests for common GestureStore/GestureLibrary APIs ie {@link GestureStorageFacade.}
51 * Test method for {@link android.gesture.GestureStore#getGestureEntries()}.
64 * Test method for {@link android.gesture.GestureStore#recognize(Gesture)}.
79 * Test method for {@link android.gesture.GestureStore#removeGesture(java.lang.String, android.gesture.Gesture)}.
94 * Test method for {@link android.gesture.GestureStore#removeEntry(java.lang.String)}.
105 * Test method for {@link android.gesture.GestureStore#getGestures(java.lang.String)}.
GestureStoreTest.java 31 * Compatibility unit tests for {@link GestureStore}
100 * Tests {@link android.gesture.GestureStore#hasChanged()}.
110 * Tests {@link android.gesture.GestureStore#hasChanged()}.
123 * Tests {@link android.gesture.GestureStore#hasChanged()}.
136 * Test method for {@link android.gesture.GestureStore#save(java.io.OutputStream)} and
137 * {@link android.gesture.GestureStore#load(java.io.InputStream)}.
  /cts/tests/tests/text/src/android/text/method/cts/
DialerKeyListenerTest.java 32 * Test {@link DialerKeyListener}.
38 notes = "Test constructor(s) of {@link DialerKeyListener}",
48 notes = "Test {@link DialerKeyListener#lookup(KeyEvent, Spannable)}",
76 notes = "Test {@link DialerKeyListener#getInstance()}",
93 notes = "Test {@link DialerKeyListener#getAcceptedChars()}",
106 notes = "Test {@link DialerKeyListener#getInputType()}",
  /cts/tests/tests/view/src/android/view/animation/cts/
AlphaAnimationTest.java 33 * Test {@link AlphaAnimation}.
40 notes = "Test constructor(s) of {@link AlphaAnimation}",
46 notes = "Test constructor(s) of {@link AlphaAnimation}",
62 notes = "Test {@link AlphaAnimation#willChangeBounds()}. This method always" +
75 notes = "test {@link AlphaAnimation#willChangeTransformationMatrix()}. This method" +
87 notes = "Test {@link AlphaAnimation#applyTransformation(float, Transformation)}",
  /dalvik/libcore/security/src/main/java/java/security/
Certificate.java 30 * @deprecated Replaced by behavior in {@link java.security.cert}
38 * the data to encode must be that identified by {@link #getFormat()} and
39 * encoded by {@link #encode(OutputStream)}.
54 * {@link #decode(InputStream)} method must be able to decode the format
77 * {@link #getPrincipal()}.
86 * the guarantor returned by {@link #getGuarantor()}.
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 31 * for backing up using the {@link android.app.backup.FileBackupHelper} class
35 * uses by extending {@link BackupAgentHelper} rather than the basic
36 * {@link BackupAgent} class.
42 * {@link #onBackup()} and {@link #onRestore()} to supply the necessary locking
55 * The {@link android.app.backup.FileBackupHelper FileBackupHelper} class
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessor.java 28 * Donut, we want to use the {@link ContactAccessorSdk3_4} class. If it is
29 * Eclair or higher, we want to use {@link ContactAccessorSdk5}.
34 * Static singleton instance of {@link ContactAccessor} holding the
78 * Returns the {@link Intent#ACTION_PICK} intent configured for the right authority: legacy
85 * used, but the result is the same: the {@link #mDisplayName} and {@link #mPhoneNumber}
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionRequest.java 37 * Encapsulates a request for a {@link ManagedClientConnection}.
45 * {@link ClientConnectionManager#shutdown() shut down}.
48 * If {@link #abortRequest()} is called while this is blocking or
49 * before this began, an {@link InterruptedException} will
68 * Aborts the call to {@link #getConnection(long, TimeUnit)},
69 * causing it to throw an {@link InterruptedException}.
  /external/apache-http/src/org/apache/http/conn/params/
ConnRoutePNames.java 45 * {@link org.apache.http.conn.routing.HttpRoutePlanner HttpRoutePlanner}
48 * This parameter expects a value of type {@link org.apache.http.HttpHost}.
60 * {@link org.apache.http.conn.routing.HttpRoutePlanner HttpRoutePlanner}
63 * This parameter expects a value of type {@link java.net.InetAddress}.
72 * {@link org.apache.http.conn.routing.HttpRoutePlanner HttpRoutePlanner}
78 * {@link org.apache.http.conn.routing.HttpRoute HttpRoute}.
  /external/apache-http/src/org/apache/http/cookie/params/
CookieSpecPNames.java 48 * This parameter expects a value of type {@link java.util.Collection}.
49 * The collection elements are of type {@link String}
51 * {@link java.text.SimpleDateFormat}.
58 * Defines whether {@link org.apache.http.cookie.Cookie cookies}
60 * a single {@link org.apache.http.Header request header}.
63 * This parameter expects a value of type {@link Boolean}.
  /external/apache-http/src/org/apache/http/
package.html 41 {@link org.apache.http.HttpMessage message} including it's
42 {@link org.apache.http.Header headers} and optional
43 {@link org.apache.http.HttpEntity entity}, and
44 {@link org.apache.http.HttpConnection connections}
47 {@link org.apache.http.HttpRequestInterceptor requests} and
48 {@link org.apache.http.HttpResponseInterceptor responses}.

Completed in 158 milliseconds

<<21222324252627282930>>