Searched defs:base_type (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/webrtc/base/
H A Dsigslotrepeater.h30 typedef signal0<mt_policy> base_type; typedef in class:sigslot::repeater0
34 repeater0(const this_type& s) : base_type(s) { }
37 void repeat(base_type &s) { s.connect(this, &this_type::reemit); }
38 void stop(base_type &s) { s.disconnect(this); }
46 typedef signal1<arg1_type, mt_policy> base_type; typedef in class:sigslot::repeater1
50 repeater1(const this_type& s) : base_type(s) { }
53 void repeat(base_type& s) { s.connect(this, &this_type::reemit); }
54 void stop(base_type &s) { s.disconnect(this); }
62 typedef signal2<arg1_type, arg2_type, mt_policy> base_type; typedef in class:sigslot::repeater2
66 repeater2(const this_type& s) : base_type(
79 typedef signal3<arg1_type, arg2_type, arg3_type, mt_policy> base_type; typedef in class:sigslot::repeater3
[all...]
/external/pdfium/core/src/fxge/agg/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/oprofile/libregex/
H A Ddemangle_java_symbol.cpp23 * base_type | object_type | array_type
24 * base_type:
45 bool base_type(string & result, function in namespace:__anon28459
74 if (base_type(result, begin, end))
/external/chromium_org/third_party/mesa/src/src/glsl/
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;
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) {
/external/chromium_org/third_party/mesa/src/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/glsl/
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;
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...]
/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/chromium_org/third_party/mesa/src/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/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/clang/utils/VtableTest/
H A Dgen.cc100 int base_type = 1; local
106 base_type = 3;
129 base_present[s][base] = base_type;
/external/chromium_org/tools/clang/plugins/
H A DFindBadConstructsConsumer.cpp473 const TemplateSpecializationType* base_type = local
476 if (!base_type) {
484 TemplateName name = base_type->getTemplateName();
/external/chromium_org/v8/src/compiler/
H A Djs-typed-lowering.cc532 Type* base_type = NodeProperties::GetBounds(base).upper; local
537 if (base_type->IsConstant() && key_type->Is(Type::Integral32()) &&
538 base_type->AsConstant()->Value()->IsJSTypedArray()) {
540 JSTypedArray* array = JSTypedArray::cast(*base_type->AsConstant()->Value());
573 Type* base_type = NodeProperties::GetBounds(base).upper; local
577 if (key_type->Is(Type::Integral32()) && base_type->IsConstant() &&
578 base_type->AsConstant()->Value()->IsJSTypedArray()) {
580 JSTypedArray* array = JSTypedArray::cast(*base_type->AsConstant()->Value());
/external/clang/test/SemaCXX/
H A Dtypo-correction.cpp39 // typo corrections, this example would not trigger a suggestion as "base_type"
40 // is a closer match to "basetype" than is "BaseType" but "base_type" does not
44 static int base_type; // expected-note {{'base_type' declared here}} member in struct:Derived
51 return st->Base_Type; // expected-error{{no member named 'Base_Type' in 'Derived'; did you mean 'base_type'?}}
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h378 typedef OnDiskChainedHashTable<Info> base_type; typedef in class:llvm::OnDiskIterableChainedHashTable
379 typedef typename base_type::internal_key_type internal_key_type;
380 typedef typename base_type::external_key_type external_key_type;
381 typedef typename base_type::data_type data_type;
382 typedef typename base_type::hash_value_type hash_value_type;
383 typedef typename base_type::offset_type offset_type;
390 : base_type(NumBuckets, NumEntries, Buckets, Base, InfoObj),

Completed in 6058 milliseconds

12