Searched refs:type (Results 1 - 25 of 15917) 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/chromium_org/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_org/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/chromium_org/base/
H A Dmove.h8 // Macro with the boilerplate that makes a type move-only in C++03.
13 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
43 // like they're using a phantom type.
79 // gives us a move-only type.
118 // It is tempting to want to use the RValue type in function parameters, but
125 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
130 // reference as if it were the move-only type itself. Unfortunately,
148 // value of type scoped_ptr<Child> even if you add a constructor to
156 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
158 // In Boost.Move, RValue is the boost::rv<> template. This type ca
[all...]
H A Dfile_util_linux.cc14 bool GetFileSystemType(const base::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_org/chrome/browser/ui/panels/
H A Dpanel_collection.cc7 PanelCollection::PanelCollection(Type type) argument
8 : type_(type) {
/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/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/chromium_org/webkit/common/
H A Dresource_type.h36 static bool ValidType(int32 type) { argument
37 return type >= MAIN_FRAME && type < LAST_TYPE;
40 static Type FromInt(int32 type) { argument
41 return static_cast<Type>(type);
45 WebKit::WebURLRequest::TargetType type);
47 static bool IsFrame(ResourceType::Type type) { argument
48 return type == MAIN_FRAME || type == SUB_FRAME;
51 static bool IsSharedWorker(ResourceType::Type type) { argument
55 IsSubresource(ResourceType::Type type) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delftypesize.asm8 type a function label
12 type b object label
16 type c function label
21 type d object label
25 type e object label
28 type f object label
/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/chromium_org/base/third_party/xdg_user_dirs/
H A Dxdg_user_dir_lookup.h31 char* xdg_user_dir_lookup(const char *type);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStaticConstructors.h27 // declare the global objects with a different type that can be POD default
54 #define DEFINE_GLOBAL(type, name, ...) \
55 const type name;
60 #define DEFINE_GLOBAL(type, name, ...) \
61 void * name[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)];
/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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dsocket.c10 int socket(int domain, int type, int protocol) { argument
11 return ki_socket(domain, type, protocol);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2263.js28 var obj = { length: { valueOf: function(){ throw { type: "length" }}}};
29 var sep = { toString: function(){ throw { type: "toString" }}};
/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/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGPropertyTraits.h34 static String toString(bool type) { return type ? "true" : "false"; } argument
40 static String toString(unsigned type) { return String::number(type); } argument
46 static String toString(int type) { return String::number(type); } argument
52 static String toString(float type) { return String::number(type); } argument
58 static String toString(const String& type) { return type; } argument
[all...]
/external/llvm/test/MC/ELF/
H A Dtype.s5 .type foo,%function
9 .type bar,@object
13 .type zed,@gnu_unique_object
17 .type obj,@object
18 .type obj,@notype
22 .type func,@function
23 .type func,@object
27 .type ifunc,@gnu_indirect_function
31 .type tls,@tls_object
32 .type tl
[all...]

Completed in 1244 milliseconds

1234567891011>>