HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 1 - 25 of 23029) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/base/
connection_type_histograms.cc 17 // 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) {
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/
ftp_server_type_histograms.cc 17 // 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) {
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/
connection_type_histograms.cc 17 // 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) {
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/
ftp_server_type_histograms.cc 17 // 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) {
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);
  /device/asus/flo/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /device/lge/mako/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /hardware/qcom/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /external/ceres-solver/internal/ceres/
integral_types.h 43 typedef kTrueType type; typedef in struct:ceres::internal::Ternary
47 typedef kFalseType type; typedef in struct:ceres::internal::Ternary
50 #define CERES_INTSIZE(TYPE) \
51 typename Ternary<sizeof(TYPE) * 8 == kBits, TYPE,
61 void>::type >::type >::type >::type >::type
62 type; typedef in struct:ceres::internal::Integer
74 type; typedef in struct:ceres::internal::UnsignedInteger
    [all...]
  /external/chromium_org/base/
move.h 8 // 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,
158 // value of type scoped_ptr<Child> even if you add a constructor to
166 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
168 // In Boost.Move, RValue is the boost::rv<> template. This type can be use
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_collection.cc 7 PanelCollection::PanelCollection(Type type)
8 : type_(type) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
move.h 8 // 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 can be use
    [all...]
socketfactory.h 40 // Returns a new socket for blocking communication. The type can be
45 virtual Socket* CreateSocket(int type) = 0;
46 virtual Socket* CreateSocket(int family, int type) = 0;
47 // Returns a new socket for nonblocking communication. The type can be
49 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
50 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
  /external/smack/src/org/xbill/DNS/
InvalidTypeException.java 6 * An exception thrown when an invalid type code is specified.
14 InvalidTypeException(int type) {
15 super("Invalid DNS type: " + type);
  /external/clang/test/Sema/
c11-typedef-redef.c 3 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]')}}
  /libcore/luni/src/main/java/java/security/cert/
CRL.java 28 // The CRL type
29 private final String type; field in class:CRL
32 * Creates a new certificate revocation list of the specified type.
34 * @param type
35 * the type for the CRL.
37 protected CRL(String type) {
38 this.type = type;
42 * Returns the type of this CRL.
44 * @return the type of this CRL
    [all...]
  /external/chromium_org/webkit/common/
resource_type.h 16 enum Type {
37 static bool ValidType(int32 type) {
38 return type >= MAIN_FRAME && type < LAST_TYPE;
41 static Type FromInt(int32 type) {
42 return static_cast<Type>(type);
45 WEBKIT_COMMON_EXPORT static Type FromTargetType(
46 blink::WebURLRequest::TargetType type);
    [all...]
  /external/chromium_org/ppapi/shared_impl/
file_system_util.cc 12 PP_FileSystemType type) {
13 switch (type) {
25 bool FileSystemTypeIsValid(PP_FileSystemType type) {
26 return (type == PP_FILESYSTEMTYPE_LOCALPERSISTENT ||
27 type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
28 type == PP_FILESYSTEMTYPE_EXTERNAL ||
29 type == PP_FILESYSTEMTYPE_ISOLATED);
32 bool FileSystemTypeHasQuota(PP_FileSystemType type) {
33 return (type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
34 type == PP_FILESYSTEMTYPE_LOCALPERSISTENT)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elftypesize.asm 8 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
  /frameworks/base/drm/java/android/drm/
DrmInfoEvent.java 28 // Please add newly defined type constants to the end of the list,
57 // Add more type constants here...
60 // We may want to add a user-defined type constant, such as
68 * @param type Type of the event. Must be any of the event types defined above,
72 public DrmInfoEvent(int uniqueId, int type, String message) {
73 super(uniqueId, type, message);
74 checkTypeValidity(type);
81 * @param type Type of the event. Must be any of the event types defined above
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
yes_no_type.hpp 23 typedef char (& type)[I]; typedef in struct:boost::algorithm::size_descriptor
26 typedef size_descriptor<1>::type yes_type;
27 typedef size_descriptor<2>::type no_type;
  /external/chromium/webkit/glue/
resource_type.h 12 enum Type {
31 static bool ValidType(int32 type) {
32 return type >= MAIN_FRAME && type < LAST_TYPE;
35 static Type FromInt(int32 type) {
36 return static_cast<Type>(type);
39 static bool IsFrame(ResourceType::Type type) {
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
promotion.hpp 25 // Boost type traits:
48 // If either T1 or T2 is an integer type,
59 // foo(any-int-or-float-type, long double) -> foo(long double, long double);
70 { // If T is integral type, then promote to double.
71 typedef typename mpl::if_<is_integral<T>, double, T>::type type; typedef in struct:boost::math::tools::promote_arg
75 template <> struct promote_arg<float> { typedef float type; }; typedef in struct:boost::math::tools::promote_arg
76 template <> struct promote_arg<double>{ typedef double type; }; typedef in struct:boost::math::tools::promote_arg
77 template <> struct promote_arg<long double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_arg
78 template <> struct promote_arg<int> { typedef double type; }; typedef in struct:boost::math::tools::promote_arg
97 typename mpl::if_< typename mpl::and_<mpl::not_<is_floating_point<T2P> >, ::boost::is_convertible<T1P, T2P> >, T2P, T1P>::type>::type type; typedef in struct:boost::math::tools::promote_args_2
101 template <> struct promote_args_2<float, float> { typedef float type; }; typedef in struct:boost::math::tools::promote_args_2
102 template <> struct promote_args_2<double, double>{ typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
103 template <> struct promote_args_2<long double, long double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
104 template <> struct promote_args_2<int, int> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
105 template <> struct promote_args_2<int, float> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
106 template <> struct promote_args_2<float, int> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
107 template <> struct promote_args_2<int, double> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
108 template <> struct promote_args_2<double, int> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
109 template <> struct promote_args_2<int, long double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
110 template <> struct promote_args_2<long double, int> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
111 template <> struct promote_args_2<float, double> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
112 template <> struct promote_args_2<double, float> { typedef double type; }; typedef in struct:boost::math::tools::promote_args_2
113 template <> struct promote_args_2<float, long double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
114 template <> struct promote_args_2<long double, float> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
115 template <> struct promote_args_2<double, long double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
116 template <> struct promote_args_2<long double, double> { typedef long double type; }; typedef in struct:boost::math::tools::promote_args_2
135 >::type type; typedef in struct:boost::math::tools::promote_args
    [all...]
  /external/chromium_org/base/third_party/xdg_user_dirs/
xdg_user_dir_lookup.h 31 char* xdg_user_dir_lookup(const char *type);
  /external/chromium_org/third_party/WebKit/Source/wtf/
StaticConstructors.h 27 // 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/
PR4611-bitfield-layout.c 3 // CHECK: struct.object_entry = type { [4 x i8] }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011>>