/external/webkit/Source/WebCore/manual-tests/ |
goBack-blank-tab-page.html | 4 Link to open in a tab</a> 9 You need to open the above link in a new tab. In the opened page, just click on the link : if the webkit doesn't crash, the test has succeed. 17 When you click on the above link, one page (with _blank target) is loaded and this page will open a link and go back.
|
/frameworks/base/core/java/android/accessibilityservice/ |
package.html | 8 An {@link android.accessibilityservice.AccessibilityService} runs in the background and 9 receives callbacks by the system when {@link android.view.accessibility.AccessibilityEvent}s 16 An {@link android.accessibilityservice.AccessibilityServiceInfo} describes an 17 {@link android.accessibilityservice.AccessibilityService}. The system notifies an 18 AccessibilityService for {@link android.view.accessibility.AccessibilityEvent}s
|
/frameworks/base/docs/html/training/run-background-service/ |
send-request.jd | 28 The previous lesson showed you how to create an {@link android.app.IntentService} class. This 29 lesson shows you how to trigger the {@link android.app.IntentService} to run an operation by 30 sending it an {@link android.content.Intent}. This {@link android.content.Intent} can 31 contain optionally contain data for the {@link android.app.IntentService} to process. You can 32 send an {@link android.content.Intent} to an {@link android.app.IntentService} from any point 33 in an {@link android.app.Activity} or {@link android.app.Fragment} 37 To create a work request and send it to an {@link android.app.IntentService}, create a [all...] |
/frameworks/base/media/mca/effect/java/android/media/effect/ |
package.html | 13 <li>They must be bound to a {@link android.opengl.GLES20#GL_TEXTURE_2D} texture image</li> 17 <p>An {@link android.media.effect.Effect} object defines a single media effect that you can apply to 18 an image frame. The basic workflow to create an {@link android.media.effect.Effect} is:</p> 21 <li>Call {@link android.media.effect.EffectContext#createWithCurrentGlContext 23 <li>Use the returned {@link android.media.effect.EffectContext} to call {@link 25 of {@link android.media.effect.EffectFactory}.</li> 26 <li>Call {@link android.media.effect.EffectFactory#createEffect createEffect()}, passing it an 27 effect name from @link android.media.effect.EffectFactory}, such as {@link [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
package.html | 13 The most critical classes are the {@link com.jme3.renderer.Renderer}, 15 {@link com.jme3.renderer.RenderManager} class, which provides the high-level 20 <li>The {@link com.jme3.renderer.Camera} is used to specify the point-of-view 22 <li>The {@link com.jme3.renderer.ViewPort} is the 23 aggregation of a Camera and a set of {@link com.jme3.scene.Spatial scenes} 25 <li>The {@link com.jme3.renderer.Caps} class contains renderer capabilities 28 <li>The {@link com.jme3.renderer.Statistics} class is updated in real time 31 <li>The {@link com.jme3.renderer.GLObjectManager} and {@link com.jme3.renderer.GLObject} classes 32 provide a link between the renderer's native objects and Java's garbage collected objects [all...] |
/frameworks/base/core/java/android/nfc/ |
package.html | 13 <dt>{@link android.nfc.NfcManager}</dt> 14 <dd>This is the high level manager, used to obtain this device's {@link android.nfc.NfcAdapter}. You can 15 acquire an instance using {@link android.content.Context#getSystemService}.</dd> 16 <dt>{@link android.nfc.NfcAdapter}</dt> 18 operations. You can acquire an instance with {@link android.nfc.NfcManager#getDefaultAdapter}, or 19 {@link android.nfc.NfcAdapter#getDefaultAdapter(android.content.Context)}.</dd> 20 <dt>{@link android.nfc.NdefMessage}</dt> 23 messages from an {@link android.nfc.NfcAdapter#ACTION_TAG_DISCOVERED} intent.</dd> 24 <dt>{@link android.nfc.NdefRecord}</dt> 25 <dd>Represents a record, which is delivered in a {@link android.nfc.NdefMessage} and describes th [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ControlPoint.java | 28 * A {@link ControlPoint} is a coordinate in the canvas control which corresponds 43 * Constructs a new {@link ControlPoint} from the given event. The event 44 * must be from a {@link MouseListener} associated with the 45 * {@link LayoutCanvas} such that the {@link MouseEvent#x} and 46 * {@link MouseEvent#y} fields are relative to the canvas. 48 * @param canvas The {@link LayoutCanvas} this point is within. 49 * @param event The mouse event to construct the {@link ControlPoint} 51 * @return A {@link ControlPoint} which corresponds to the given 52 * {@link MouseEvent} [all...] |
LayoutPoint.java | 27 * A {@link LayoutPoint} is a coordinate in the Android canvas (in other words, 42 * Constructs a new {@link LayoutPoint} from the given event. The event 43 * must be from a {@link MouseListener} associated with the 44 * {@link LayoutCanvas} such that the {@link MouseEvent#x} and 45 * {@link MouseEvent#y} fields are relative to the canvas. 47 * @param canvas The {@link LayoutCanvas} this point is within. 48 * @param event The mouse event to construct the {@link LayoutPoint} 50 * @return A {@link LayoutPoint} which corresponds to the given 51 * {@link MouseEvent} [all...] |
/external/guava/guava/src/com/google/common/collect/ |
SetMultimap.java | 31 * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods 32 * each return a {@link Set} of values, while {@link #entries} returns a {@code 34 * the map returned by {@link #asMap} has {@code Set} values. 45 * method returns a {@link Set}, instead of the {@link java.util.Collection} 46 * specified in the {@link Multimap} interface. 55 * method returns a {@link Set}, instead of the {@link java.util.Collection [all...] |
/external/chromium-trace/trace-viewer/src/ |
about_tracing.html | 35 <link rel="stylesheet" href="tracks/track.css"> 36 <link rel="stylesheet" href="tracks/canvas_based_track.css"> 37 <link rel="stylesheet" href="tracks/slice_track.css"> 38 <link rel="stylesheet" href="tracks/counter_track.css"> 39 <link rel="stylesheet" href="tracks/thread_track.css"> 40 <link rel="stylesheet" href="tracks/model_track.css"> 41 <link rel="stylesheet" href="tracks/ruler_track.css"> 42 <link rel="stylesheet" href="timeline_track_view.css"> 43 <link rel="stylesheet" href="timeline_analysis_view.css"> 44 <link rel="stylesheet" href="overlay.css" [all...] |
/frameworks/base/core/java/android/view/accessibility/ |
package.html | 8 {@link android.view.accessibility.AccessibilityEvent}s are sent by the system when 10 {@link android.widget.Button} is clicked, a {@link android.view.View} is focused, etc. 13 {@link android.view.accessibility.AccessibilityRecord} contains information 14 about state change of its source {@link android.view.View}. When a view fires 17 providing more context to {@link android.accessibilityservice.AccessibilityService}s. 22 {@link android.view.accessibility.AccessibilityNodeInfo} represents a node of the 24 of view of an {@link android.accessibilityservice.AccessibilityService} a window content is 30 {@link android.view.accessibility.AccessibilityManager} is a system level service that 31 serves as an event dispatch for {@link android.view.accessibility.AccessibilityEvent}s [all...] |
/frameworks/base/docs/html/reference/ |
gcm_lists.js | 2 { id:0, label:"com.google.android.gcm", link:"reference/com/google/android/gcm/package-summary.html", type:"package", deprecated:"false" }, 3 { id:1, label:"com.google.android.gcm.GCMBaseIntentService", link:"reference/com/google/android/gcm/GCMBaseIntentService.html", type:"class", deprecated:"false" }, 4 { id:2, label:"com.google.android.gcm.GCMBroadcastReceiver", link:"reference/com/google/android/gcm/GCMBroadcastReceiver.html", type:"class", deprecated:"false" }, 5 { id:3, label:"com.google.android.gcm.GCMConstants", link:"reference/com/google/android/gcm/GCMConstants.html", type:"class", deprecated:"false" }, 6 { id:4, label:"com.google.android.gcm.GCMRegistrar", link:"reference/com/google/android/gcm/GCMRegistrar.html", type:"class", deprecated:"false" }, 7 { id:5, label:"com.google.android.gcm.server", link:"reference/com/google/android/gcm/server/package-summary.html", type:"package", deprecated:"false" }, 8 { id:6, label:"com.google.android.gcm.server.Constants", link:"reference/com/google/android/gcm/server/Constants.html", type:"class", deprecated:"false" }, 9 { id:7, label:"com.google.android.gcm.server.InvalidRequestException", link:"reference/com/google/android/gcm/server/InvalidRequestException.html", type:"class", deprecated:"false" }, 10 { id:8, label:"com.google.android.gcm.server.Message", link:"reference/com/google/android/gcm/server/Message.html", type:"class", deprecated:"false" }, 11 { id:9, label:"com.google.android.gcm.server.Message.Builder", link:"reference/com/google/android/gcm/server/Message.Builder.html", type:"class", deprecated:"false" } [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
ProcessorBase.java | 25 * vCard or exports a vCard). Expected to be used with {@link ExecutorService}. 27 * This instance starts itself with {@link #run()} method, and can be cancelled with 28 * {@link #cancel(boolean)}. Users can check the processor's status using {@link #isCancelled()} 29 * and {@link #isDone()} asynchronously. 31 * {@link #get()} and {@link #get(long, TimeUnit)}, which are form {@link Future}, aren't 32 * supported and {@link UnsupportedOperationException} will be just thrown when they are called. 37 * @return the type of the processor. Must be {@link VCardService#TYPE_IMPORT} o [all...] |
/sdk/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/ |
LibActivityTest.java | 26 * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}. 27 * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically 29 * {@link android.test.InstrumentationTestCase}, which provides 31 * touch events. See {@link #sendKeys}. 33 * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s 35 * user interface. When run via a {@link android.test.InstrumentationTestRunner}, 36 * the necessary {@link android.app.Instrumentation} will be injected for you to 37 * user via {@link #getInstrumentation} in your tests [all...] |
/sdk/testapps/testProjectTest/testlib/src/com/android/tests/testprojecttest/lib/ |
LibActivityTest.java | 26 * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}. 27 * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically 29 * {@link android.test.InstrumentationTestCase}, which provides 31 * touch events. See {@link #sendKeys}. 33 * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s 35 * user interface. When run via a {@link android.test.InstrumentationTestRunner}, 36 * the necessary {@link android.app.Instrumentation} will be injected for you to 37 * user via {@link #getInstrumentation} in your tests [all...] |
/frameworks/base/docs/html/training/load-data-background/ |
handle-results.jd | 30 {@link android.support.v4.content.CursorLoader} in your implementation of 31 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onCreateLoader 33 {@link android.app.Activity} or {@link android.support.v4.app.FragmentActivity} in your 34 implementation of {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished 36 {@link android.database.Cursor} containing the query results. You can use this object to 41 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onCreateLoader onCreateLoader()} and 42 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoadFinished onLoadFinished()}, 44 {@link android.support.v4.app.LoaderManager.LoaderCallbacks#onLoaderReset onLoaderReset()}. 45 This method is invoked when {@link android.support.v4.content.CursorLoader} detect [all...] |
setup-loader.jd | 32 A {@link android.support.v4.content.CursorLoader} runs an asynchronous query in the background 33 against a {@link android.content.ContentProvider}, and returns the results to the 34 {@link android.app.Activity} or {@link android.support.v4.app.FragmentActivity} from which it 35 was called. This allows the {@link android.app.Activity} or 36 {@link android.support.v4.app.FragmentActivity} to continue to interact with the user while the 41 To use a {@link android.support.v4.content.CursorLoader} with an 42 {@link android.app.Activity} or {@link android.support.v4.app.FragmentActivity}, use the 43 {@link android.support.v4.app.LoaderManager.LoaderCallbacks LoaderCallbacks<Cursor> [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
IsoDep.java | 28 * Provides access to ISO-DEP (ISO 14443-4) properties and I/O operations on a {@link Tag}. 30 * <p>Acquire an {@link IsoDep} object using {@link #get}. 31 * <p>The primary ISO-DEP I/O operation is {@link #transceive}. Applications must 32 * implement their own protocol stack on top of {@link #transceive}. 33 * <p>Tags that enumerate the {@link IsoDep} technology in {@link Tag#getTechList} 35 * {@link NfcA} or {@link NfcB} (since IsoDep builds on top of either of these). 38 * require the {@link android.Manifest.permission#NFC} permission [all...] |
/frameworks/base/core/java/android/speech/ |
RecognizerResultsIntent.java | 31 * The standard behavior here for someone receiving an {@link #ACTION_VOICE_SEARCH_RESULTS} is to 32 * first retrieve the list of {@link #EXTRA_VOICE_SEARCH_RESULT_STRINGS}, and use any provided 33 * HTML for that result in {@link #EXTRA_VOICE_SEARCH_RESULT_HTML}, if available, to display 35 * {@link #EXTRA_VOICE_SEARCH_RESULT_URLS} should be used. And if even that is not available, 48 * {@link #EXTRA_VOICE_SEARCH_RESULT_STRINGS}, and optionally but recommended, 49 * {@link #EXTRA_VOICE_SEARCH_RESULT_URLS}, and sometimes 50 * {@link #EXTRA_VOICE_SEARCH_RESULT_HTML} and 51 * {@link #EXTRA_VOICE_SEARCH_RESULT_HTML_BASE_URLS}. 54 * {@link #EXTRA_VOICE_SEARCH_RESULT_STRINGS} should be accompanied by a url to use for 55 * searching based on that string at index N of {@link #EXTRA_VOICE_SEARCH_RESULT_URLS} [all...] |
/external/llvm/test/CodeGen/X86/ |
2009-12-11-TLSNoRedZone.ll | 7 %link = type { %0* } 8 %test = type { i32, %link } 38 %r1 = load %link** bitcast ([1 x i64]* @link_ptr to %link**), align 8 ; <%link*> [#uses=1] 41 %r4 = inttoptr i64 %r3 to %link** ; <%link**> [#uses=1] 42 %r5 = getelementptr %link** %r4, i64 1 ; <%link**> [#uses=1] 43 store %link* %r1, %link** %r5, align [all...] |
/frameworks/base/docs/html/training/keyboard-input/ |
commands.jd | 20 <p>When the user gives focus to an editable text view such as an {@link android.widget.EditText} 24 from the {@link android.view.KeyEvent.Callback} interface, such as {@link 25 android.view.KeyEvent.Callback#onKeyDown onKeyDown()} and {@link 28 <p>Both the {@link 29 android.app.Activity} and {@link android.view.View} class implement the 30 {@link android.view.KeyEvent.Callback} interface, so you 34 <p class="note"><strong>Note:</strong> When handling keyboard events with the {@link 42 <p>To handle an individual key press, implement {@link 43 android.app.Activity#onKeyDown onKeyDown()} or {@link [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/ |
package.html | 11 for reading from {@link com.jme3.scene.mesh.IndexBuffer index buffers}. 12 Several implementations are provided of the {@link com.jme3.scene.mesh.IndexBuffer} 15 <li>{@link com.jme3.scene.mesh.IndexByteBuffer} - For reading 8-bit index buffers</li> 16 <li>{@link com.jme3.scene.mesh.IndexShortBuffer} - For reading 16-bit index buffers</li> 17 <li>{@link com.jme3.scene.mesh.IndexIntBuffer} - For reading 32-bit index buffers</li> 18 <li>{@link com.jme3.scene.mesh.VirtualIndexBuffer} - For reading "virtual indices", for 20 <li>{@link com.jme3.scene.mesh.WrappedIndexBuffer} - For converting from
|
/frameworks/base/core/java/android/database/ |
DataSetObserver.java | 21 * that are observed are {@link Cursor}s or {@link android.widget.Adapter}s. 27 * most likely through a call to {@link Cursor#requery()} on a {@link Cursor}. 35 * most likely through a call to {@link Cursor#deactivate()} or {@link Cursor#close()} on a 36 * {@link Cursor}.
|
/frameworks/base/docs/html-intl/ja/training/monitoring-device-state/ |
connectivity-monitoring.jd | 3 parent.link=index.html 8 previous.link=docking-monitoring.html 10 next.link=manifest-receivers.html 35 <p>{@link android.net.ConnectivityManager} ?????????????????????????????????????????????????????????????</p> 40 <p>?????????????????????????????? ????????????????????????????????????????{@link android.net.ConnectivityManager} ??????????????????????????????????????????????????????????</p> 64 <p>??????????????{@link android.net.ConnectivityManager} ???? {@link android.net.ConnectivityManager#CONNECTIVITY_ACTION}?{@code "android.net.conn.CONNECTIVITY_CHANGE"}???????????????????????????????????????? ?????????????????????????????????????????????????????????????????</p>
|
/frameworks/base/docs/html-intl/zh-cn/training/monitoring-device-state/ |
connectivity-monitoring.jd | 3 parent.link=index.html 8 previous.link=docking-monitoring.html 10 next.link=manifest-receivers.html 35 <p>????? {@link android.net.ConnectivityManager} ?????????????????????????????????</p> 40 <p>???????????????????????????????????????? {@link android.net.ConnectivityManager} ?????????????????????</p> 64 <p>??????????????{@link android.net.ConnectivityManager} ???? {@link android.net.ConnectivityManager#CONNECTIVITY_ACTION} ({@code "android.net.conn.CONNECTIVITY_CHANGE"}) ??????????????????????????????????????????</p>
|