Searched refs:type (Results 1 - 25 of 7962) sorted by relevance

1234567891011>>

/external/chromium/net/base/
H A Dconnection_type_histograms.cc17 // of that type during that session. In the second group (counter2), each
18 // counter is the number of connections of that type the user has seen during
23 void UpdateConnectionTypeHistograms(ConnectionType type) { argument
27 if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) {
28 if (!had_connection_type[type]) {
29 had_connection_type[type] = true;
31 type, NUM_OF_CONNECTION_TYPES);
35 type, NUM_OF_CONNECTION_TYPES);
37 NOTREACHED(); // Someone's logging an invalid type!
[all...]
/external/chromium/net/ftp/
H A Dftp_server_type_histograms.cc17 // seen an FTP server of a given type during that session. In the second
18 // histogram we tally the number of transactions with FTP server of a given type
20 void UpdateFtpServerTypeHistograms(FtpServerType type) { argument
22 if (type >= 0 && type < NUM_OF_SERVER_TYPES) {
23 if (!had_server_type[type]) {
24 had_server_type[type] = true;
26 type, NUM_OF_SERVER_TYPES);
30 type, NUM_OF_SERVER_TYPES);
/external/clang/test/CXX/temp/temp.param/
H A Dp14.cpp5 template<typename T = typename T::type> struct X; // expected-error{{default}}
/external/smack/src/org/xbill/DNS/
H A DInvalidTypeException.java6 * An exception thrown when an invalid type code is specified.
14 InvalidTypeException(int type) { argument
15 super("Invalid DNS type: " + type);
/external/webkit/Source/WebCore/page/
H A DConnection.cpp34 Connection::ConnectionType Connection::type() const function in class:WebCore::Connection
36 return networkStateNotifier().type();
/external/clang/test/Sema/
H A Dc11-typedef-redef.c3 typedef int type; typedef
4 typedef type type; typedef
5 typedef int type; typedef
9 typedef type type2;
13 typedef int vla[N]; // expected-error{{redefinition of typedef for variably-modified type 'int [N]'}}
17 typedef vla2 vla3; // expected-error{{redefinition of typedef for variably-modified type 'vla2' (aka 'int [N]')}}
/external/webkit/Source/JavaScriptCore/wtf/
H A DStaticConstructors.h27 // declare the global objects with a different type that can be POD default
55 #define DEFINE_GLOBAL(type, name) \
56 const type name;
58 #define DEFINE_GLOBAL(type, name, arg...) \
59 const type name;
61 #define DEFINE_GLOBAL(type, name, ...) \
62 const type name;
69 #define DEFINE_GLOBAL(type, name) \
70 void * name[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)];
72 #define DEFINE_GLOBAL(type, nam
[all...]
/external/chromium/webkit/glue/
H A Dresource_type.h31 static bool ValidType(int32 type) { argument
32 return type >= MAIN_FRAME && type < LAST_TYPE;
35 static Type FromInt(int32 type) { argument
36 return static_cast<Type>(type);
39 static bool IsFrame(ResourceType::Type type) { argument
40 return type == MAIN_FRAME || type == SUB_FRAME;
43 static bool IsSharedWorker(ResourceType::Type type) { argument
44 return type
47 IsSubresource(ResourceType::Type type) argument
[all...]
/external/clang/test/CodeGen/
H A DPR4611-bitfield-layout.c3 // CHECK: struct.object_entry = type { [4 x i8] }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/clang/test/SemaTemplate/
H A Dinstantiate-typedef.cpp5 typedef T* type; // expected-error{{'type' declared as a pointer to a reference}} typedef in struct:add_pointer
8 add_pointer<int>::type test1(int * ptr) { return ptr; }
10 add_pointer<float>::type test2(int * ptr) {
11 return ptr; // expected-error{{cannot initialize return object of type 'add_pointer<float>::type' (aka 'float *') with an lvalue of type 'int *'}}
14 add_pointer<int&>::type // expected-note{{in instantiation of template class 'add_pointer<int &>' requested here}}
H A Dtypename-specifier-2.cpp5 typedef typename MetaFun::template apply<T> type; typedef in struct:bind_metafun
11 typedef T* type; typedef in struct:add_pointer::apply
20 bind_metafun<add_pointer, int>::type::type ip = &i;
21 bind_metafun<add_pointer, float>::type::type fp = &i; // expected-error{{cannot initialize a variable of type 'bind_metafun<add_pointer, float>::type::type' (aka 'float *') with an rvalue of type 'in
[all...]
H A Dmetafun-apply.cpp6 typedef T* type; typedef in struct:add_pointer::apply
13 typedef T& type; // expected-error{{cannot form a reference to 'void'}} typedef in struct:add_reference::apply
19 typedef int type; typedef in struct:bogus::apply
25 typedef typename MetaFun::template apply<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' requested here}} \ typedef in struct:apply1
30 apply1<add_pointer, int>::type ip = &i;
31 apply1<add_reference, int>::type ir = i;
32 apply1<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'in
[all...]
/external/clang/test/Analysis/
H A Delementtype.c4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;
/external/chromium/base/
H A Dfile_util_linux.cc14 bool GetFileSystemType(const FilePath& path, FileSystemType* type) { argument
19 *type = FILE_SYSTEM_UNKNOWN;
28 *type = FILE_SYSTEM_0;
37 *type = FILE_SYSTEM_ORDINARY;
40 *type = FILE_SYSTEM_NFS;
44 *type = FILE_SYSTEM_SMB;
47 *type = FILE_SYSTEM_CODA;
51 *type = FILE_SYSTEM_MEMORY;
54 *type = FILE_SYSTEM_CGROUP;
57 *type
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLIntrinsicEventHandler.cpp32 bool WMLIntrinsicEventHandler::registerIntrinsicEvent(WMLIntrinsicEventType type, PassRefPtr<WMLIntrinsicEvent> event) argument
34 if (m_events.contains(type))
37 m_events.set(type, event);
41 void WMLIntrinsicEventHandler::deregisterIntrinsicEvent(WMLIntrinsicEventType type) argument
43 if (m_events.contains(type))
44 m_events.remove(type);
47 void WMLIntrinsicEventHandler::triggerIntrinsicEvent(WMLIntrinsicEventType type) const
49 RefPtr<WMLIntrinsicEvent> event = m_events.get(type);
54 bool WMLIntrinsicEventHandler::hasIntrinsicEvent(WMLIntrinsicEventType type) const
56 return m_events.contains(type);
[all...]
/external/ceres-solver/internal/ceres/
H A Dintegral_types.h43 typedef kTrueType type; typedef in struct:ceres::internal::Ternary
47 typedef kFalseType type; typedef in struct:ceres::internal::Ternary
61 void>::type >::type >::type >::type >::type
62 type; typedef in struct:ceres::internal::Integer
73 void>::type >::type >
74 type; typedef in struct:ceres::internal::UnsignedInteger
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIdItem.java26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) { argument
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
[all...]
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DNewInstanceInstantiator.java30 private final Class type; field in class:NewInstanceInstantiator
32 public NewInstanceInstantiator(Class type) { argument
33 this.type = type;
38 return type.newInstance();
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommandNote.java24 * Notes can be added to a command execution response. A note has a type and value.
30 private Type type; field in class:AdHocCommandNote
34 * Creates a new adhoc command note with the specified type and value.
36 * @param type the type of the note.
39 public AdHocCommandNote(Type type, String value) { argument
40 this.type = type;
54 * Return the type of the note.
56 * @return the type o
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebMediaPlayerAction.h45 Type type; member in struct:WebKit::WebMediaPlayerAction
49 : type(Unknown), enable(false) { }
50 WebMediaPlayerAction(Type type, bool enable) argument
51 : type(type), enable(enable) { }
/external/webkit/Source/WebCore/css/
H A DthemeWin.css35 input:not([type]),
36 input[type="color"],
37 input[type="date"],
38 input[type="datetime"],
39 input[type="datetime-local"],
40 input[type="email"],
41 input[type="month"],
42 input[type="number"],
43 input[type="password"],
44 input[type
[all...]
/external/android-clat/
H A Dicmp.h27 // Determines whether an ICMP type is an error message.
28 int is_icmp_error(uint8_t type);
30 // Determines whether an ICMPv6 type is an error message.
31 int is_icmp6_error(uint8_t type);
34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
/external/bluetooth/bluedroid/stack/avct/
H A Davct_defs.h32 /* packet type */
51 #define AVCT_BLD_HDR(p, label, type, cr_ipid) \
52 *(p)++ = ((label) << 4) | ((type) << 2) | (cr_ipid);
54 #define AVCT_PRS_HDR(p, label, type, cr_ipid) \
56 type = (*(p) >> 2) & 3; \
59 #define AVCT_PRS_PKT_TYPE(p, type) \
60 type = (*(p) >> 2) & 3;
/external/iptables/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/external/smack/src/org/jivesoftware/smack/proxy/
H A DProxyException.java30 public ProxyException(ProxyInfo.ProxyType type, String ex, Throwable cause) argument
32 super("Proxy Exception " + type.toString() + " : "+ex+", "+cause);
35 public ProxyException(ProxyInfo.ProxyType type, String ex) argument
37 super("Proxy Exception " + type.toString() + " : "+ex);
40 public ProxyException(ProxyInfo.ProxyType type) argument
42 super("Proxy Exception " + type.toString() + " : " + "Unknown Error");

Completed in 582 milliseconds

1234567891011>>