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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/test-runner/src/android/test/
ActivityInstrumentationTestCase2.java 31 * <li>You can run any test method on the UI thread (see {@link android.test.UiThreadTest}).</li>
33 * {@link #setActivityIntent(Intent)}).</li>
36 * <p>This class replaces {@link android.test.ActivityInstrumentationTestCase}, which is deprecated.
39 * <p>If you prefer an isolated unit test, see {@link android.test.ActivityUnitTestCase}.
48 * Creates an {@link ActivityInstrumentationTestCase2}.
54 * @deprecated use {@link #ActivityInstrumentationTestCase2(Class)} instead
62 * Creates an {@link ActivityInstrumentationTestCase2}.
78 * {@link #setActivityIntent(Intent)} and/or {@link #setActivityInitialTouchMode(boolean)}
83 * If your test method is annotated with {@link android.test.UiThreadTest}, then your Activit
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/validation/
TypeInfoProvider.java 25 * by {@link ValidatorHandler}.
35 * {@link ValidatorHandler#getTypeInfoProvider()} method.
54 * <p>Returns the immutable {@link TypeInfo} object for the current element.</p>
58 * the {@link org.xml.sax.ContentHandler} that the application sets to the
59 * {@link ValidatorHandler}.</p>
62 * If this method is called from other {@link org.xml.sax.ContentHandler}
65 * An immutable {@link TypeInfo} object that represents the
68 * {@link TypeInfo} longer than the callback scope.
80 * Returns the immutable {@link TypeInfo} object for the specified
85 * the {@link org.xml.sax.ContentHandler} that the application sets to th
    [all...]
Schema.java 30 * A {@link Schema} object is thread safe and applications are
34 * A {@link Schema} object is immutable in the sense that it shouldn't
37 * {@link Schema}, it must always produce the same result.
40 * A {@link Schema} object is usually created from {@link SchemaFactory}.
43 * Two kinds of validators can be created from a {@link Schema} object.
44 * One is {@link Validator}, which provides highly-level validation
46 * {@link ValidatorHandler}, which works on top of SAX for better
51 * the {@link java.lang.Object#equals(java.lang.Object)} method.
74 * Creates a new {@link Validator} for this {@link Schema}
    [all...]
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 31 * when {@link AccessibilityEvent}s are fired. Such events denote some state transition
38 * {@link android.content.Intent}. Following is an example of such a declaration:
51 * calls {@link AccessibilityService#onServiceConnected()}. This method can be
53 * is configured though setting an {@link AccessibilityServiceInfo} by calling
54 * {@link AccessibilityService#setServiceInfo(AccessibilityServiceInfo)}. You can call this
56 * in the overriden {@link AccessibilityService#onServiceConnected()}.
76 * {@link AccessibilityEvent#TYPE_VIEW_CLICKED}
77 * {@link AccessibilityEvent#TYPE_VIEW_LONG_CLICKED}
78 * {@link AccessibilityEvent#TYPE_VIEW_FOCUSED}
79 * {@link AccessibilityEvent#TYPE_VIEW_SELECTED
    [all...]
  /frameworks/base/docs/html/guide/topics/processes/
process-lifecycle.jd 17 (in particular {@link android.app.Activity}, {@link android.app.Service},
18 and {@link android.content.BroadcastReceiver}) impact the lifetime
24 {@link android.content.BroadcastReceiver} that starts a thread when it
25 receives an Intent in its {@link android.content.BroadcastReceiver#onReceive
32 is to start a {@link android.app.Service} from the BroadcastReceiver, so the
47 <li> It is running an {@link android.app.Activity}
49 {@link android.app.Activity#onResume} method has been called).</li>
50 <li> It has a {@link android.content.BroadcastReceiver} that is currently running
51 (its {@link android.content.BroadcastReceiver#onReceive
    [all...]
  /frameworks/base/docs/html/resources/tutorials/views/
hello-tabwidget.jd 3 parent.link=index.html
6 <p>To create a tabbed UI, you need to use a {@link android.widget.TabHost} and a {@link
7 android.widget.TabWidget}. The {@link android.widget.TabHost} must be the root node for the layout,
8 which contains both the {@link android.widget.TabWidget} for displaying the tabs and a {@link
12 {@link android.view.View}s within the same {@link android.app.Activity}, or use the tabs to change
15 a separate {@link android.app.Activity} for each tab, so that you can better manage the application
18 <p>In this tutorial, you'll create a tabbed UI that uses a separate {@link
    [all...]
hello-linearlayout.jd 3 parent.link=index.html
6 <p>{@link android.widget.LinearLayout} is a {@link android.view.ViewGroup} that displays child
7 {@link android.view.View} elements in a linear direction, either vertically or horizontally.</p>
9 <p>You should be careful about over-using the {@link android.widget.LinearLayout}. If you begin
10 nesting multiple {@link android.widget.LinearLayout}s, you may want to consider using a {@link
92 <p>Carefully inspect this XML. There is a root {@link android.widget.LinearLayout} that defines
93 its orientation to be vertical&mdash;all child {@link android.view.View}s (of which it has two) will
95 another {@link android.widget.LinearLayout} that uses a horizontal orientation and the second chil
    [all...]
  /external/bluetooth/glib/docs/reference/gobject/
tut_gtype.xml 45 <function><link linkend="g-type-register-static">g_type_register_static</link></function> and
46 <function><link linkend="g-type-register-fundamental">g_type_register_fundamental</link></function>
49 which you should use to register a new <type><link linkend="GType">GType</link></type> in the program's type system.
51 <function><link linkend="g-type-register-fundamental">g_type_register_fundamental</link></function> (you have to be Tim Janik
57 <function><link linkend="g-type-register-dynamic">g_type_register_dynamic</link></function>. We will not discuss thi
    [all...]
  /frameworks/base/docs/html/guide/topics/wireless/
bluetooth.jd 8 <li>{@link android.bluetooth.BluetoothAdapter}</li>
9 <li>{@link android.bluetooth.BluetoothDevice}</li>
10 <li>{@link android.bluetooth.BluetoothSocket}</li>
11 <li>{@link android.bluetooth.BluetoothServerSocket}</li>
73 <p>All of the Bluetooth APIs are available in the {@link android.bluetooth}
78 <dt>{@link android.bluetooth.BluetoothAdapter}</dt>
80 {@link android.bluetooth.BluetoothAdapter} is the entry-point for all Bluetooth
83 devices, instantiate a {@link android.bluetooth.BluetoothDevice} using a known
84 MAC address, and create a {@link android.bluetooth.BluetoothServerSocket} to
88 <dt>{@link android.bluetooth.BluetoothDevice}</dt
    [all...]
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssItem.java 21 * title, link, description.
34 public RssItem(CharSequence title, CharSequence link, CharSequence description) {
36 mLink = link;
52 public void setLink(CharSequence link) {
53 mLink = link;
  /external/dropbear/
queue.h 28 struct Link {
31 struct Link* link; member in struct:Link
37 struct Link* head;
38 struct Link* tail;
  /external/e2fsprogs/tests/f_dup4/
script 29 link /dir/foo /dir2/foo1
30 link /dir/foo /dir3/foo2
31 link /dir2/bar /dir3/bar1
32 link /dir4/quux /dir/quux1
33 link /dir4/quux /dir2/quux2
  /external/webkit/WebCore/manual-tests/
redraw-page-cache-visited-links.html 29 <li>The link in Step 2 should be rendered in an unvisited link color first.
30 <li><a id="mylink" href="./resources/redraw-page-cache-visited-links-2.html">Click This Link Once</a><br><br>
31 <li value="4">The test passes if the link in Step 2 is rendered in a visited link color after the click.
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 26 * Everything you can do with AppWidgetProvider, you can do with a regular {@link BroadcastReceiver}.
28 * {@link #onReceive(Context,Intent) onReceive(Context,Intent)}, and calls hook methods
31 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted},
32 * {@link #onEnabled} or {@link #onDisabled} methods to implement your own AppWidget functionality.
45 * Implements {@link BroadcastReceiver#onReceive} to dispatch calls to the various
82 * Called in response to the {@link AppWidgetManager#ACTION_APPWIDGET_UPDATE} broadcast when
83 * this AppWidget provider is being asked to provide {@link android.widget.RemoteViews RemoteViews}
88 * @param context The {@link android.content.Context Context} in which this receiver i
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
TextProgressBar.java 33 * Container that links together a {@link ProgressBar} and {@link Chronometer}
34 * as children. It subscribes to {@link Chronometer#OnChronometerTickListener}
35 * and updates the {@link ProgressBar} based on a preset finishing time.
38 * {@link android.R.id.progress} and {@link android.R.id.text1}.
40 * If the {@link Chronometer} {@link android.R.attr#layout_width} is
41 * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT}, then the
42 * {@link android.R.attr#gravity} will be used to automatically move it wit
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
IUnknownDescriptorProvider.java 22 * {@link UiItemElementNode} is the main class that creates the UI Model hierarchy based
23 * on an XML DOM hierarchy, matching XML names to the {@link ElementDescriptor} names.
25 * This interface declares a provider that can provide an {@link ElementDescriptor}
31 * Returns an instance of {@link ElementDescriptor} matching the given XML Local Name.
34 * @return A new or existing {@link ElementDescriptor} or derived instance. Must not be null.
  /frameworks/base/core/java/android/text/
InputType.java 23 * held in an {@link Editable} object. Supported classes may be combined
47 * {@link #TYPE_CLASS_TEXT}, {@link #TYPE_CLASS_NUMBER},
48 * {@link #TYPE_CLASS_PHONE}, {@link #TYPE_CLASS_DATETIME}.
50 * understand, assume {@link #TYPE_CLASS_TEXT} with NO variation
83 * {@link #TYPE_TEXT_FLAG_CAP_CHARACTERS},
84 * {@link #TYPE_TEXT_FLAG_CAP_WORDS}, and.
85 * {@link #TYPE_TEXT_FLAG_CAP_SENTENCES}. It also supports the
87 * {@link #TYPE_TEXT_VARIATION_NORMAL}, an
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/sql/
CallableStatementTest.java 44 * Test method for {@link java.sql.CallableStatement#getArray(int)}.
57 * Test method for {@link java.sql.CallableStatement#getArray(java.lang.String)}.
70 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int)}.
83 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int, int)}.
96 * Test method for {@link java.sql.CallableStatement#getBigDecimal(java.lang.String)}.
109 * Test method for {@link java.sql.CallableStatement#getBlob(int)}.
122 * Test method for {@link java.sql.CallableStatement#getBlob(java.lang.String)}.
135 * Test method for {@link java.sql.CallableStatement#getBoolean(int)}.
148 * Test method for {@link java.sql.CallableStatement#getBoolean(java.lang.String)}.
161 * Test method for {@link java.sql.CallableStatement#getByte(int)}
    [all...]
  /dalvik/dx/src/com/android/dx/rop/
package-info.java 32 * <li> {@link RopMethod}, the representation of an individual method
33 * <li> {@link BasicBlock} and its per-method container, {@link BasicBlockList},
35 * <li> {@link Insn} and its subclasses along with its per-basic block
36 * container {@link InsnList}. {@code Insn} instances represent
38 * <li> {@link RegisterSpec} and its container {@link RegisterSpecList}. A
42 * <li> {@link Rop} instances represent opcodes in the abstract machine. Many
44 * {@link Rops}. The rest are constructed dynamically using static methods
46 * <li> {@link RegOps} lists numeric constants for the opcode
    [all...]
  /frameworks/base/media/java/android/media/
ToneGenerator.java 726 /** Maximum volume, for use with {@link #ToneGenerator(int,int)} */
728 /** Minimum volume setting, for use with {@link #ToneGenerator(int,int)} */
749 * <li>{@link #TONE_DTMF_0}
750 * <li>{@link #TONE_DTMF_1}
751 * <li>{@link #TONE_DTMF_2}
752 * <li>{@link #TONE_DTMF_3}
753 * <li>{@link #TONE_DTMF_4}
754 * <li>{@link #TONE_DTMF_5}
755 * <li>{@link #TONE_DTMF_6}
756 * <li>{@link #TONE_DTMF_7
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 34 * Represents a top-level {@link Preference} that
35 * is the root of a Preference hierarchy. A {@link PreferenceActivity}
37 * this class, use {@link PreferenceManager#createPreferenceScreen(Context)}.
40 * <li> When a {@link PreferenceActivity} points to this, it is used as the root
44 * another screen of preferences as a {@link Dialog} or via a
45 * {@link Context#startActivity(android.content.Intent)} from the
46 * {@link Preference#getIntent()}). The children of this {@link PreferenceScreen}
47 * are NOT shown in the screen that this {@link PreferenceScreen} is shown in.
69 * hierarchy and given to a {@link PreferenceActivity}. The first screen wil
    [all...]
  /frameworks/base/core/java/com/android/internal/backup/
IBackupTransport.aidl 42 * will be called outside of the {@link #startSession}/{@link #endSession} pair.
55 * this is called, {@link #finishBackup} must be called to ensure the request
58 * @return One of {@link BackupConstants#TRANSPORT_OK} (OK so far) or
59 * {@link BackupConstants#TRANSPORT_ERROR} (on network error or other failure).
65 * the data immediately, or may buffer it. After this is called, {@link #finishBackup}
77 * @return one of {@link BackupConstants#TRANSPORT_OK} (OK so far),
78 * {@link BackupConstants#TRANSPORT_ERROR} (on network error or other failure), or
79 * {@link BackupConstants#TRANSPORT_NOT_INITIALIZED} (if the backend dataset has
87 * the app had never yet been backed up. After this is called, {@link finishBackup
    [all...]
  /frameworks/base/core/java/android/os/
Environment.java 69 * {@link #getExternalStorageState()}.
74 * by {@link android.content.Context#getExternalFilesDir
78 * {@link #getExternalStoragePublicDirectory}.
94 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
95 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
105 * This may be combined with {@link #DIRECTORY_MUSIC},
106 * {@link #DIRECTORY_NOTIFICATIONS},
107 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a serie
    [all...]
  /frameworks/base/core/java/android/provider/
LiveFolders.java 23 * {@link android.content.ContentProvider}. To create a live folder, two components
26 * <li>An activity that can respond to the intent action {@link #ACTION_CREATE_LIVE_FOLDER}. The
28 * <li>A {@link android.content.ContentProvider} to provide the live folder items.</li>
33 * intent filter action {@link #ACTION_CREATE_LIVE_FOLDER} and presents the list to the user.
35 * {@link #ACTION_CREATE_LIVE_FOLDER} action. The activity then creates the live folder and
37 * {@link android.app.Activity#setResult(int, android.content.Intent) activity result}. The
79 * <p>The live folder is described by an {@link android.content.Intent} as follows:</p>
91 * <tr><th>{@link #EXTRA_LIVE_FOLDER_NAME}</th>
96 * <tr><th>{@link #EXTRA_LIVE_FOLDER_ICON}</th>
97 * <td>Extra {@link android.content.Intent.ShortcutIconResource}</td
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageManager.java 42 * You can find this class through {@link Context#getPackageManager}.
60 * {@link PackageInfo} flag: return information about
61 * activities in the package in {@link PackageInfo#activities}.
66 * {@link PackageInfo} flag: return information about
68 * {@link PackageInfo#receivers}.
73 * {@link PackageInfo} flag: return information about
74 * services in the package in {@link PackageInfo#services}.
79 * {@link PackageInfo} flag: return information about
81 * {@link PackageInfo#providers}.
86 * {@link PackageInfo} flag: return information abou
    [all...]

Completed in 185 milliseconds

1 2 3 45 6 7 8 91011>>