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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
msvc_type.hpp 28 typedef typename T::type type; typedef in struct:boost::mpl::aux::msvc_type_impl::result_
36 typedef result_ type; typedef in struct:boost::mpl::aux::msvc_type_impl::result_
50 typedef typename T::type type;
55 typedef int type;
  /external/ceres-solver/internal/ceres/
types.cc 40 #define STRENUM(x) if (value == #x) { *type = x; return true;}
46 const char* LinearSolverTypeToString(LinearSolverType type) {
47 switch (type) {
60 bool StringToLinearSolverType(string value, LinearSolverType* type) {
72 const char* PreconditionerTypeToString(PreconditionerType type) {
73 switch (type) {
84 bool StringToPreconditionerType(string value, PreconditionerType* type) {
95 SparseLinearAlgebraLibraryType type) {
96 switch (type) {
107 SparseLinearAlgebraLibraryType* type) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_main.c 48 struct lp_type type)
51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
52 type.floating ? "f" : (type.fixed ? "h" : "i"),
53 type.width,
54 type.norm ? "n" : "",
55 type.length);
60 read_elem(struct lp_type type, const void *src, unsigned index
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 48 struct lp_type type)
51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
52 type.floating ? "f" : (type.fixed ? "h" : "i"),
53 type.width,
54 type.norm ? "n" : "",
55 type.length);
60 read_elem(struct lp_type type, const void *src, unsigned index
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_validate.cpp 107 if (ir->condition->type != glsl_type::bool_type) {
108 printf("ir_if condition %s type instead of bool.\n",
109 ir->condition->type->name);
216 printf("Function signature %p for function %s has NULL return type.\n",
231 assert(ir->operands[0]->type == ir->type);
234 assert(ir->type->base_type == GLSL_TYPE_BOOL);
235 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL);
244 assert(ir->type == ir->operands[0]->type);
    [all...]
  /external/mesa3d/src/glsl/
ir_validate.cpp 107 if (ir->condition->type != glsl_type::bool_type) {
108 printf("ir_if condition %s type instead of bool.\n",
109 ir->condition->type->name);
216 printf("Function signature %p for function %s has NULL return type.\n",
231 assert(ir->operands[0]->type == ir->type);
234 assert(ir->type->base_type == GLSL_TYPE_BOOL);
235 assert(ir->operands[0]->type->base_type == GLSL_TYPE_BOOL);
244 assert(ir->type == ir->operands[0]->type);
    [all...]
  /external/qemu/util/
qemu-config.c 13 .type = QEMU_OPT_NUMBER,
17 .type = QEMU_OPT_NUMBER,
21 .type = QEMU_OPT_STRING,
25 .type = QEMU_OPT_NUMBER,
28 .type = QEMU_OPT_NUMBER,
32 .type = QEMU_OPT_NUMBER,
36 .type = QEMU_OPT_NUMBER,
40 .type = QEMU_OPT_STRING,
44 .type = QEMU_OPT_STRING,
45 .help = "media type (disk, cdrom)"
    [all...]
  /external/opencv/cv/src/
_cvlist.h 84 #define DECLARE_LIST(type, prefix)\
86 struct prefix##element_##type\
88 struct prefix##element_##type* m_prev;\
89 struct prefix##element_##type* m_next;\
90 type m_data;\
92 typedef struct prefix##element_##type ELEMENT_##type;\
94 _LIST_INLINE _CVLIST* prefix##create_list_##type(long);\
95 _LIST_INLINE void prefix##destroy_list_##type(_CVLIST*);\
97 _LIST_INLINE CVPOS prefix##get_head_pos_##type(_CVLIST*);
    [all...]
  /external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 18 static_assert((std::is_same<std::common_type<int>::type, int>::value), "");
19 static_assert((std::is_same<std::common_type<char>::type, char>::value), "");
25 static_assert((std::is_same<std::common_type< int>::type, int>::value), "");
26 static_assert((std::is_same<std::common_type<const int>::type, int>::value), "");
27 static_assert((std::is_same<std::common_type< volatile int>::type, int>::value), "");
28 static_assert((std::is_same<std::common_type<const volatile int>::type, int>::value), "");
30 static_assert((std::is_same<std::common_type<int, int>::type, int>::value), "");
31 static_assert((std::is_same<std::common_type<int, const int>::type, int>::value), "");
33 static_assert((std::is_same<std::common_type<long, const int>::type, long>::value), "");
34 static_assert((std::is_same<std::common_type<const long, int>::type, long>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 18 static_assert((std::is_same<std::common_type<int>::type, int>::value), "");
19 static_assert((std::is_same<std::common_type<char>::type, char>::value), "");
25 static_assert((std::is_same<std::common_type< int>::type, int>::value), "");
26 static_assert((std::is_same<std::common_type<const int>::type, int>::value), "");
27 static_assert((std::is_same<std::common_type< volatile int>::type, int>::value), "");
28 static_assert((std::is_same<std::common_type<const volatile int>::type, int>::value), "");
30 static_assert((std::is_same<std::common_type<int, int>::type, int>::value), "");
31 static_assert((std::is_same<std::common_type<int, const int>::type, int>::value), "");
33 static_assert((std::is_same<std::common_type<long, const int>::type, long>::value), "");
34 static_assert((std::is_same<std::common_type<const long, int>::type, long>::value), "")
    [all...]
  /external/chromium_org/third_party/skia/gm/
gm_error.h 24 // is turned on, we always include this type in our enum so that
41 static const char *getErrorTypeName(ErrorType type) {
42 switch(type) {
59 SkDEBUGFAIL("getErrorTypeName() called with unknown type");
64 * Fills in "type" with the ErrorType associated with name "name".
65 * Returns true if we found one, false if it is an unknown type name.
67 static bool getErrorTypeByName(const char name[], ErrorType *type) {
72 *type = thisType;
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {}
124 ErrorType type = static_cast<ErrorType>(typeInt); local
    [all...]
  /external/skia/gm/
gm_error.h 24 // is turned on, we always include this type in our enum so that
41 static const char *getErrorTypeName(ErrorType type) {
42 switch(type) {
59 SkDEBUGFAIL("getErrorTypeName() called with unknown type");
64 * Fills in "type" with the ErrorType associated with name "name".
65 * Returns true if we found one, false if it is an unknown type name.
67 static bool getErrorTypeByName(const char name[], ErrorType *type) {
72 *type = thisType;
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {}
124 ErrorType type = static_cast<ErrorType>(typeInt); local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 22 import java.lang.reflect.Type;
29 * Super type token; allows capturing generic types at runtime by forcing them to be reified.
43 * <p>See <a href="http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html">
44 * http://gafter.blogspot.com/2007/05/limitation-of-super-type-tokens.html</a>
48 private final Type mType;
52 * Create a new type reference for {@code T}.
54 * @throws IllegalArgumentException if {@code T}'s actual type contains a type variable
65 * Prohibit type references with type variables such a
    [all...]
  /external/clang/test/SemaCXX/
unknown-type-name.cpp 14 foo::bar x; // expected-error{{no type named 'bar' in 'N::Wibble'}}
20 int f(foo::bar); // expected-error{{no type named 'bar' in 'N::Wibble'}}
24 int fun(zapotron); // expected-error{{unknown type name 'zapotron'}}
29 typedef T type; typedef in struct:A
31 type f();
33 type g();
36 static type m;
37 static int h(T::type, int); // expected-error{{missing 'typename'}}
38 static int h(T::type x, char); // expected-error{{missing 'typename'}}
42 A<T>::type g(T t) { return t; } // expected-error{{missing 'typename'}
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 17 package com.android.dexgen.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /development/ndk/platforms/android-3/include/linux/
android_alarm.h 39 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4))
41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
  /external/bluetooth/bluedroid/test/suite/support/
adapter.h 25 bt_property_t *adapter_get_property(bt_property_type_t type);
  /external/chromium_org/ash/shelf/
shelf_item_types.cc 12 : type(TYPE_UNDEFINED),
21 : type(TYPE_UNDEFINED),
  /external/chromium_org/chrome/browser/sync_file_system/
sync_operation_type.cc 11 const char* SyncOperationTypeToString(SyncOperationType type) {
12 switch (type) {
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_bubble_model_delegate.h 21 // Shows the Content Settings page for a given content type.
22 virtual void ShowContentSettingsPage(ContentSettingsType type) = 0;
24 // Shows the Learn More page for a given content type.
25 virtual void ShowLearnMorePage(ContentSettingsType type) = 0;
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data_ios.cc 17 void BookmarkNodeData::WriteToClipboard(ui::ClipboardType type) {
21 bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) {
  /external/chromium_org/components/content_settings/core/browser/
content_settings_details.cc 10 ContentSettingsType type,
14 type_(type),
  /external/chromium_org/components/omnibox/
autocomplete_match_type.cc 10 std::string AutocompleteMatchType::ToString(AutocompleteMatchType::Type type) {
34 return strings[type];
  /external/chromium_org/content/browser/
power_save_blocker_impl.cc 13 PowerSaveBlockerType type,
15 return scoped_ptr<PowerSaveBlocker>(new PowerSaveBlockerImpl(type, reason));

Completed in 985 milliseconds

1 2 3 4 5 6 7 8 91011>>