Searched defs:base_type (Results 1 - 25 of 30) sorted by path

12

/external/ImageMagick/MagickCore/
H A Didentify.c470 base_type,
687 base_type=GetImageType(image);
688 if (type != base_type)
690 MagickTypeOptions,(ssize_t) base_type));
468 base_type, local
/external/ImageMagick/coders/
H A Djson.c706 base_type,
792 base_type=GetImageType(image);
793 if (type != base_type)
795 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) base_type));
701 base_type, local
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp40 // typo corrections, this example would not trigger a suggestion as "base_type"
41 // is a closer match to "basetype" than is "BaseType" but "base_type" does not
45 static int base_type; // expected-note {{'base_type' declared here}} member in struct:Derived
52 return st->Base_Type; // expected-error{{no member named 'Base_Type' in 'Derived'; did you mean 'base_type'?}}
/external/clang/utils/VtableTest/
H A Dgen.cc100 int base_type = 1; local
106 base_type = 3;
129 base_present[s][base] = base_type;
/external/flatbuffers/include/flatbuffers/
H A Didl.h124 : base_type(_base_type),
131 return base_type == o.base_type && element == o.element &&
139 BaseType base_type; member in struct:flatbuffers::Type
273 return type.base_type == BASE_TYPE_STRUCT && type.struct_def->fixed;
277 return IsStruct(type) ? type.struct_def->bytesize : SizeOf(type.base_type);
281 return IsStruct(type) ? type.struct_def->minalign : SizeOf(type.base_type);
319 return a.base_type == b.base_type && a.element == b.element &&
H A Dreflection.h34 inline size_t GetTypeSize(reflection::BaseType base_type) { argument
37 return sizes[base_type];
42 inline size_t GetTypeSizeInline(reflection::BaseType base_type, argument
45 if (base_type == reflection::Obj &&
49 return GetTypeSize(base_type);
64 assert(sizeof(T) == GetTypeSize(field.type()->base_type()));
72 assert(sizeof(T) == GetTypeSize(field.type()->base_type()));
80 assert(field.type()->base_type() == reflection::String);
87 assert(field.type()->base_type() == reflection::Vector &&
103 assert(field.type()->base_type()
[all...]
H A Dreflection_generated.h80 BaseType base_type() const { function in struct:reflection::FLATBUFFERS_FINAL_CLASS
101 void add_base_type(BaseType base_type) { argument
102 fbb_.AddElement<int8_t>(Type::VT_BASE_TYPE, static_cast<int8_t>(base_type), 0);
124 BaseType base_type = None,
130 builder_.add_base_type(base_type);
/external/flatbuffers/src/
H A Dreflection.cpp90 if (fielddef.type()->base_type() == reflection::String)
221 auto base_type = fielddef.type()->base_type(); local
223 if (base_type <= reflection::Double) continue;
228 auto subobjectdef = base_type == reflection::Obj ?
238 switch (base_type) {
373 switch (fielddef.type()->base_type()) {
452 auto base_type = fielddef.type()->base_type(); local
453 switch (base_type) {
[all...]
/external/libcxx/test/std/experimental/utilities/meta/meta.type.synop/
H A Dmeta.rel.pass.cpp17 struct base_type {}; struct
18 struct derived_type : base_type {};
36 typedef base_type T;
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h435 typedef OnDiskChainedHashTable<Info> base_type; typedef in class:llvm::OnDiskIterableChainedHashTable
436 typedef typename base_type::internal_key_type internal_key_type;
437 typedef typename base_type::external_key_type external_key_type;
438 typedef typename base_type::data_type data_type;
439 typedef typename base_type::hash_value_type hash_value_type;
440 typedef typename base_type::offset_type offset_type;
497 : base_type(NumBuckets, NumEntries, Buckets, Base, InfoObj),
/external/mesa3d/src/glsl/
H A Dglsl_types.cpp49 glsl_base_type base_type, unsigned vector_elements,
52 base_type(base_type),
70 base_type(GLSL_TYPE_SAMPLER),
83 base_type(GLSL_TYPE_STRUCT),
312 switch (base_type) {
332 while (type->base_type == GLSL_TYPE_ARRAY)
336 switch (type->base_type) {
366 base_type(GLSL_TYPE_ARRAY),
396 glsl_type::get_instance(unsigned base_type, unsigne argument
48 glsl_type(GLenum gl_type, glsl_base_type base_type, unsigned vector_elements, unsigned matrix_columns, const char *name) argument
[all...]
H A Dglsl_types.h78 glsl_base_type base_type; member in struct:glsl_type
218 static const glsl_type *get_instance(unsigned base_type, unsigned rows,
305 && (base_type >= GLSL_TYPE_UINT)
306 && (base_type <= GLSL_TYPE_BOOL);
316 && (base_type >= GLSL_TYPE_UINT)
317 && (base_type <= GLSL_TYPE_BOOL);
326 return (matrix_columns > 1) && (base_type == GLSL_TYPE_FLOAT);
334 return (base_type >= GLSL_TYPE_UINT) && (base_type <= GLSL_TYPE_FLOAT);
342 return (base_type
[all...]
H A Dir_reader.cpp135 const glsl_type *base_type = read_type(s_base_type); local
136 if (base_type == NULL) {
141 return glsl_type::get_array_instance(base_type, s_size->value());
809 if (type->base_type == GLSL_TYPE_FLOAT) {
823 switch (type->base_type) {
H A Dlink_uniform_initializers.cpp52 const enum glsl_base_type base_type,
56 switch (base_type) {
121 const enum glsl_base_type base_type = local
122 val->array_elements[0]->type->base_type;
130 base_type,
136 if (base_type == GLSL_TYPE_SAMPLER) {
144 val->type->base_type,
50 copy_constant_to_storage(union gl_constant_value *storage, const ir_constant *val, const enum glsl_base_type base_type, const unsigned int elements) argument
H A Dlink_uniforms.cpp296 const glsl_type *base_type; local
299 base_type = type->fields.array;
302 base_type = type;
305 if (base_type->is_sampler()) {
313 const gl_texture_index target = base_type->sampler_index();
314 const unsigned shadow = base_type->sampler_shadow;
328 this->uniforms[id].type = base_type;
/external/mesa3d/src/glsl/tests/
H A Dset_uniform_initializer_tests.cpp164 enum glsl_base_type base_type,
168 glsl_type::get_instance(base_type, rows, columns);
174 generate_data(mem_ctx, base_type, columns, rows, val);
311 enum glsl_base_type base_type,
316 glsl_type::get_instance(base_type, rows, columns);
329 generate_array_data(mem_ctx, base_type, columns, rows,
162 non_array_test(void *mem_ctx, struct gl_shader_program *prog, unsigned actual_index, const char *name, enum glsl_base_type base_type, unsigned columns, unsigned rows) argument
309 array_test(void *mem_ctx, struct gl_shader_program *prog, unsigned actual_index, const char *name, enum glsl_base_type base_type, unsigned columns, unsigned rows, unsigned array_size, unsigned excess_data_size) argument
H A Duniform_initializer_utils.cpp83 switch (type->base_type) {
109 switch (type->base_type) {
132 generate_data(void *mem_ctx, enum glsl_base_type base_type, argument
139 glsl_type::get_instance(base_type, rows, columns);
146 generate_array_data(void *mem_ctx, enum glsl_base_type base_type, argument
153 glsl_type::get_instance(base_type, rows, columns);
188 if (val->type->base_type == GLSL_TYPE_ARRAY) {
206 switch (val->type->base_type) {
/external/mesa3d/src/mesa/main/
H A DAPIspec.py288 if dst.base_type() in conversions.get(src.base_type(), []):
314 def base_type(self): member in class:Parameter
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/pdfium/third_party/agg23/
H A Dagg_conv_dash.h30 typedef conv_adaptor_vcgen<VertexSource, vcgen_dash, Markers> base_type; typedef in struct:agg::conv_dash
37 base_type::generator().remove_all_dashes();
41 base_type::generator().add_dash(dash_len, gap_len);
45 base_type::generator().dash_start(ds);
49 base_type::generator().shorten(s);
53 return base_type::generator().shorten();
H A Dagg_conv_stroke.h31 typedef conv_adaptor_vcgen<VertexSource, vcgen_stroke, Markers> base_type; typedef in struct:agg::conv_stroke
38 base_type::generator().line_cap(lc);
42 base_type::generator().line_join(lj);
46 base_type::generator().inner_join(ij);
50 return base_type::generator().line_cap();
54 return base_type::generator().line_join();
58 return base_type::generator().inner_join();
62 base_type::generator().width(w);
66 base_type::generator().miter_limit(ml);
70 base_type
[all...]
H A Dagg_vertex_sequence.h31 typedef pod_deque<T, S> base_type; typedef in class:agg::vertex_sequence
39 if(base_type::size() > 1) {
40 if(!(*this)[base_type::size() - 2]((*this)[base_type::size() - 1])) {
41 base_type::remove_last();
44 base_type::add(val);
49 base_type::remove_last();
55 while(base_type::size() > 1) {
56 if((*this)[base_type::size() - 2]((*this)[base_type
[all...]
/external/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc335 static int InsertEmptyWeakref(PyTypeObject *base_type) { argument
342 PyObject *subclasses = base_type->tp_subclasses;
/external/protobuf/src/google/protobuf/stubs/
H A Dcallback.h345 typedef typename remove_reference<T>::type base_type; typedef in struct:google::protobuf::internal::InternalConstRef
346 typedef const base_type& type;
/external/selinux/libsepol/src/
H A Dlink.c441 type_datum_t *type, *base_type, *new_type = NULL; local
451 base_type = hashtab_search(state->base->p_types.table, id);
452 if (base_type != NULL) {
458 && base_type->flavor != TYPE_ATTRIB) {
464 && base_type->flavor == TYPE_ATTRIB) {
471 base_type->flags |= (type->flags & TYPE_FLAGS_PERMISSIVE);
499 base_type = new_type;
510 new_type->s.value = base_type->s.value;
521 state->cur->map[SYM_TYPES][type->s.value - 1] = base_type->s.value;
857 type_datum_t *type, *base_type, *new_typ local
[all...]

Completed in 643 milliseconds

12