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

1 2

  /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.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.cc 135 HttpAlternateProtocols::PortProtocolPair alternate =
137 if (alternate.protocol == HttpAlternateProtocols::BROKEN)
140 DCHECK_LE(HttpAlternateProtocols::NPN_SPDY_1, alternate.protocol);
142 alternate.protocol);
144 if (alternate.protocol != HttpAlternateProtocols::NPN_SPDY_2)
147 origin.set_port(alternate.port);
  /external/icu4c/layout/
AlternateSubstSubtables.cpp 30 TTGlyphID alternate = SWAPW(alternateSetTable->alternateArray[0]); local
32 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, alternate))) {
  /bionic/libc/arch-x86/string/
swab.S 26 jz L2 # while swaping alternate bytes.
36 jz L4 # while swapping alternate bytes.
  /sdk/layoutlib_api/src/com/android/resources/
ResourceType.java 84 // if there are alternate Xml Names, we test those too
85 for (String alternate : rType.mAlternateXmlNames) {
86 if (alternate.equals(name)) {
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 48 bool alternate = y % checkerSize; local
50 painter.fillRect(x, y, checkerSize / 2, checkerSize / 2, alternate ? color1 : color2);
51 alternate = !alternate;
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 78 * Encode a value with Double Metaphone, optionally using the alternate
82 * @param alternate use alternate encode
85 public String doubleMetaphone(String value, boolean alternate) {
189 return alternate ? result.getAlternate() : result.getPrimary();
233 * are equal, optionally using the alternate value.
237 * @param alternate use the alternate value if <code>true</code>.
243 boolean alternate) {
244 return doubleMetaphone(value1, alternate).equals(doubleMetaphon
1033 private StringBuffer alternate = new StringBuffer(getMaxCodeLen()); field in class:DoubleMetaphone.DoubleMetaphoneResult
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
spdyview.js 72 * with information on each alternate protocol enabled server. Otherwise,
139 * Creates a table printer to print out the list of alternate protocol
146 tablePrinter.addHeaderCell('Alternate Protocol');
  /external/icu4c/test/intltest/
ssearch.cpp 2231 UnicodeString alternate; local
2370 UnicodeString alternate; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 151 boolean alternate = false; // (yes|no) "no"
252 else if (name.equals("alternate"))
258 alternate = token.substring(1, token.length()
  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.cpp 135 String alternate = attrs.get("alternate"); local
136 m_alternate = alternate == "yes";
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLAppletElement02.js 78 The alt attribute specifies the alternate text for user agents not
HTMLAreaElement02.js 78 The alt attribute specifies an alternate text for user agents not
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLAppletElement02.js 78 The alt attribute specifies the alternate text for user agents not
HTMLAreaElement02.js 78 The alt attribute specifies an alternate text for user agents not
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 3 Summary: An alternate posix capabilities library
  /external/webkit/Tools/DumpRenderTree/qt/
fonts.conf 18 Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
  /external/harfbuzz/src/
harfbuzz-gsub-private.h 105 HB_UShort* Alternate; /* array of alternate glyph IDs */
107 Alternate array */
458 HB_AlternateSubst alternate; member in union:HB_GSUB_SubTable_
  /external/libusb-compat/libusb/
usb.h 314 int usb_set_altinterface(usb_dev_handle *dev, int alternate);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactListFragment.java 188 void onItemClicked(Action action, boolean alternate);
QuickContactActivity.java 615 public void onItemClicked(final Action action, final boolean alternate) {
620 startActivity(alternate ? action.getAlternateIntent() : action.getIntent());
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 195 Indent(o, indent) << "<key>alternate</key>";

Completed in 3743 milliseconds

1 2