Searched refs:type (Results 276 - 300 of 15917) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test.h101 dump_type(FILE *fp, struct lp_type type);
105 read_elem(struct lp_type type, const void *src, unsigned index);
109 write_elem(struct lp_type type, void *dst, unsigned index, double src);
113 random_elem(struct lp_type type, void *dst, unsigned index);
117 read_vec(struct lp_type type, const void *src, double *dst);
121 write_vec(struct lp_type type, void *dst, const double *src);
125 random_vec(struct lp_type type, void *dst);
129 compare_vec_with_eps(struct lp_type type, const void *res, const void *ref, double eps);
133 compare_vec(struct lp_type type, const void *res, const void *ref);
137 dump_vec(FILE *fp, struct lp_type type, cons
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/pem/
H A Dpem.h167 int type; /* what type of object */ member in struct:pem_ctx_st
189 EVP_MD *md; /* signature type */
214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
222 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
223 type *PEM_read
[all...]
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dpem.h167 int type; /* what type of object */ member in struct:pem_ctx_st
189 EVP_MD *md; /* signature type */
214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
222 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
223 type *PEM_read
[all...]
H A Dlhash.h93 /* Macros for declaring and implementing type-safe wrappers for LHASH callbacks.
96 * before deferring to the underlying type-specific callbacks. NB: It is
199 #define LHASH_OF(type) struct lhash_st_##type
201 #define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
203 #define CHECKED_LHASH_OF(type,lh) \
204 ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
207 #define LHM_lh_new(type, name) \
208 ((LHASH_OF(type) *)lh_ne
[all...]
/external/openssl/crypto/pem/
H A Dpem.h167 int type; /* what type of object */ member in struct:pem_ctx_st
189 EVP_MD *md; /* signature type */
214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
222 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
223 type *PEM_read
[all...]
/external/openssl/include/openssl/
H A Dpem.h167 int type; /* what type of object */ member in struct:pem_ctx_st
189 EVP_MD *md; /* signature type */
214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
222 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
223 type *PEM_read
[all...]
H A Dlhash.h93 /* Macros for declaring and implementing type-safe wrappers for LHASH callbacks.
96 * before deferring to the underlying type-specific callbacks. NB: It is
199 #define LHASH_OF(type) struct lhash_st_##type
201 #define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
203 #define CHECKED_LHASH_OF(type,lh) \
204 ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
207 #define LHM_lh_new(type, name) \
208 ((LHASH_OF(type) *)lh_ne
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_field.cc52 void AutofillField::set_heuristic_type(ServerFieldType type) { argument
53 if (type >= 0 && type < MAX_VALID_FIELD_TYPE &&
54 type != FIELD_WITH_DEFAULT_VALUE) {
55 heuristic_type_ = type;
64 void AutofillField::set_server_type(ServerFieldType type) { argument
66 if (type >= PHONE_FAX_NUMBER && type <= PHONE_FAX_WHOLE_NUMBER)
69 server_type_ = type;
72 void AutofillField::SetHtmlType(HtmlFieldType type, HtmlFieldMod argument
[all...]
/external/chromium_org/content/public/browser/
H A Dnotification_registrar.cc18 int type; member in struct:content::NotificationRegistrar::Record
24 type == other.type &&
45 int type,
48 DCHECK(!IsRegistered(observer, type, source)) << "Duplicate registration.";
50 Record record = { observer, type, source };
53 NotificationServiceImpl::current()->AddObserver(observer, type, source);
57 int type,
61 Record record = { observer, type, source };
72 service->RemoveObserver(observer, type, sourc
44 Add(NotificationObserver* observer, int type, const NotificationSource& source) argument
56 Remove(NotificationObserver* observer, int type, const NotificationSource& source) argument
104 IsRegistered(NotificationObserver* observer, int type, const NotificationSource& source) argument
[all...]
/external/clang/test/SemaTemplate/
H A Ddependent-base-classes.cpp23 typedef typename A<TT>::type type; typedef in struct:PR6031::II
29 C<typename FI::type> a;
35 C<typename FI2::type> a; // expected-error{{no type named 'type' in 'FI2<TT>'}}
49 typedef typename HasDepBase::template MemberTemplate<T>::type type; typedef
58 typedef typename NoDepBase::template MemberTemplate<T>::type type; // expecte typedef
68 typedef int type; // expected-note{{member found by ambiguous name lookup}} typedef in struct:Ambig::Base1
72 typedef float type; // expected-note{{member found by ambiguous name lookup}} typedef in struct:Ambig::Base2
77 typedef typename Derived::type type; // expected-error{{member 'type' found in multiple base classes of different types}} typedef in struct:Ambig::Derived
[all...]
/external/skia/gm/
H A Dgm_error.h24 // is turned on, we always include this type in our enum so that
41 static const char *getErrorTypeName(ErrorType type) { argument
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) { argument
72 *type = thisType;
85 ErrorCombination(const ErrorType type) : fBitfield(1 << type) {} argument
97 add(const ErrorType type) argument
124 ErrorType type = static_cast<ErrorType>(typeInt); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c69 * Build code to compare two values 'a' and 'b' of 'type' using the given func.
75 const struct lp_type type,
81 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, type);
89 assert(lp_check_value(type, a));
90 assert(lp_check_value(type, b));
102 if (!type.floating && !type.sign &&
103 type.width * type.length == 128 &&
111 __FUNCTION__, type
74 lp_build_compare(struct gallivm_state *gallivm, const struct lp_type type, unsigned func, LLVMValueRef a, LLVMValueRef b) argument
398 struct lp_type type = bld->type; local
448 struct lp_type type = bld->type; local
566 const struct lp_type type = bld->type; local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c69 * Build code to compare two values 'a' and 'b' of 'type' using the given func.
75 const struct lp_type type,
81 LLVMTypeRef int_vec_type = lp_build_int_vec_type(gallivm, type);
89 assert(lp_check_value(type, a));
90 assert(lp_check_value(type, b));
102 if (!type.floating && !type.sign &&
103 type.width * type.length == 128 &&
111 __FUNCTION__, type
74 lp_build_compare(struct gallivm_state *gallivm, const struct lp_type type, unsigned func, LLVMValueRef a, LLVMValueRef b) argument
398 struct lp_type type = bld->type; local
448 struct lp_type type = bld->type; local
566 const struct lp_type type = bld->type; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir.cpp31 this->type = glsl_type::error_type;
138 if (v->type->is_scalar())
141 if (v->type->is_vector()) {
142 const unsigned mask = (1U << v->type->vector_elements) - 1;
149 * composite type (and the whole thing is assigned.
163 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
170 assert(lhs_components == this->rhs->type->vector_elements);
181 /* If the RHS is a vector type, assume that all components of the vector
182 * type ar
199 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0) argument
212 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0, ir_rvalue *op1) argument
226 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0, ir_rvalue *op1, ir_rvalue *op2, ir_rvalue *op3) argument
531 ir_constant(const struct glsl_type *type, const ir_constant_data *data) argument
596 ir_constant(const struct glsl_type *type, exec_list *value_list) argument
733 zero(void *mem_ctx, const glsl_type *type) argument
1307 set_sampler(ir_dereference *sampler, const glsl_type *type) argument
1484 ir_variable(const struct glsl_type *type, const char *name, ir_variable_mode mode) argument
[all...]
/external/mesa3d/src/glsl/
H A Dir.cpp31 this->type = glsl_type::error_type;
138 if (v->type->is_scalar())
141 if (v->type->is_vector()) {
142 const unsigned mask = (1U << v->type->vector_elements) - 1;
149 * composite type (and the whole thing is assigned.
163 if (lhs->type->is_scalar() || lhs->type->is_vector()) {
170 assert(lhs_components == this->rhs->type->vector_elements);
181 /* If the RHS is a vector type, assume that all components of the vector
182 * type ar
199 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0) argument
212 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0, ir_rvalue *op1) argument
226 ir_expression(int op, const struct glsl_type *type, ir_rvalue *op0, ir_rvalue *op1, ir_rvalue *op2, ir_rvalue *op3) argument
531 ir_constant(const struct glsl_type *type, const ir_constant_data *data) argument
596 ir_constant(const struct glsl_type *type, exec_list *value_list) argument
733 zero(void *mem_ctx, const glsl_type *type) argument
1307 set_sampler(ir_dereference *sampler, const glsl_type *type) argument
1484 ir_variable(const struct glsl_type *type, const char *name, ir_variable_mode mode) argument
[all...]
/external/chromium_org/ui/webui/resources/css/
H A Dwidgets.css12 input[type='button'],
13 input[type='submit']):not(.custom-appearance):not(.link-button),
15 input[type='checkbox'],
16 input[type='radio'] {
31 input[type='button'],
32 input[type='submit']):not(.custom-appearance):not(.link-button),
45 input[type='button'],
46 input[type='submit']):not(.custom-appearance):not(.link-button) {
66 input[type='checkbox'] {
74 input[type
[all...]
/external/compiler-rt/lib/
H A Datomic.c56 // defined. Each platform should define the Lock type, and corresponding
169 #define LOCK_FREE_ACTION(type) \
170 *((type*)dest) = __c11_atomic_load((_Atomic(type)*)src, model);\
183 #define LOCK_FREE_ACTION(type) \
184 __c11_atomic_store((_Atomic(type)*)dest, *(type*)dest, model);\
201 #define LOCK_FREE_ACTION(type) \
202 return __c11_atomic_compare_exchange_strong((_Atomic(type)*)ptr, (type*)expecte
[all...]
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFResourceDict.cpp41 SkPDFResourceDict::SkPDFResourceType type) {
42 SkASSERT(type >= 0);
43 SkASSERT(type < SkPDFResourceDict::kResourceTypeCount);
45 return resource_type_prefixes[type];
49 SkPDFResourceDict::SkPDFResourceType type) {
50 SkASSERT(type >= 0);
51 SkASSERT(type < SkPDFResourceDict::kResourceTypeCount);
53 return resource_type_names[type];
74 SkPDFResourceType type, int key, SkPDFObject* value) {
76 insertResource(type, ke
40 get_resource_type_prefix( SkPDFResourceDict::SkPDFResourceType type) argument
73 insertResourceAsReference( SkPDFResourceType type, int key, SkPDFObject* value) argument
103 getResourceName( SkPDFResourceType type, int key) argument
110 insertResource( SkPDFResourceType type, int key, SkPDFObject* value) argument
[all...]
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DReturnsEmptyValues.java83 Object returnValueFor(Class<?> type) { argument
84 if (Primitives.isPrimitiveOrWrapper(type)) {
85 return Primitives.defaultValueForPrimitiveOrWrapper(type);
88 } else if (type == Collection.class) {
90 } else if (type == Set.class) {
92 } else if (type == HashSet.class) {
94 } else if (type == SortedSet.class) {
96 } else if (type == TreeSet.class) {
98 } else if (type == LinkedHashSet.class) {
100 } else if (type
[all...]
/external/skia/src/pdf/
H A DSkPDFResourceDict.cpp41 SkPDFResourceDict::SkPDFResourceType type) {
42 SkASSERT(type >= 0);
43 SkASSERT(type < SkPDFResourceDict::kResourceTypeCount);
45 return resource_type_prefixes[type];
49 SkPDFResourceDict::SkPDFResourceType type) {
50 SkASSERT(type >= 0);
51 SkASSERT(type < SkPDFResourceDict::kResourceTypeCount);
53 return resource_type_names[type];
74 SkPDFResourceType type, int key, SkPDFObject* value) {
76 insertResource(type, ke
40 get_resource_type_prefix( SkPDFResourceDict::SkPDFResourceType type) argument
73 insertResourceAsReference( SkPDFResourceType type, int key, SkPDFObject* value) argument
103 getResourceName( SkPDFResourceType type, int key) argument
110 insertResource( SkPDFResourceType type, int key, SkPDFObject* value) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/lhash/
H A Dlhash.h93 /* Macros for declaring and implementing type-safe wrappers for LHASH callbacks.
96 * before deferring to the underlying type-specific callbacks. NB: It is
199 #define LHASH_OF(type) struct lhash_st_##type
201 #define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
203 #define CHECKED_LHASH_OF(type,lh) \
204 ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
207 #define LHM_lh_new(type, name) \
208 ((LHASH_OF(type) *)lh_ne
[all...]
/external/openssl/crypto/lhash/
H A Dlhash.h93 /* Macros for declaring and implementing type-safe wrappers for LHASH callbacks.
96 * before deferring to the underlying type-specific callbacks. NB: It is
199 #define LHASH_OF(type) struct lhash_st_##type
201 #define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
203 #define CHECKED_LHASH_OF(type,lh) \
204 ((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
207 #define LHM_lh_new(type, name) \
208 ((LHASH_OF(type) *)lh_ne
[all...]
/external/chromium_org/chrome/browser/storage_monitor/
H A Dstorage_info_unittest.cc27 StorageInfo::Type type; local
29 ASSERT_TRUE(StorageInfo::CrackDeviceId(kMtpDeviceId, &type, &id));
31 EXPECT_EQ(StorageInfo::MTP_OR_PTP, type);
35 chrome::StorageInfo::Type type; local
37 ASSERT_TRUE(StorageInfo::CrackDeviceId(kImageCaptureDeviceId, &type, &id));
38 EXPECT_EQ(StorageInfo::MAC_IMAGE_CAPTURE, type);
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_test_util.cc20 void ThreadNotifier::Notify(int type, argument
22 Notify(type, content::NotificationService::AllSources(), details);
25 void ThreadNotifier::Notify(int type, argument
31 base::Bind(&ThreadNotifier::NotifyTask, this, type, source, details));
37 void ThreadNotifier::NotifyTask(int type, argument
40 content::NotificationService::current()->Notify(type, source, details);
/external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/
H A Dpopup.js9 var type = this.id;
12 console.log(type+' setting for '+pattern+': '+setting);
13 chrome.contentSettings[type].set({
27 types.forEach(function(type) {
28 chrome.contentSettings[type].get({
33 document.getElementById(type).value = details.setting;

Completed in 760 milliseconds

<<11121314151617181920>>