Searched refs:type (Results 551 - 575 of 19236) sorted by relevance

<<21222324252627282930>>

/external/llvm/test/MC/ELF/
H A Dundef.s11 .type .Lsym5,@object
12 .type sym6,@object
/external/mesa3d/src/glsl/
H A Dstandalone_scaffolding.h41 _mesa_new_shader(struct gl_context *ctx, GLuint name, GLenum type);
44 _mesa_shader_debug(struct gl_context *ctx, GLenum type, GLuint id,
/external/mesa3d/src/glx/
H A Dcompsize.c38 __glElementsPerGroup(GLenum format, GLenum type) argument
44 switch (type) {
98 ** Return the number of bytes per element, based on the element type (other
102 __glBytesPerElement(GLenum type) argument
104 switch (type) {
136 ** Compute memory required for internal packed array of data of given type
141 GLenum format, GLenum type, GLenum target)
167 ** Zero is returned if either format or type are invalid.
169 components = __glElementsPerGroup(format, type);
170 if (type
140 __glImageSize(GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLenum target) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dglformats.h38 _mesa_type_is_packed(GLenum type);
41 _mesa_sizeof_type( GLenum type );
44 _mesa_sizeof_packed_type( GLenum type );
50 _mesa_bytes_per_pixel( GLenum format, GLenum type );
53 _mesa_is_type_integer(GLenum type);
56 _mesa_is_type_unsigned(GLenum type);
62 _mesa_is_enum_format_or_type_integer(GLenum format, GLenum type);
99 GLenum format, GLenum type);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DChunkOffsetBox.java10 public ChunkOffsetBox(String type) { argument
11 super(type);
/external/objenesis/main/src/org/objenesis/instantiator/
H A DSerializationInstantiatorHelper.java33 * @param type Serializable class for which the first non-serializable superclass is to be found
34 * @return The first non-serializable superclass of 'type'.
37 public static Class getNonSerializableSuperClass(Class type) { argument
38 Class result = type;
/external/objenesis/main/src/org/objenesis/strategy/
H A DStdInstantiatorStrategy.java47 * @param type Class to instantiate
50 public ObjectInstantiator newInstantiatorOf(Class type) { argument
54 return new Sun13Instantiator(type);
59 return new JRockit131Instantiator(type);
69 return new JRockitLegacyInstantiator(type);
75 return new AndroidInstantiator(type);
78 return new GCJInstantiator(type);
81 return new PercInstantiator(type);
89 return new SunReflectionFactoryInstantiator(type);
/external/openfst/src/extensions/far/
H A Dmain.cc34 // Return the 'FarType' value corresponding to a far type name.
36 FarType type = FAR_DEFAULT; local
38 type = FAR_FST;
40 type = FAR_STLIST;
42 type = FAR_STTABLE;
44 type = FAR_DEFAULT;
45 return type;
50 string FarTypeToString(FarType type) { argument
51 switch (type) {
71 FSTERROR() << "Unknown FAR entry type
[all...]
/external/qemu/include/android/
H A Duser-events.h25 void user_event_generic(int type, int code, int value);
31 typedef void QEMUPutGenericEvent(void* opaque, int type, int code, int value);
/external/skia/src/animator/
H A DSkOpArray.cpp13 SkOpArray::SkOpArray(SkOperand2::OpType type) : fType(type) { argument
/external/skia/src/gpu/effects/
H A DGrVertexEffect.h28 void addVertexAttrib(GrSLType type) { argument
30 fVertexAttribTypes.push_back(type);
/external/skia/src/gpu/gl/debug/
H A DGrShaderObj.h24 void setType(GrGLenum type) { fType = type; } argument
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DParsedDirective.java33 int type)
37 m_valueType = type;
30 ParsedDirective( String name, String value, int type) argument
/external/smack/src/com/novell/sasl/client/
H A DParsedDirective.java33 int type)
37 m_valueType = type;
30 ParsedDirective( String name, String value, int type) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableAnnotationEncodedValue.java46 @Nonnull protected final String type; field in class:ImmutableAnnotationEncodedValue
49 public ImmutableAnnotationEncodedValue(@Nonnull String type, argument
51 this.type = type;
55 public ImmutableAnnotationEncodedValue(@Nonnull String type, argument
57 this.type = type;
70 @Nonnull @Override public String getType() { return type; }
/external/stlport/stlport/stl/
H A D_move.h29 constexpr typename tr1::remove_reference<T>::type&& move(T&& t) noexcept {
30 return static_cast<typename tr1::remove_reference<T>::type&&>(t);
/external/tcpdump/
H A Dprint-msdp.c41 unsigned int type, len; local
45 type = *sp;
47 if (len > 1500 || len < 3 || type == 0 || type > MSDP_TYPE_MAX)
52 type = *sp;
60 switch (type) {
63 if (type == 1)
92 (void)printf(" [type=%d len=%d]", type, len);
/external/webp/include/webp/
H A Dtypes.h41 #define WEBP_EXTERN(type) extern type
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCommonToken.cs40 int type; field in class:Antlr.Runtime.CommonToken
67 public CommonToken(int type) { argument
68 this.type = type;
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) { argument
73 this.type = type;
79 public CommonToken(int type, string text) { argument
80 this.type = type;
[all...]
/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/chromium_org/chrome/browser/ui/fullscreen/
H A Dfullscreen_exit_bubble_type.cc18 base::string16 GetLabelTextForType(FullscreenExitBubbleType type, argument
37 switch (type) {
63 switch (type) {
94 base::string16 GetDenyButtonTextForType(FullscreenExitBubbleType type) { argument
95 switch (type) {
115 bool ShowButtonsForType(FullscreenExitBubbleType type) { argument
116 return type == FEB_TYPE_FULLSCREEN_BUTTONS ||
117 type == FEB_TYPE_FULLSCREEN_MOUSELOCK_BUTTONS ||
118 type == FEB_TYPE_MOUSELOCK_BUTTONS;
121 void PermissionRequestedByType(FullscreenExitBubbleType type, argument
[all...]
/external/chromium_org/ppapi/cpp/
H A Dvar.h20 /// A generic type used for passing data types between the module and the page.
26 /// Default constructor. Creates a <code>Var</code> of type
30 /// A constructor used to create a <code>Var</code> of type <code>Null</code>.
33 /// A constructor used to create a <code>Var</code> of type <code>Bool</code>.
108 bool is_undefined() const { return var_.type == PP_VARTYPE_UNDEFINED; }
113 bool is_null() const { return var_.type == PP_VARTYPE_NULL; }
118 bool is_bool() const { return var_.type == PP_VARTYPE_BOOL; }
123 bool is_string() const { return var_.type == PP_VARTYPE_STRING; }
128 bool is_object() const { return var_.type == PP_VARTYPE_OBJECT; }
133 bool is_array() const { return var_.type
[all...]
/external/chromium_org/third_party/icu/source/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_TOOLUTIL_API 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/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dlist.css56 input[type='input'],
57 input[type='password'],
58 input[type='search'],
59 input[type='text'],
60 input[type='url']),
63 input[type='button'],
64 input[type='submit'],
/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...]

Completed in 815 milliseconds

<<21222324252627282930>>