Searched defs:type (Results 51 - 75 of 3757) sorted by relevance

1234567891011>>

/external/skia/src/animator/
H A DSkOpArray.h19 SkOpArray(SkOperand2::OpType type);
22 void setType(SkOperand2::OpType type) { argument
23 fType = type;
H A DSkTypedArray.h19 SkTypedArray(SkDisplayTypes type);
23 void setType(SkDisplayTypes type) { argument
25 fType = type;
/external/skia/src/core/
H A DSkFlattenableSerialization.cpp24 SkFlattenable::Type type) {
26 return buffer.readFlattenable(type);
23 SkValidatingDeserializeFlattenable(const void* data, size_t size, SkFlattenable::Type type) argument
/external/skia/src/gpu/
H A DGrContextFactory.cpp22 GrContext* GrContextFactory::get(GLContextType type, GrGLStandard forcedGpuAPI) { argument
28 if (fContexts[i].fType == type) {
35 switch (type) {
63 // Ensure NVPR is available for the NVPR type and block it from other types.
65 if (kNVPR_GLContextType == type) {
87 ctx.fType = type;
/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/toybox/toys/lsb/
H A Dmknod.c15 Create a special file NAME with a given type. TYPE is b for block device,
31 int major=0, minor=0, type; local
34 type = stridx("pcub", *toys.optargs[1]);
35 if (type == -1) perror_exit("bad type '%c'", *toys.optargs[1]);
36 if (type) {
43 if (mknod(toys.optargs[0], mode | modes[type], makedev(major, minor)))
/external/v8/src/
H A Dproperty-details-inl.h16 Representation Representation::FromType(Type* type) { argument
18 if (type->Is(Type::None())) return Representation::None();
19 if (type->Is(Type::SignedSmall())) return Representation::Smi();
20 if (type->Is(Type::Signed32())) return Representation::Integer32();
21 if (type->Is(Type::Number())) return Representation::Double();
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DTypeList.java17 package com.android.dx.rop.type;
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type); argument
/external/android-clat/
H A Dicmp.c44 * Determines whether an ICMP type is an error message.
45 * type: the ICMP type
47 int is_icmp_error(uint8_t type) { argument
48 return type == 3 || type == 11 || type == 12;
52 * Determines whether an ICMPv6 type is an error message.
53 * type: the ICMPv6 type
55 is_icmp6_error(uint8_t type) argument
63 icmp_to_icmp6_type(uint8_t type, uint8_t code) argument
91 icmp_to_icmp6_code(uint8_t type, uint8_t code) argument
126 icmp6_to_icmp_type(uint8_t type, uint8_t code) argument
151 icmp6_to_icmp_code(uint8_t type, uint8_t code) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttribute.java38 /** The type; might be empty such as for Python which has no static typing */
39 public String type; field in class:Attribute
57 * and type declarations. Also handle "int x=3" and 'T t = new T("foo")'
62 * Set name, type, initvalue, and full decl instance vars.
114 // the type is the decl minus the ID (could be empty)
115 this.type = decl.substring(0,start);
117 this.type += decl.substring(stop,rightEdgeOfDeclarator+1);
119 this.type = type.trim();
120 if ( this.type
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathFactory.java43 * @param type One of {@link org.apache.xpath.XPath#SELECT} or
49 PrefixResolver prefixResolver, int type);
48 create(String exprString, SourceLocator locator, PrefixResolver prefixResolver, int type) argument
/external/boringssl/src/tool/
H A Dinternal.h43 ArgumentType type; member in struct:argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSAbsentContent.java16 private final ASN1ObjectIdentifier type; field in class:CMSAbsentContent
24 ASN1ObjectIdentifier type)
26 this.type = type;
47 return type;
23 CMSAbsentContent( ASN1ObjectIdentifier type) argument
/external/cblas/testing/
H A Dauxiliary.c8 void get_transpose_type(char *type, enum CBLAS_TRANSPOSE *trans) { argument
9 if( (strncmp( type,"n",1 )==0)||(strncmp( type,"N",1 )==0) )
11 else if( (strncmp( type,"t",1 )==0)||(strncmp( type,"T",1 )==0) )
13 else if( (strncmp( type,"c",1 )==0)||(strncmp( type,"C",1 )==0) )
18 void get_uplo_type(char *type, enum CBLAS_UPLO *uplo) { argument
19 if( (strncmp( type,"u",1 )==0)||(strncmp( type,"
25 get_diag_type(char *type, enum CBLAS_DIAG *diag) argument
32 get_side_type(char *type, enum CBLAS_SIDE *side) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dcasts.h42 typedef T type; typedef in struct:ceres::identity_
47 // - Upcasting in a type hierarchy.
60 inline To implicit_cast(typename identity_<To>::type to) {
67 inline To implicit_cast(typename identity_<From>::type const &f) {
71 // When you upcast (that is, cast a pointer from type Foo to type
74 // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
75 // how do you know the pointer is really of type SubclassOfFoo? It
76 // could be a bare Foo, or of type DifferentSubclassOfFo
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp2-0x.cpp3 struct A { typedef int type; }; typedef in struct:A
5 struct X<int>* p2; // expected-error {{elaborated type refers to a type alias template}}
11 struct F<int> i; // expected-error {{elaborated type refers to a type alias template}}
12 typename F<A>::type j; // ok
16 struct Y<F>::template U<char> k; // expected-error 2{{elaborated type refers to a type alias template}}
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp4 struct type { }; struct in struct:X0
10 X0 (f0)(type);
23 struct type { }; struct in struct:X1
31 X1<T> (f0)(type);
33 X1 (f1)(type);
43 template<typename T> X1<T> (X1<T>::f1)(type) { return 0; }
/external/clang/test/CodeGen/
H A D2007-04-05-PadBeforeZeroLengthField.c2 struct c__ { unsigned int type:4; }; member in struct:c__
/external/deqp/framework/opengl/
H A DgluTextureUtil.cpp50 deUint32 type = GL_NONE; local
53 switch (texFormat.type)
96 switch (texFormat.type)
98 case TextureFormat::SNORM_INT8: type = GL_BYTE; break;
99 case TextureFormat::SNORM_INT16: type = GL_SHORT; break;
100 case TextureFormat::UNORM_INT8: type = GL_UNSIGNED_BYTE; break;
101 case TextureFormat::UNORM_INT16: type = GL_UNSIGNED_SHORT; break;
102 case TextureFormat::UNORM_SHORT_565: type = GL_UNSIGNED_SHORT_5_6_5; break;
103 case TextureFormat::UNORM_SHORT_4444: type = GL_UNSIGNED_SHORT_4_4_4_4; break;
104 case TextureFormat::UNORM_SHORT_5551: type
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.hpp43 Context (glu::ContextType type) : m_type(type) {} argument
65 virtual void texImage1D (deUint32 target, int level, deUint32 internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
66 virtual void texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
67 virtual void texImage3D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data) = DE_NULL;
68 virtual void texSubImage1D (deUint32 target, int level, int xoffset, int width, deUint32 format, deUint32 type, const void* data) = DE_NULL;
69 virtual void texSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int width, int height, deUint32 format, deUint32 type, const void* data) = DE_NULL;
70 virtual void texSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, deUint32 format, deUint32 type, const void* data) = DE_NULL;
146 virtual void vertexAttribPointer (deUint32 index, int size, deUint32 type, deBool normalized, int stride, const void *pointer) = DE_NULL;
147 virtual void vertexAttribIPointer (deUint32 index, int size, deUint32 type, in
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIdItem.java26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) { argument
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DZeroes.java19 import com.android.dx.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) { argument
39 switch (type.getBasicType()) {
50 throw new UnsupportedOperationException("no zero for type: " +
51 type.toHuman());
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DUnaryOp.java29 @Override Rop rop(TypeId<?> type) {
30 return Rops.opNot(type.ropType);
36 @Override Rop rop(TypeId<?> type) {
37 return Rops.opNeg(type.ropType);
41 abstract Rop rop(TypeId<?> type); argument
/external/elfutils/src/backends/
H A Dalpha_regs.c43 int *bits, int *type)
54 *type = DW_ATE_signed;
59 *type = DW_ATE_float;
102 *type = DW_ATE_address;
112 *type = DW_ATE_address;
116 *type = DW_ATE_address;
146 *type = DW_ATE_unsigned;
150 *type = DW_ATE_address;
154 *type = DW_ATE_address;
40 alpha_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
H A Darm_regs.c43 int *bits, int *type)
53 *type = DW_ATE_signed;
72 *type = DW_ATE_address;
83 *type = DW_ATE_float;
91 *type = DW_ATE_unsigned;
96 *type = DW_ATE_float;
105 *type = DW_ATE_float;
40 arm_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument

Completed in 697 milliseconds

1234567891011>>