Searched defs:type (Results 1 - 25 of 4000) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/importer/
H A Dimporter_type.cc24 Importer* CreateImporterByType(ImporterType type) { argument
25 switch (type) {
/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/CodeCompletion/
H A Dconstexpr.cpp6 typedef int type; typedef in struct:S
13 // CHECK: COMPLETION: type : type
/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
/external/clang/test/SemaCXX/
H A Dlibstdcxx_common_type_hack.cpp17 // reference type.
18 typedef decltype(true ? declval<A>() : declval<B>()) type; member in struct:std::common_type
28 using T = std::common_type<int, int>::type;
/external/clang/test/SemaTemplate/
H A Dinstantiate-elab-type-specifier.cpp11 typedef struct Base<T>::foo type; typedef in struct:Derived
H A Dinstantiation-depth-defarg.cpp4 typedef typename S<N-1>::type type; typedef in struct:S
13 typedef int type; typedef in struct:S
H A Dexplicit-specialization-member.cpp4 typedef T* type; typedef in struct:X0
7 void f1(type);
11 template<> void X0<char>::f1(type);
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}}
/external/elfutils/backends/
H A Darm_symbol.c39 arm_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
41 switch (type)
H A Ds390_symbol.c38 s390_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
40 switch (type)
H A Dx86_64_symbol.c40 x86_64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
42 switch (type)
H A Dsh_symbol.c38 /* Return true if the symbol type is that referencing the GOT. */
40 sh_gotpc_reloc_check (Elf *elf __attribute__ ((unused)), int type) argument
42 return type == R_SH_GOTPC;
47 sh_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
49 switch (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/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/chromium/chrome/common/
H A Dfavicon_url.cc11 FaviconURL::FaviconURL(const GURL& url, IconType type) argument
13 icon_type(type) {
/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/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/CXX/temp/temp.names/
H A Dp4.cpp7 typedef U* type; typedef in struct:meta::apply
12 void f(typename T::template apply<U>::type);
/external/clang/test/CodeGen/
H A D2007-04-24-str-const.c6 unsigned type; member in struct:__anon4299
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/dropbear/
H A Dprocess-packet.c45 unsigned char type; local
50 type = buf_getbyte(ses.payload);
51 TRACE(("process_packet: packet type = %d", type))
53 ses.lastpacket = type;
56 switch(type) {
77 if (ses.requirenext != type) {
79 dropbear_exit("unexpected packet type %d, expected %d", type,
90 TRACE(("Ignoring packet, type
[all...]
/external/skia/legacy/src/animator/
H A DSkOpArray.cpp13 SkOpArray::SkOpArray(SkOperand2::OpType type) : fType(type) { argument
/external/skia/src/animator/
H A DSkOpArray.cpp13 SkOpArray::SkOpArray(SkOperand2::OpType type) : fType(type) { argument

Completed in 542 milliseconds

1234567891011>>