Searched refs:type (Results 251 - 275 of 7554) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCommonToken.cs42 int type; field in class:Antlr.Runtime.CommonToken
70 public CommonToken( int type )
72 this.type = type;
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop ) argument
78 this.type = type;
84 public CommonToken( int type, string text ) argument
86 this.type = type;
[all...]
/external/clang/test/SemaTemplate/
H A Dnested-name-spec-template.cpp8 typedef int type; typedef in struct:N::M::Promote
12 typedef int type; typedef in struct:N::M::Promote
16 typedef double type; typedef in struct:N::M::Promote
19 Promote<short>::type *ret_intptr(int* ip) { return ip; }
20 Promote<int>::type *ret_intptr2(int* ip) { return ip; }
23 M::Promote<int>::type *ret_intptr3(int* ip) { return ip; }
24 M::template Promote<int>::type *ret_intptr4(int* ip) { return ip; } // expected-warning{{'template' keyword outside of a template}}
28 N::M::Promote<int>::type *ret_intptr5(int* ip) { return ip; }
29 ::N::M::Promote<int>::type *ret_intptr6(int* ip) { return ip; }
52 typedef typename N::template B<T>::type typ typedef in struct:TestA
86 typedef int type; typedef in struct:PR7385::has_xxx0
125 typedef typename T::template f<U> type; // expected-error{{template name refers to non-type template 'X::f'}} typedef in struct:PR9226::Y
[all...]
H A Dms-if-exists.cpp4 typedef int type; typedef in struct:Nontemplate
9 __if_exists(Nontemplate::type) {
10 typedef Nontemplate::type type; typedef
26 X<int>::type i1;
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
29 X<int>::type4 i4; // expected-error{{no type named 'type4' in 'X<int>'}}
H A Dext-vector-type.cpp4 typedef T __attribute__((ext_vector_type(Length))) type; typedef in struct:make1
8 make1<int, 5>::type x;
14 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{zero vector size}} typedef in struct:make2
23 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type 's'}} typedef in struct:make3
34 typedef T __attribute__((ext_vector_type(Length))) type; typedef in struct:make4
38 make4<int, 4>::type x;
45 typedef int_ptr __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type}} typedef in struct:make5
50 typedef int __attribute__((ext_vector_type(Length))) type; typedef in struct:make6
[all...]
H A Ddeduction.cpp39 typedef T type; typedef in struct:Replace
42 // Replacement of the whole type.
45 typedef Arg1 type; typedef in struct:Replace
50 typedef Arg2 type; typedef in struct:Replace
56 typedef typename Replace<T, Arg1, Arg2>::type const type; typedef in class:Replace::Replace
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type; typedef in struct:Replace
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T2, Arg1, Arg2>::type> typ typedef in struct:Replace
76 typedef TT<typename Replace<T1, Arg1, Arg2>::type, Arg2> type; typedef in struct:Replace
127 template<typename T> struct Const { typedef void const type; }; typedef in struct:test2::Const
[all...]
/external/elfutils/backends/
H A Dia64_regs.c40 int *bits, int *type)
51 *type = DW_ATE_signed;
85 *type = DW_ATE_float;
106 *type = DW_ATE_float;
116 *type = DW_ATE_address;
129 *type = regno == 331 ? DW_ATE_address : DW_ATE_unsigned;
136 *type = DW_ATE_unsigned;
172 *type = DW_ATE_unsigned;
174 *type = DW_ATE_address;
210 *type
37 ia64_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
[all...]
/external/icu4c/tools/toolutil/
H A Ddbgutil.cpp25 static const UnicodeString& _fieldString(UDebugEnumType type, int32_t field, UnicodeString& fillin) { argument
26 const char *str = udbg_enumName(type, field);
77 U_CAPI const UnicodeString& U_EXPORT2 udbg_enumString(UDebugEnumType type, int32_t field) { argument
81 if(type<0||type>=UDBG_ENUM_COUNT) {
83 //fprintf(stderr, "** returning out of range on %d\n",type);
87 int32_t count = udbg_enumCount(type);
88 //fprintf(stderr, "enumString [%d,%d]: typecount %d, fieldcount %d\n", type,field,UDBG_ENUM_COUNT,count);
91 return strs[type][count];
92 } else { return strs[type][fiel
96 udbg_enumByString(UDebugEnumType type, const UnicodeString& string) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
H A DCameraHelper.java64 int type = ((Number) structure.getFieldValue("type")).intValue();
65 if (type != 0 && type != 1) {
66 LOGGER.log(Level.WARNING, "Unknown camera type: {0}. Perspective camera is being used!", type);
67 type = 0;
69 //type==0 - perspective; type==1 - orthographic; perspective is used as default
70 result.setParallelProjection(type
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DSoftLinking.h83 #define SOFT_LINK_POINTER(framework, name, type) \
84 static type init##name(); \
85 static type (*get##name)() = init##name; \
86 static type pointer##name; \
88 static type name##Function() \
93 static type init##name() \
97 pointer##name = static_cast<type>(*pointer); \
102 #define SOFT_LINK_CONSTANT(framework, name, type) \
103 static type init##name(); \
104 static type (*ge
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java17 private final ASN1ObjectIdentifier type; field in class:CMSProcessableByteArray
27 ASN1ObjectIdentifier type,
30 this.type = type;
52 return type;
26 CMSProcessableByteArray( ASN1ObjectIdentifier type, byte[] bytes) argument
/external/chromium/webkit/glue/
H A Dwebmenuitem.cc8 : type(OPTION),
18 type(static_cast<Type>(item.type)),
28 type(item.type),
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp8.cpp71 typedef Base type; typedef in struct:test2::Base
79 using Base<T>::type::foo; //expected-error {{redeclaration of using decl}}
89 typedef int type; typedef in namespace:test3::N
95 using N::type;
96 using N::type;
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp39 typedef T type; typedef in struct:remove_reference
44 typedef T type; typedef in struct:remove_reference
49 typedef T type; typedef in struct:remove_reference
53 template<typename T> int &f(typename remove_reference<T>::type&);
54 template<typename T> float &f(typename remove_reference<T>::type&&);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstType.java19 import com.android.dx.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
61 /** {@code non-null;} instance corresponding to the type {@code boolean[]} */
64 /** {@code non-null;} instance corresponding to the type {@code byte[]} */
67 /** {@code non-null;} instance corresponding to the type {@code char[]} */
70 /** {@code non-null;} instance corresponding to the type {@code double[]} */
73 /** {@code non-null;} instance corresponding to the type {@code float[]} */
76 /** {@code non-null;} instance corresponding to the type {@code long[]} */
79 /** {@code non-null;} instance corresponding to the type {@code int[]} */
82 /** {@code non-null;} instance corresponding to the type {
86 private final Type type; field in class:CstType
125 intern(Type type) argument
143 CstType(Type type) argument
[all...]
/external/elfutils/libelf/
H A Delf32_fsize.c1 /* Return the size of an object file type.
64 elfw2(LIBELFBITS, fsize) (type, count, version)
65 Elf_Type type;
77 if (unlikely (type >= ELF_T_NUM))
85 * __libelf_type_sizes[version - 1][ELFW(ELFCLASS,LIBELFBITS) - 1][type]);
88 * __libelf_type_sizes[0][ELFW(ELFCLASS,LIBELFBITS) - 1][type]);
/external/chromium/chrome/browser/ui/views/
H A Daccessibility_event_router_views.h76 // Checks the type of the view and calls one of the more specific
79 views::View* view, NotificationType type);
87 views::View* view, NotificationType type, Profile* profile);
89 views::View* view, NotificationType type, Profile* profile);
91 views::View* view, NotificationType type, Profile* profile);
93 views::View* view, NotificationType type, Profile* profile);
95 views::View* view, NotificationType type, Profile* profile);
97 views::View* view, NotificationType type, Profile* profile);
99 views::View* view, NotificationType type, Profile* profile);
101 views::View* view, NotificationType type, Profil
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DEnumMultiset.java37 public static <E extends Enum<E>> EnumMultiset<E> create(Class<E> type) { argument
38 return new EnumMultiset<E>(type);
58 private transient Class<E> type; field in class:EnumMultiset
61 private EnumMultiset(Class<E> type) { argument
62 super(WellBehavedMap.wrap(new EnumMap<E, Count>(type)));
63 this.type = type;
69 stream.writeObject(type);
74 * @serialData the {@code Class<E>} for the enum type, the number of distinct
83 type
[all...]
/external/mesa3d/src/glsl/
H A Dir_div_to_mul_rcp.cpp65 if (ir->operands[1]->type->base_type != GLSL_TYPE_INT &&
66 ir->operands[1]->type->base_type != GLSL_TYPE_UINT) {
70 ir->operands[1]->type,
86 ir->operands[1]->type->vector_elements,
87 ir->operands[1]->type->matrix_columns);
89 if (ir->operands[1]->type->base_type == GLSL_TYPE_INT)
94 op1 = new(ir) ir_expression(ir_unop_rcp, op1->type, op1, NULL);
97 ir->operands[0]->type->vector_elements,
98 ir->operands[0]->type->matrix_columns);
100 if (ir->operands[0]->type
[all...]
/external/qemu/
H A Dthunk.h42 #define MK_PTR(type) TYPE_PTR, type
43 #define MK_ARRAY(type, size) TYPE_ARRAY, size, type
83 int type, size; local
86 type = *type_ptr;
87 switch(type) {
120 int type; local
123 type = *type_ptr;
124 switch(type) {
[all...]
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DRotateTransformOperation.h34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) argument
36 return adoptRef(new RotateTransformOperation(0, 0, 1, angle, type));
39 static PassRefPtr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) argument
41 return adoptRef(new RotateTransformOperation(x, y, z, angle, type));
71 RotateTransformOperation(double x, double y, double z, double angle, OperationType type) argument
76 , m_type(type)
78 ASSERT(type == ROTATE_X || type == ROTATE_Y || type == ROTATE_Z || type
[all...]
H A DTranslateTransformOperation.h35 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) argument
37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
40 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
70 return m_x.type() == Percent || m_y.type() == Percent;
75 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
79 , m_type(type)
81 ASSERT(type == TRANSLATE_X || type
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dgen_insn_test.pl237 my $type = $RegTypes{$1};
247 type => $type,
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
274 my $type = "st";
284 type => $type,
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
310 my $type = $1;
321 my $type
[all...]
/external/valgrind/main/none/tests/x86/
H A Dgen_insn_test.pl214 my $type = $RegTypes{$1};
224 type => $type,
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
251 my $type = "st";
261 type => $type,
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
287 my $type = $1;
298 my $type
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmetafunctions.cpp62 typedef TT<int, int> type; typedef in struct:Replace::EverythingToInt
65 int check0[is_same<EverythingToInt<tuple<double, float>>::type,
72 typedef int_tuple<Values*2 ...> type; typedef in struct:Math::double_values
75 int check0[is_same<double_values<1, 2, -3>::type,
80 typedef int_tuple<(Values*Values)...> type; typedef in struct:Math::square
83 int check1[is_same<square<1, 2, -3>::type,
90 typedef int_tuple<(Values*Values)...> type; typedef in struct:Math::square_tuple
93 int check2[is_same<square_tuple<int_tuple<1, 2, -3> >::type,
160 typedef int_tuple<Indices...> type; typedef in struct:Indices::build_indices_impl
166 int check0[is_same<build_indices<5>::type,
173 typedef tuple<typename Meta<T>::type...> type; typedef in struct:TemplateTemplateApply::apply_each
178 typedef T& type; typedef in struct:TemplateTemplateApply::add_reference
183 typedef T* type; typedef in struct:TemplateTemplateApply::add_pointer
188 typedef const T type; typedef in struct:TemplateTemplateApply::add_const
197 typedef typename apply_each<T, Meta...>::type type; typedef in struct:TemplateTemplateApply::apply_each_indirect
206 typedef typename apply_each<T, Meta::template apply...>::type type; typedef in struct:TemplateTemplateApply::apply_each_nested
212 typedef T& type; typedef in struct:TemplateTemplateApply::add_reference_meta::apply
219 typedef T* type; typedef in struct:TemplateTemplateApply::add_pointer_meta::apply
226 typedef const T type; typedef in struct:TemplateTemplateApply::add_const_meta::apply
263 typedef int type; typedef in struct:SuperReplace::replace_with_int
268 typedef TT<typename replace_with_int<Types>::type...> type; typedef in struct:SuperReplace::replace_with_int
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp65 typedef places<X1...,X2...> type; typedef in struct:ParameterPackExpansions::append_places
69 struct make_places : append_places<typename make_places<N/2>::type,
70 typename make_places<N-N/2>::type> {};
71 template<> struct make_places<0> { typedef places<> type; }; typedef in struct:ParameterPackExpansions::make_places
72 template<> struct make_places<1> { typedef places<_> type; }; typedef in struct:ParameterPackExpansions::make_places
75 template<place> struct inner { typedef T type; }; typedef in struct:ParameterPackExpansions::wrap::inner
83 typedef types<typename Take<_>::type...> take;
84 typedef types<typename Drop<_>::type...> drop;
89 using type = typename takedrop_impl<typename make_places<N>::type>
[all...]

Completed in 645 milliseconds

<<11121314151617181920>>