Searched refs:type (Results 1 - 25 of 7554) 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/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.c2 // RUN: grep "struct.object_entry = type { i8, \[2 x i8\], i8 }" %t
5 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
H A D2002-07-31-BadAssert.c5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ member in struct:__anon4112
10 dest->type=0;
/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/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/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_matrixCompMultGLSL.py6 type = "mat" + str(x)
8 type = type + "x" + str(y)
9 print type + " matrixCompMult(" + type + " x, " + type + " y)\n{"
10 print " " + type + " z;"
/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/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/webkit/Source/WebCore/bindings/v8/custom/
H A DV8BindingMacros.h31 #define EXCEPTION_BLOCK(type, var, value) \
32 type var; \
40 #define STRING_TO_V8PARAMETER_EXCEPTION_BLOCK(type, var, value) \
41 type var(value); \
45 #define STRING_TO_V8PARAMETER_EXCEPTION_BLOCK_VOID(type, var, value) \
46 type var(value); \
/external/chromium/chrome/browser/webdata/
H A Dautofill_change.cc10 AutofillChange::AutofillChange(Type type, const AutofillKey& key) argument
11 : GenericAutofillChange<AutofillKey>(type, key) {
18 Type type, std::string key, const AutofillProfile* profile)
19 : GenericAutofillChange<std::string>(type, key),
21 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
22 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
23 DCHECK(type == REMOVE ? !profile : true);
31 return type() == change.type() &&
33 (type() !
17 AutofillProfileChange( Type type, std::string key, const AutofillProfile* profile) argument
36 AutofillCreditCardChange( Type type, std::string key, const CreditCard* credit_card) argument
[all...]
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
H A Dp3-0x.cpp5 { typedef T type; }; typedef in struct:PR6285::identity
9 operator typename identity<T>::type(); // expected-note{{candidate}}
/external/clang/test/Modules/Inputs/submodules/
H A Dtype_traits.h3 typedef T type; typedef in struct:remove_reference
8 typedef T type; typedef in struct:remove_reference

Completed in 1183 milliseconds

1234567891011>>