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

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/base/
package-info.java 28 * <li>{@link com.google.common.base.Ascii}
29 * <li>{@link com.google.common.base.CaseFormat}
30 * <li>{@link com.google.common.base.CharMatcher}
31 * <li>{@link com.google.common.base.Charsets}
32 * <li>{@link com.google.common.base.Joiner}
33 * <li>{@link com.google.common.base.Splitter}
34 * <li>{@link com.google.common.base.Strings}
40 * <li>{@link com.google.common.base.Function},
41 * {@link com.google.common.base.Functions}
42 * <li>{@link com.google.common.base.Predicate}
    [all...]
  /external/libppp/src/
link.h 26 * $FreeBSD: src/usr.sbin/ppp/link.h,v 1.11.34.1 2010/12/21 17:10:29 kensmith Exp $
40 struct link { struct
46 struct pppThroughput total; /* Link throughput statistics */
47 struct pppThroughput *parent; /* MP link throughput statistics */
61 #define LINK_QUEUES(link) (sizeof (link)->Queue / sizeof (link)->Queue[0])
62 #define LINK_HIGHQ(link) ((link)->Queue + LINK_QUEUES(link) - 1
    [all...]
  /bionic/libc/arch-mips/syscalls/
link.S 4 .globl link
6 .ent link
8 link: label
22 .end link
  /external/markdown/MarkdownTest/Tests_2004/
Links-in-Headers.text-out 5 <h1>A header with a <a href="http://www.link.com">link</a></h1>
7 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
Links-in-Headers.text-res 5 <h1>A header with a <a href="http://www.link.com">link</a></h1>
7 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
Yuri-Links-in-Headers.html 9 <h1>A header with a <a href="http://www.link.com">link</a></h1>
13 <h2>Another with a <a href="http://www.link.com/">link</a></h2>
  /external/markdown/tests/misc/
amp-in-url.html 1 <p><a href="http://www.freewisdom.org/this&amp;that">link</a></p
normalize.txt 2 [Link](http://www.stuff.com/q?x=1&y=2<>)
nested-patterns.html 1 <p><strong><em><a href="http://www.freewisdom.org">link</a></em></strong>
2 <strong><em><a href="http://www.freewisdom.org">link</a></em></strong>
3 <strong><a href="http://www.freewisdom.org"><em>link</em></a></strong>
4 <strong><a href="http://www.freewisdom.org"><em>link</em></a></strong>
5 <strong><a href="http://www.freewisdom.org"><em>link</em></a></strong>
6 <strong><a href="http://www.freewisdom.org"><em>link</em></a></strong>
7 <a href="http://www.freewisdom.org"><strong><em>link</em></strong></a></p
  /system/bluetooth/data/
network.conf 5 # Disable link encryption: default=false
  /frameworks/base/core/java/android/preference/
package.html 9 should be ran as a separate {@link android.app.Activity} that extends
10 the {@link android.preference.PreferenceActivity} class. In the PreferenceActivity, a
11 {@link android.preference.PreferenceScreen} object should be the root element of the layout.
12 The PreferenceScreen contains {@link android.preference.Preference} elements such as a
13 {@link android.preference.CheckBoxPreference}, {@link android.preference.EditTextPreference},
14 {@link android.preference.ListPreference}, {@link android.preference.PreferenceCategory},
15 or {@link android.preference.RingtonePreference}. </p>
17 All settings made for a given {@link android.preference.Preference} will be automatically save
    [all...]
  /external/guava/guava/src/com/google/common/cache/
RemovalCause.java 35 * {@link Cache#invalidate}, {@link Cache#invalidateAll(Iterable)}, {@link Cache#invalidateAll()},
36 * {@link Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}.
47 * result from the user invoking {@link Cache#put}, {@link LoadingCache#refresh}, {@link Map#put},
48 * {@link Map#putAll}, {@link ConcurrentMap#replace(Object, Object)}, o
    [all...]
  /external/junit/src/org/junit/rules/
MethodRule.java 9 * Multiple {@link MethodRule}s can be applied to a test method. The
10 * {@link Statement} that executes the method is passed to each annotated
11 * {@link Rule} in turn, and each may return a substitute or modified
12 * {@link Statement}, which is passed to the next {@link Rule}, if any. For
17 * <li>{@link ErrorCollector}: collect multiple errors in one test method</li>
18 * <li>{@link ExpectedException}: make flexible assertions about thrown exceptions</li>
19 * <li>{@link ExternalResource}: start and stop a server, for example</li>
20 * <li>{@link TemporaryFolder}: create fresh files, and delete after test</li>
21 * <li>{@link TestName}: remember the test name for use during the method</li
    [all...]
TestRule.java 8 * is run and reported. A {@link TestRule} may add additional checks that cause
11 * {@link TestRule}s can do everything that could be done previously with
12 * methods annotated with {@link org.junit.Before},
13 * {@link org.junit.After}, {@link org.junit.BeforeClass}, or
14 * {@link org.junit.AfterClass}, but they are more powerful, and more easily
19 * individual test cases recognize {@link TestRule}s introduced in two different
20 * ways. {@link org.junit.Rule} annotates method-level
21 * {@link TestRule}s, and {@link org.junit.ClassRule}
    [all...]
  /external/guava/guava/src/com/google/common/collect/
package-info.java 25 * <dt>{@link com.google.common.collect.BiMap}
26 * <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of
32 * <dt>{@link com.google.common.collect.Multiset}
33 * <dd>An extension of {@link java.util.Collection} that may contain duplicate
34 * values like a {@link java.util.List}, yet has order-independent equality
35 * like a {@link java.util.Set}. One typical use for a multiset is to
38 * <dt>{@link com.google.common.collect.Multimap}
39 * <dd>A new type, which is similar to {@link java.util.Map}, but may contain
41 * {@link com.google.common.collect.Multimap} are left unspecified and are
44 * <dt>{@link com.google.common.collect.ListMultimap
    [all...]
ForwardingMultiset.java 37 * overriding {@link #add(Object, int)} alone <b>will not</b> change the
38 * behavior of {@link #add(Object)}, which can lead to unexpected behavior. In
104 * A sensible definition of {@link #contains} in terms of {@link #count}. If
105 * you override {@link #count}, you may wish to override {@link #contains} to
115 * A sensible definition of {@link #clear} in terms of the {@code iterator}
116 * method of {@link #entrySet}. If you override {@link #entrySet}, you may
117 * wish to override {@link #clear} to forward to this implementation
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
ValidatorHandler.java 31 * A {@link ValidatorHandler} object is a thread-unsafe, non-reentrant object.
33 * sure that one {@link ValidatorHandler} object is not used from
37 * {@link ValidatorHandler} checks if the SAX events follow
38 * the set of constraints described in the associated {@link Schema},
43 * {@link ValidatorHandler} extends from {@link ContentHandler},
44 * but it refines the underlying {@link ContentHandler} in
50 * Similarly, the user-specified {@link ContentHandler} will receive non-null
53 * <li>Applications must ensure that {@link ValidatorHandler}'s
54 * {@link ContentHandler#startPrefixMapping(String,String)} an
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareCallback.java 22 * The callback class associated with the APIs in {@link GeofenceHardware}
30 * @param transition One of {@link GeofenceHardware#GEOFENCE_ENTERED},
31 * {@link GeofenceHardware#GEOFENCE_EXITED}, {@link GeofenceHardware#GEOFENCE_UNCERTAIN}
45 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
46 * {@link GeofenceHardware#GEOFENCE_ERROR_ID_EXISTS},
47 * {@link GeofenceHardware#GEOFENCE_ERROR_INVALID_TRANSITION},
48 * {@link GeofenceHardware#GEOFENCE_ERROR_TOO_MANY_GEOFENCES},
49 * {@link GeofenceHardware#GEOFENCE_FAILURE}
58 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS}
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
ExecutionUtils.java 20 * Utilities for executing actions, such as {@link RunnableEx}.
54 * as {@link #sleep(int)}.
78 * Runs given {@link RunnableEx} and ignores exceptions.
92 * Runs given {@link RunnableEx} and logs exceptions using {@link DesignerPlugin#log(Throwable)}.
107 * Runs given {@link RunnableEx} and re-throws exceptions using {@link RuntimeException}.
118 * Runs given {@link RunnableEx} and re-throws exceptions using {@link RuntimeException}.
130 * Ensures that {@link Beans#isDesignTime()} returns <code>true</code> and runs give
    [all...]
  /libcore/luni/src/main/java/java/util/
LinkedList.java 27 * LinkedList is an implementation of {@link List}, backed by a doubly-linked list.
35 * probably use {@link ArrayList} if you don't need the queue-like behavior.
46 transient Link<E> voidLink;
48 private static final class Link<ET> {
51 Link<ET> previous, next;
53 Link(ET o, Link<ET> p, Link<ET> n) {
65 Link<ET> link, lastLink field in class:LinkedList.LinkIterator
193 private Link<ET> link; field in class:LinkedList.ReverseLinkIterator
280 Link<E> link = voidLink; local
485 Link<E> link = voidLink.next; local
507 Link<E> link = voidLink; local
559 Link<E> link = voidLink.next; local
592 Link<E> link = voidLink.previous; local
642 Link<E> link = voidLink; local
863 Link<E> link = voidLink; local
925 Link<E> link = voidLink.next; local
956 Link<E> link = voidLink.next; local
982 Link<E> link = voidLink; local
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/sip/
package.html 11 <p>To get started, you need to get an instance of the {@link android.net.sip.SipManager} by
12 calling {@link android.net.sip.SipManager#newInstance newInstance()}.</p>
14 <p>With the {@link android.net.sip.SipManager}, you can initiate SIP audio calls with {@link
15 android.net.sip.SipManager#makeAudioCall makeAudioCall()} and {@link
17 a {@link android.net.sip.SipAudioCall.Listener} that receives callbacks when the state of the
20 <p>Both {@link android.net.sip.SipManager#makeAudioCall makeAudioCall()} also requires two
21 {@link android.net.sip.SipProfile} objects, representing the local device and the peer
22 device. You can create a {@link android.net.sip.SipProfile} using the {@link
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
contenteditable-link.html 18 <div>The behaviour of editable links is controlled by the user default WebKitEditableLinkBehavior. This can be set via a private WebPreference. If the preference is OnlyLiveWithShiftKey, then the link will only be active when the shift key is pressed (WinIE/Firefox behaviour). If the preference is WebKitEditableLinkAlwaysLive or WebKitEditableLinkDefaultBehavior, then the link is always active (Safari 2.0 behaviour). Finally, if the preference is WebKitEditableLinkLiveWhenNotFocused, the link will only be live if the selection before clicking on the link is not in the same editable block as the link.</div>
20 <div>Also, when a link is 'live' it can be dragged as a link, and when the link isn't 'live', dragging a link just performs a normal text selection.
25 <p><a href="about:blank">Test link</a></p
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
SceneGraphVisitorAdapter.java 6 * between the {@link Geometry geometries} and the {@link Node nodes} by
8 * Use by calling {@link Spatial#depthFirstTraversal(com.jme3.scene.SceneGraphVisitor) }
9 * or {@link Spatial#breadthFirstTraversal(com.jme3.scene.SceneGraphVisitor)}.
14 * Called when a {@link Geometry} is visited.
21 * Called when a {@link visit} is visited.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
_package.html 3 <link rel="stylesheet" type="text/css" href="assets/style.css" />
21 <li> {@link com.android.samples.app.HelloWorld Hello World}
22 <li> {@link com.android.samples.app.SaveRestoreState Save &amp; Restore State}
23 <li>{@link com.android.samples.app.PersistentState Persistent State}
24 <li>{@link com.android.samples.app.ReceiveResult Receive Result}
25 <li>{@link com.android.samples.app.Forwarding Forwarding}
31 <li>{@link com.android.samples.app.LocalServiceController Local Service
33 <li>{@link com.android.samples.app.LocalServiceBinding Local Service Binding}
34 <li>{@link com.android.samples.app.RemoteServiceController Remote Service
36 <li>{@link com.android.samples.app.RemoteServiceBinding Remote Servic
    [all...]
  /external/markdown/tests/markdown-test/
auto-links.txt 0 Link: <http://example.com/>.
3 Https link: <https://example.com>
5 Ftp link: <ftp://example.com>

Completed in 2148 milliseconds

12 3 4 5 6 7 8 91011>>