/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/ |
set-href-attribute-prevents-rebase.js | 87 debug("Protocol attribute, update document base URI without attribute having been set"); 89 a.href = "protocol:"; 91 shouldBe("a.href", "'protocol:'"); 93 debug("Protocol attribute, update document base URI after attribute has been set"); 96 a.protocol = "protocol:"; 98 shouldBe("a.href", "'protocol:'");
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/ |
errno.h | 20 #define EUNATCH 49 /* Protocol driver not attached */ 44 #define EPROTO 71 /* Protocol error */ 64 #define EPROTOTYPE 91 /* Protocol wrong type for socket */ 65 #define ENOPROTOOPT 92 /* Protocol not available */ 66 #define EPROTONOSUPPORT 93 /* Protocol not supported */ 69 #define EPFNOSUPPORT 96 /* Protocol family not supported */ 70 #define EAFNOSUPPORT 97 /* Address family not supported by protocol */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if.h | 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 36 #define IFF_NOARP 0x80 /* no ARP protocol */ 77 #define IF_PROTO_HDLC 0x2000 /* raw HDLC protocol */ 78 #define IF_PROTO_PPP 0x2001 /* PPP protocol */ 79 #define IF_PROTO_CISCO 0x2002 /* Cisco HDLC protocol */ 80 #define IF_PROTO_FR 0x2003 /* Frame Relay protocol */ 131 unsigned int type; /* Type of physical device or protocol */
|
/external/protobuf/vsprojects/ |
readme.txt | 1 This directory contains project files for compiling Protocol Buffers using 2 MSVC. This is not the recommended way to do Protocol Buffer development -- 31 Static linking is now the default for the Protocol Buffer libraries. Due to 56 recommend that you do NOT expose protocol buffer objects in your library's 57 public interface, and that you statically link protocol buffers into your 103 C4251 is of particular note, if you are compiling the Protocol Buffer library 104 as a DLL (see previous section). The protocol buffer library uses templates in 110 Protocol Buffer implementation does not rely on static template members being 113 produced when compiling code which merely uses protocol buffers, meaning you
|
/external/quake/quake/src/QW/qwfwd/ |
qwfwd.c | 104 int connectsock(char *host, char *service, char *protocol)
116 if(pse = getservbyname(service, protocol))
133 /* Map protocol name to protocol number */
134 if((ppe = getprotobyname(protocol)) == 0)
136 fprintf(stderr, "udpred: can't get \"%s\" protocol entry\n", protocol);
140 /* Use protocol to choose a socket type */
141 if(strcmp(protocol, "udp") == 0)
|
/external/apache-http/src/org/apache/http/protocol/ |
ExecutionContext.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ExecutionContext.java $ 32 package org.apache.http.protocol; 35 * {@link HttpContext Context} attribute names for protocol execution.
|
/external/bluetooth/bluez/tools/ |
bccmd.8 | 31 Blue Core Serial Protocol. 34 H4 serial protocol. 37 3WIRE protocol (not implemented).
|
/external/chromium/chrome/browser/safe_browsing/ |
chunk_range.h | 7 // The anti-phishing and anti-malware protocol sends ASCII strings of numbers 9 // Clients of this protocol need to be able to convert back and forth between 55 // Convenience for going from a list of chunks to a string in protocol
|
/external/chromium/chrome/browser/sync/protocol/ |
proto_value_conversions.h | 35 // Utility functions to convert sync protocol buffers to dictionaries. 36 // Each protocol field is mapped to a key of the same name. Repeated 67 // Sub-protocol of PasswordSpecifics.
|
/external/chromium/chrome/browser/sync/syncable/ |
model_type.cc | 10 #include "chrome/browser/sync/protocol/app_specifics.pb.h" 11 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" 12 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" 13 #include "chrome/browser/sync/protocol/extension_specifics.pb.h" 14 #include "chrome/browser/sync/protocol/nigori_specifics.pb.h" 15 #include "chrome/browser/sync/protocol/password_specifics.pb.h" 16 #include "chrome/browser/sync/protocol/preference_specifics.pb.h" 17 #include "chrome/browser/sync/protocol/session_specifics.pb.h" 18 #include "chrome/browser/sync/protocol/sync.pb.h" 19 #include "chrome/browser/sync/protocol/theme_specifics.pb.h [all...] |
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_text_field_unittest.mm | 16 // OCMock wants to mock a concrete class or protocol. This should 17 // provide a correct protocol for newer versions of the SDK, while 20 @protocol MockTextEditingDelegate<NSControlTextEditingDelegate>
|
/external/clang/test/Analysis/ |
CheckNSError.m | 11 @protocol NSObject - (BOOL)isEqual:(id)object; @end 12 @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end 13 @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; @end
|
dead-stores.m | 7 @protocol NSObject - (BOOL)isEqual:(id)object; @end 8 @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end 9 @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; @end
|
/external/clang/test/SemaObjC/ |
ivar-access-tests.m | 85 @protocol NSObject - (BOOL)isEqual:(id)object; 87 @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; 94 @protocol NSAnimatablePropertyContainer
|
/external/e2fsprogs/lib/et/test_cases/ |
heimdal.et | 39 ec RD_AP_VERSION, "Kerberos protocol version mismatch" 47 ec GT_PW_PROT, "Kerberos protocol error" 55 ec INTK_PROT, "Kerberos error: Protocol Error"
|
/external/kernel-headers/original/linux/ |
icmp.h | 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 6 * Definitions for the ICMP protocol. 41 #define ICMP_PROT_UNREACH 2 /* Protocol Unreachable */
|
ip.h | 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 6 * Definitions for the IP protocol. 97 __u8 protocol; member in struct:iphdr
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_generator.h | 0 // Protocol Buffers - Google's data interchange format 32 // Based on original Protocol Buffers design by 49 // header. If you create your own protocol compiler binary and you want
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_generator.h | 0 // Protocol Buffers - Google's data interchange format 32 // Based on original Protocol Buffers design by 49 // own protocol compiler binary and you want it to support Java output, you
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_generator.h | 0 // Protocol Buffers - Google's data interchange format 32 // Based on original Protocol Buffers design by 49 // own protocol compiler binary and you want it to support Java output for the
|
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/ |
set-href-attribute-host-expected.txt | 10 Set default port for another protocol 24 Set host to URL with file: protocol 34 Set host to a URL with tel: protocol
|
/external/webkit/Source/WebCore/websockets/ |
ThreadableWebSocketChannel.cpp | 53 PassRefPtr<ThreadableWebSocketChannel> ThreadableWebSocketChannel::create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) 64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol); 69 return WebSocketChannel::create(context, client, url, protocol);
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebQuotaManager.h | 29 @protocol WebQuotaManager 30 @discussion This protocol is used to view and manipulate a per-origin storage quota. 32 @protocol WebQuotaManager
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebSecurityOriginPrivate.h | 30 @protocol WebQuotaManager; 40 - (NSString *)protocol; 45 // Returns zero if the port is the default port for the protocol, non-zero otherwise.
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebHTMLRepresentation.h | 45 @protocol WebDocumentMarkup; 46 @protocol WebDocumentRepresentation; 47 @protocol WebDocumentSourceRepresentation;
|