HomeSort by relevance Sort by last modified time
    Searched full:link (Results 76 - 100 of 18913) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/dom/beforeload/
link-before-load-expected.txt 1 This page tests the beforeload event on link elements. You should see the word PASS below underneath a green square.
remove-link-in-beforeload-listener-expected.txt 1 This page tests that you can correctly remove a stylesheet link element in its beforeload listener without causing a crash.
  /external/webkit/LayoutTests/fast/encoding/resources/
css-cached-bom-frame.html 0 <link rel=stylesheet href=utf-16-little-endian.css>
  /frameworks/base/core/java/android/content/
package.html 8 <dt>Content sharing ({@link android.content})</dt>
11 <li>{@link android.content.ContentProvider} and {@link android.content.ContentResolver}
13 <li>{@link android.content.Intent} and {@link android.content.IntentFilter}, for delivering
19 <dt>Package management ({@link android.content.pm})</dt>
22 accessing this information is {@link android.content.pm.PackageManager}.</dd>
24 <dt>Resource management ({@link android.content.res})</dt>
26 media, and device configuration details. The most important class for accessing this data is {@link
  /packages/apps/Email/src/com/android/email/activity/
FragmentInstallable.java 23 * Interface for {@link Activity} that can "install" fragments.
27 * Called when a {@link Fragment} wants to be installed to the host activity.
29 * Fragments which use this MUST call this from {@link Fragment#onActivityCreated} using
30 * {@link UiUtilities#installFragment}.
32 * This means a host {@link Activity} can safely assume a passed {@link Fragment} is already
38 * Called when a {@link Fragment} wants to be uninstalled from the host activity.
40 * Fragments which use this MUST call this from {@link Fragment#onDestroyView} using
41 * {@link UiUtilities#uninstallFragment}.
  /external/bison/lib/
fd-hook.c 29 /* The first and last link in the doubly linked list.
71 register_fd_hook (close_hook_fn close_hook, ioctl_hook_fn ioctl_hook, struct fd_hook *link)
78 if (link->private_next == NULL && link->private_prev == NULL)
80 /* Add the link to the doubly linked list. */
81 link->private_next = anchor.private_next;
82 link->private_prev = &anchor;
83 link->private_close_fn = close_hook;
84 link->private_ioctl_fn = ioctl_hook;
85 anchor.private_next->private_prev = link;
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractCheckedFuture.java 27 * A delegating wrapper around a {@link ListenableFuture} that adds support for
28 * the {@link #checkedGet()} and {@link #checkedGet(long, TimeUnit)} methods.
45 * Translates from an {@link InterruptedException},
46 * {@link CancellationException} or {@link ExecutionException} thrown by
52 * the exception. If an implementation of {@link #mapException(Exception)}
54 * {@link Thread#interrupted()}.
65 * <p>This implementation calls {@link #get()} and maps that method's standard
66 * exceptions to instances of type {@code X} using {@link #mapException}
    [all...]
  /frameworks/base/core/java/android/speech/tts/
SynthesisCallback.java 22 * {@link #start}, then {@link #audioAvailable} until all audio has been provided, then finally
23 * {@link #done}.
25 * {@link #error} can be called at any stage in the synthesis process to
27 * to {@link #done}, it might be discarded.
29 * After {@link #start} been called, {@link #done} must be called regardless of errors.
34 * {@link #audioAvailable}. Calls to {@link #audioAvailable} with data lengths
44 * while in {@link TextToSpeechService#onSynthesizeText}
    [all...]
  /frameworks/base/core/java/android/nfc/tech/
TagTechnology.java 25 * {@link TagTechnology} is an interface to a technology in a {@link Tag}.
27 * Obtain a {@link TagTechnology} implementation by calling the static method <code>get()</code>
32 * {@link TagTechnology} implementations provide access to these different
34 * specification (for example {@link NfcA}, {@link IsoDep}, others map to
35 * pseudo-technologies or capabilities (for example {@link Ndef}, {@link NdefFormatable}).
38 * {@link TagTechnology} implementations.
40 * <li>{@link NfcA} (also known as ISO 14443-3A
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingCollection.java 36 * overriding {@link #add} alone <b>will not</b> change the behavior of {@link
124 * A sensible definition of {@link #contains} in terms of {@link #iterator}.
125 * If you override {@link #iterator}, you may wish to override {@link
135 * A sensible definition of {@link #containsAll} in terms of {@link #contains}
136 * . If you override {@link #contains}, you may wish to override {@link
    [all...]
RowSortedTable.java 30 * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link
31 * #rowMap} method returns a {@link SortedMap}, instead of the {@link Set} and
32 * {@link Map} specified by the {@link Table} interface.
43 * <p>This method returns a {@link SortedSet}, instead of the {@code Set}
44 * specified in the {@link Table} interface.
51 * <p>This method returns a {@link SortedMap}, instead of the {@code Map
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyEditor.java 25 * Abstract editor for {@link Property}.
37 * @return the instance of {@link PropertyEditorPresentation}.
44 * Paints given {@link Property} given rectangle <code>(x, y, width, height)</code> of {@link GC}.
55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation
56 * happens when user selects property in {@link PropertyTable}. {@link PropertyEditor} should
57 * create here any {@link Control}'s required to edit {@link Property}
    [all...]
  /external/mockito/src/org/mockito/stubbing/
Stubber.java 30 * {@link Mockito#doThrow(Throwable)}
32 * {@link Mockito#doAnswer(Answer)}
34 * {@link Mockito#doNothing()}
36 * {@link Mockito#doReturn(Object)}
39 * See examples in javadoc for {@link Mockito}
58 * {@link Mockito#doThrow(Throwable)}
60 * {@link Mockito#doAnswer(Answer)}
62 * {@link Mockito#doNothing()}
64 * {@link Mockito#doReturn(Object)}
67 * See examples in javadoc for {@link Mockito}
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
package-info.java 28 * <li>{@link com.google.common.primitives.Primitives}
34 * <li>{@link com.google.common.primitives.Booleans}
35 * <li>{@link com.google.common.primitives.Bytes}
37 * <li>{@link com.google.common.primitives.SignedBytes}
38 * <li>{@link com.google.common.primitives.UnsignedBytes}
40 * <li>{@link com.google.common.primitives.Chars}
41 * <li>{@link com.google.common.primitives.Doubles}
42 * <li>{@link com.google.common.primitives.Floats}
43 * <li>{@link com.google.common.primitives.Ints}
45 * <li>{@link com.google.common.primitives.UnsignedInts
    [all...]
  /external/junit/src/org/junit/
ClassRule.java 10 * static, and a subtype of {@link org.junit.rules.TestRule}.
11 * The {@link org.junit.runners.model.Statement} passed
12 * to the {@link org.junit.rules.TestRule} will run any {@link BeforeClass} methods,
15 * {@link org.junit.runners.Suite}), and finally any {@link AfterClass} methods.
17 * The statement passed to the {@link org.junit.rules.TestRule} will never throw an exception,
18 * and throwing an exception from the {@link org.junit.rules.TestRule} will result in undefined
19 * behavior. This means that some {@link org.junit.rules.TestRule}s, such as
20 * {@link org.junit.rules.ErrorCollector},
    [all...]
  /cts/libs/json/src/com/android/json/stream/
JsonToken.java 25 * The opening of a JSON array. Written using {@link JsonWriter#beginObject}
26 * and read using {@link JsonReader#beginObject}.
31 * The closing of a JSON array. Written using {@link JsonWriter#endArray}
32 * and read using {@link JsonReader#endArray}.
37 * The opening of a JSON object. Written using {@link JsonWriter#beginObject}
38 * and read using {@link JsonReader#beginObject}.
43 * The closing of a JSON object. Written using {@link JsonWriter#endObject}
44 * and read using {@link JsonReader#endObject}.
50 * their values. Written using {@link JsonWriter#name} and read using {@link
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
IteratorFeature.java 26 * A method supported by implementations of the {@link Iterator} or
27 * {@link ListIterator} interface.
35 * Support for {@link Iterator#remove()}.
39 * Support for {@link ListIterator#add(Object)}; ignored for plain
40 * {@link Iterator} implementations.
44 * Support for {@link ListIterator#set(Object)}; ignored for plain
45 * {@link Iterator} implementations.
50 * A set containing none of the optional features of the {@link Iterator} or
51 * {@link ListIterator} interfaces.
57 * A set containing all of the optional features of the {@link Iterator} an
    [all...]
  /frameworks/base/core/java/android/util/
JsonToken.java 25 * The opening of a JSON array. Written using {@link JsonWriter#beginObject}
26 * and read using {@link JsonReader#beginObject}.
31 * The closing of a JSON array. Written using {@link JsonWriter#endArray}
32 * and read using {@link JsonReader#endArray}.
37 * The opening of a JSON object. Written using {@link JsonWriter#beginObject}
38 * and read using {@link JsonReader#beginObject}.
43 * The closing of a JSON object. Written using {@link JsonWriter#endObject}
44 * and read using {@link JsonReader#endObject}.
50 * their values. Written using {@link JsonWriter#name} and read using {@link
    [all...]
  /frameworks/base/core/java/android/content/pm/
ActivityInfo.java 39 * the {@link android.R.attr#launchMode} attribute.
44 * the {@link android.R.attr#launchMode} attribute.
49 * the {@link android.R.attr#launchMode} attribute.
54 * the {@link android.R.attr#launchMode} attribute.
59 * {@link android.R.attr#launchMode} attribute, one of
60 * {@link #LAUNCH_MULTIPLE},
61 * {@link #LAUNCH_SINGLE_TOP}, {@link #LAUNCH_SINGLE_TASK}, or
62 * {@link #LAUNCH_SINGLE_INSTANCE}.
76 * {@link android.R.attr#taskAffinity} attribute
    [all...]
  /frameworks/base/docs/html/training/run-background-service/
report-status.jd 38 the request in an {@link android.app.Activity} object's UI. The recommended way to send and
39 receive status is to use a {@link android.support.v4.content.LocalBroadcastManager}, which
40 limits broadcast {@link android.content.Intent} objects to components in your own app.
45 To send the status of a work request in an {@link android.app.IntentService} to other
46 components, first create an {@link android.content.Intent} that contains the status in its
48 {@link android.content.Intent}.
51 Next, send the {@link android.content.Intent} by calling
52 {@link android.support.v4.content.LocalBroadcastManager#sendBroadcast
53 LocalBroadcastManager.sendBroadcast()}. This sends the {@link android.content.Intent} to any
55 To get an instance of {@link android.support.v4.content.LocalBroadcastManager}, cal
    [all...]
  /bionic/libc/arch-arm/syscalls/
link.S 6 ENTRY(link) function
15 END(link)
  /docs/source.android.com/templates/
includes 3 <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
6 <link href="/assets/main.css" rel="stylesheet" type="text/css" />
  /external/compiler-rt/cmake/Modules/
CompilerRTLink.cmake 3 # Link a shared library with just-built Clang.
6 # LINKFLAGS <list of link flags>
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetNotFoundException.java 4 * <code>AssetNotFoundException</code> is thrown when the {@link AssetManager}
6 * {@link AssetLocator}s.
  /external/junit/src/org/junit/internal/runners/
FailedBefore.java 9 * {@link BlockJUnit4ClassRunner} in place of {@link JUnit4ClassRunner}.

Completed in 769 milliseconds

1 2 34 5 6 7 8 91011>>