HomeSort by relevance Sort by last modified time
    Searched full:alternate (Results 1 - 25 of 1425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/068-classloader/src/
InaccessibleBase.java 4 * Non-public base class, inaccessible from alternate class loader.
InaccessibleInterface.java 4 * Non-public interface class, inaccessible from alternate class loader.
  /external/chromium/net/http/
http_alternate_protocols_unittest.cc 6 // of which HTTP HostPortPairs have an alternate protocol that can be used
23 const HttpAlternateProtocols::PortProtocolPair alternate = local
25 EXPECT_EQ(443, alternate.port);
26 EXPECT_EQ(HttpAlternateProtocols::NPN_SPDY_1, alternate.protocol);
34 HttpAlternateProtocols::PortProtocolPair alternate = local
36 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol);
42 alternate = alternate_protocols.GetAlternateProtocolFor(test_host_port_pair);
43 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol)
48 // Test forced alternate protocols.
61 HttpAlternateProtocols::PortProtocolPair alternate local
    [all...]
http_alternate_protocols.h 6 // of which HTTP HostPortPairs have an alternate protocol that can be used
28 BROKEN, // The alternate protocol is known to be broken.
51 // Reports whether or not we have received Alternate-Protocol for
61 // SetAlternateProtocolFor() will ignore the request if the alternate protocol
67 // Marks the alternate protocol as broken. Once marked broken, any further
68 // attempts to set the alternate protocol for |http_host_port_pair| will fail.
74 // If we don't have an alternate protocol in the map for any given host/port
84 // The forced alternate protocol. If not-null, there is a protocol being
http_alternate_protocols.cc 13 const char HttpAlternateProtocols::kHeader[] = "Alternate-Protocol";
70 // We must be forcing an alternate.
91 PortProtocolPair alternate; local
92 alternate.port = alternate_port;
93 alternate.protocol = alternate_protocol;
99 DVLOG(1) << "Ignore alternate protocol since it's known to be broken.";
103 if (alternate_protocol != BROKEN && !existing_alternate.Equals(alternate)) {
104 LOG(WARNING) << "Changing the alternate protocol for: "
114 protocol_map_[http_host_port_pair] = alternate;
http_stream_factory_impl_job.h 56 // Marks this Job as the "alternate" job, from Alternate-Protocol. Tracks the
57 // original url so we can mark the Alternate-Protocol as broken if
90 // Note that when Alternate-Protocol says we can connect to an alternate
92 // the original protocol, or speaking the alternate protocol (currently,
93 // only npn-spdy) over an alternate port. For a cold page load, the http
95 // Alternate-Protocol header will already be warm. So, blocking the next
220 // If this is a Job for an "Alternate-Protocol", then this will be non-NULL
  /external/chromium/chrome/browser/ui/cocoa/
objc_method_swizzle.mm 34 Method alternate = GetImplementedInstanceMethod(aClass, alternateSelector);
36 DCHECK(alternate);
37 if (!original || !alternate) {
43 const char* alternateTypes = method_getTypeEncoding(alternate);
54 method_exchangeImplementations(original, alternate);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasAlternateSelection.java 22 * Information for the current alternate selection, i.e. the possible selected items
31 * Creates a new alternate selection based on the given originating view and the
32 * given list of alternate views. Both cannot be null.
42 /** Returns the list of alternate views. Cannot be null. */
53 * Returns the current alternate view to select.
62 * This loops through the alternate views.
  /external/libcap-ng/libcap-ng-0.7/src/
libcap-ng.pc.in 7 Description: An alternate posix capabilities library.
  /external/icu4c/layout/
AlternateSubstSubtables.cpp 30 TTGlyphID alternate = SWAPW(alternateSetTable->alternateArray[0]); local
32 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, alternate))) {
  /external/webkit/Source/WebCore/manual-tests/
transition-accelerated.html 15 -webkit-animation: slow 2s infinite linear alternate;
19 -webkit-animation: fast 2s infinite linear alternate;
animate-none.html 17 -webkit-animation-direction: alternate;
36 -webkit-animation-direction: alternate;
55 -webkit-animation-direction: alternate;
74 -webkit-animation-direction: alternate;
93 -webkit-animation-direction: alternate;
103 -webkit-animation-direction: alternate;
113 -webkit-animation-direction: alternate, alternate;
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java 35 /** Returns an icon that can be clicked for the alternate action. */
38 /** Returns the content description of the icon for the alternate action. */
44 /** Build an {@link Intent} that will perform the alternate action. */
  /external/e2fsprogs/tests/f_crashdisk/
expect.1 7 is corrupt, and you might try running e2fsck with an alternate superblock:
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
customTest.xml.template 10 <!--copy in the properties file for testing with alternate vm args-->
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/
webkit 13 alternate
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 111 * Returns the alternate flags for this configuration. Corresponds to
343 State alternate = getNextDeviceState(state); local
345 return alternate;
403 * @param alternate if true, alternate the inherited value
405 public void setAlternateLocale(boolean alternate) {
421 * @param alternate if true, alternate the inherited value
423 public void setAlternateTarget(boolean alternate) {
439 * @param alternate if true, alternate the inherited valu
    [all...]
  /external/harfbuzz/src/
harfbuzz-gsub.h 51 /* A pointer to a function which selects the alternate glyph. `pos' is
69 /* the next two fields are used for an alternate substitution callback
70 function to select the proper alternate glyph. */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gsub.h 51 /* A pointer to a function which selects the alternate glyph. `pos' is
69 /* the next two fields are used for an alternate substitution callback
70 function to select the proper alternate glyph. */
  /external/skia/gm/
shaderbounds.cpp 12 static SkShader* MakeLinear(SkScalar width, SkScalar height, bool alternate) {
15 if (alternate) {
29 bool alternate);
  /libcore/luni/src/main/java/java/util/
FormattableFlags.java 52 * Denotes the output is to be formatted in an alternate form. The definition
53 * of the alternate form is determined by the {@code Formattable}.
57 public static final int ALTERNATE = 4;
  /dalvik/tests/069-field-type/src/
Main.java 27 /* for fun, verify that it's the "alternate" type */
  /development/samples/ActionBarCompat/res/values/
strings.xml 19 <string name="alternate_title">An alternate title that is long</string>
  /external/clang/test/SemaObjC/
protocol-implementation-inherited.m 34 // alternate inherited protocol.
  /external/e2fsprogs/
e2fsprogs.lsm 14 Alternate-site:

Completed in 5161 milliseconds

1 2 3 4 5 6 7 8 91011>>