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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
gnu-type-diagnostics.s 3 .type TYPE FUNC
4 // CHECK: error: unsupported attribute in '.type' directive
5 // CHECK: .type TYPE FUNC
8 .type type stt_func
9 // CHECK: error: unsupported attribute in '.type' directive
10 // CHECK: .type type stt_fun
    [all...]
gnu-type.s 3 .type TYPE STT_FUNC
4 // CHECK: .type TYPE,@function
6 .type comma_TYPE, STT_FUNC
7 // CHECK: .type comma_TYPE,@function
9 .type at_TYPE, @STT_FUNC
10 // CHECK: .type at_TYPE,@function
12 .type percent_TYPE, %STT_FUNC
13 // CHECK: .type percent_TYPE,@functio
    [all...]
  /external/chromium_org/content/public/common/
resource_type.cc 9 bool IsResourceTypeFrame(ResourceType type) {
10 return type == RESOURCE_TYPE_MAIN_FRAME || type == RESOURCE_TYPE_SUB_FRAME;
  /external/chromium_org/ppapi/shared_impl/
file_system_util.cc 11 bool FileSystemTypeIsValid(PP_FileSystemType type) {
12 return (type == PP_FILESYSTEMTYPE_LOCALPERSISTENT ||
13 type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
14 type == PP_FILESYSTEMTYPE_EXTERNAL ||
15 type == PP_FILESYSTEMTYPE_ISOLATED);
18 bool FileSystemTypeHasQuota(PP_FileSystemType type) {
19 return (type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
20 type == PP_FILESYSTEMTYPE_LOCALPERSISTENT);
24 PP_IsolatedFileSystemType_Private type) {
25 switch (type) {
    [all...]
  /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/hammerhead/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
  /external/chromium_org/third_party/WebKit/Source/wtf/
StaticConstructors.h 34 #define DEFINE_GLOBAL(type, name, ...) \
35 void* name##Storage[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)]; \
36 const type& name = *reinterpret_cast<type*>(&name##Storage);
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ExtensionTypes.c 9 PyTypeObject* type = Py_TYPE(obj); local
10 /* try to find the first parent type that has a different tp_dealloc() function */
11 while (type && type->tp_dealloc != current_tp_dealloc)
12 type = type->tp_base;
13 while (type && type->tp_dealloc == current_tp_dealloc)
14 type = type->tp_base
26 PyTypeObject* type = Py_TYPE(obj); local
45 PyTypeObject* type = Py_TYPE(obj); local
    [all...]
  /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/webrtc/base/
move.h 14 // Macro with the boilerplate that makes a type move-only in C++03.
19 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
49 // like they're using a phantom type.
85 // gives us a move-only type.
124 // It is tempting to want to use the RValue type in function parameters, but
131 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
136 // reference as if it were the move-only type itself. Unfortunately,
154 // value of type scoped_ptr<Child> even if you add a constructor to
162 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
164 // In Boost.Move, RValue is the boost::rv<> template. This type can be use
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
move.h 16 // Macro with the boilerplate that makes a type move-only in C++03.
21 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
51 // like they're using a phantom type.
87 // gives us a move-only type.
126 // It is tempting to want to use the RValue type in function parameters, but
133 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
138 // reference as if it were the move-only type itself. Unfortunately,
166 // value of type scoped_ptr<Child> even if you add a constructor to
174 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
176 // In Boost.Move, RValue is the boost::rv<> template. This type can be use
    [all...]
  /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/tools/gn/
substitution_type.cc 101 bool SubstitutionIsInOutputDir(SubstitutionType type) {
102 return type == SUBSTITUTION_SOURCE_GEN_DIR ||
103 type == SUBSTITUTION_SOURCE_OUT_DIR ||
104 type == SUBSTITUTION_ROOT_GEN_DIR ||
105 type == SUBSTITUTION_ROOT_OUT_DIR ||
106 type == SUBSTITUTION_TARGET_GEN_DIR ||
107 type == SUBSTITUTION_TARGET_OUT_DIR;
110 bool IsValidSourceSubstitution(SubstitutionType type) {
111 return type == SUBSTITUTION_LITERAL ||
112 type == SUBSTITUTION_SOURCE |
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyerrors.swg 7 PyObject* type = 0;
10 type = PyExc_MemoryError;
13 type = PyExc_IOError;
16 type = PyExc_RuntimeError;
19 type = PyExc_IndexError;
22 type = PyExc_TypeError;
25 type = PyExc_ZeroDivisionError;
28 type = PyExc_OverflowError;
31 type = PyExc_SyntaxError;
34 type = PyExc_ValueError
    [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;
  /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...]

Completed in 866 milliseconds

1 2 3 4 5 6 7 8 91011>>