Searched refs:type (Results 76 - 100 of 749) sorted by relevance

1234567891011>>

/frameworks/native/opengl/libs/EGL/
H A Dtrace.cpp133 static void TraceValue(int elementCount, char type,
137 bool isFloat = type == 'f';
169 static void TraceUniformv(int elementCount, char type,
171 TraceValue(elementCount, type, count, 1, value);
172 ALOGD("glUniform%d%c(%u, %u, value);", elementCount, type, location, count);
206 char type = name[10]; // 'f' or 'i'
214 TraceUniformv(elementCount, type, location, count, value);
242 const char* type = va_arg(argp, const char*);
243 bool isPtr = type[strlen(type)
[all...]
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp39 if (event.type == SENSOR_TYPE_ACCELEROMETER) {
48 outEvent->type = SENSOR_TYPE_ROTATION_VECTOR;
69 hwSensor.type = SENSOR_TYPE_ROTATION_VECTOR;
89 if (event.type == SENSOR_TYPE_ACCELEROMETER) {
97 outEvent->type = SENSOR_TYPE_ACCELEROMETER;
118 hwSensor.type = SENSOR_TYPE_ACCELEROMETER;
H A DGravitySensor.cpp37 if (list[i].type == SENSOR_TYPE_ACCELEROMETER) {
48 if (event.type == SENSOR_TYPE_ACCELEROMETER) {
63 outEvent->type = SENSOR_TYPE_GRAVITY;
83 hwSensor.type = SENSOR_TYPE_GRAVITY;
/frameworks/rs/driver/
H A DrsdVertexArray.cpp46 type = 0;
54 void RsdVertexArray::Attrib::set(uint32_t type, uint32_t size, uint32_t stride, argument
58 this->type = type;
70 ALOGV("va %i: slot=%i name=%s buf=%i ptr=%p size=%i type=0x%x stride=0x%x norm=%i offset=0x%x",
76 mAttribs[idx].type,
112 mAttribs[ct].type,
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java196 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
200 int type,
208 int type,
214 type,
220 ((type == GL_FLOAT) ||
221 (type == GL_UNSIGNED_BYTE) ||
222 (type == GL_FIXED)) &&
348 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
353 int type,
770 // C function void glNormalPointer ( GLenum type, GLsize
198 glColorPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
206 glColorPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
350 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
772 glNormalPointerBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
779 glNormalPointer( int type, int stride, java.nio.Buffer pointer ) argument
866 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
963 glTexCoordPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
971 glTexCoordPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
1048 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1078 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1108 glVertexPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1116 glVertexPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
1232 glColorPointer( int size, int type, int stride, int offset ) argument
1256 glDrawElements( int mode, int count, int type, int offset ) argument
1543 glNormalPointer( int type, int stride, int offset ) argument
1595 glPointSizePointerOESBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1602 glPointSizePointerOES( int type, int stride, java.nio.Buffer pointer ) argument
1622 glTexCoordPointer( int size, int type, int stride, int offset ) argument
1715 glVertexPointer( int size, int type, int stride, int offset ) argument
1827 glMatrixIndexPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1835 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
1862 glMatrixIndexPointerOES( int size, int type, int stride, int offset ) argument
1871 glWeightPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1879 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
1896 glWeightPointerOES( int size, int type, int stride, int offset ) argument
[all...]
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java74 if (tv.type == TypedValue.TYPE_FLOAT) {
78 mFromXType = tv.type;
86 if (tv.type == TypedValue.TYPE_FLOAT) {
90 mToXType = tv.type;
99 if (tv.type == TypedValue.TYPE_FLOAT) {
103 mFromYType = tv.type;
111 if (tv.type == TypedValue.TYPE_FLOAT) {
115 mToYType = tv.type;
122 mPivotXType = d.type;
127 mPivotYType = d.type;
260 resolveScale(float scale, int type, int data, int size, int psize) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleExit.java30 public static final int CHUNK_EXIT = type("EXIT");
62 Log.v("ddm-exit", "Handling " + name(request.type) + " chunk");
/frameworks/base/core/java/android/text/
H A DSpanned.java50 * 0-length spans with type SPAN_MARK_MARK behave like text marks:
65 * 0-length spans with type SPAN_POINT_POINT behave like cursors:
89 * Non-0-length spans of type SPAN_INCLUSIVE_EXCLUSIVE expand
96 * Spans of type SPAN_INCLUSIVE_INCLUSIVE expand
102 * Spans of type SPAN_EXCLUSIVE_EXCLUSIVE do not expand
110 * Non-0-length spans of type SPAN_EXCLUSIVE_INCLUSIVE expand
164 * slice of this CharSequence and whose type is the specified type
165 * or a subclass of it. Specify Object.class for the type if you
166 * want all the objects regardless of type
168 getSpans(int start, int end, Class<T> type) argument
197 nextSpanTransition(int start, int limit, Class type) argument
[all...]
/frameworks/base/core/java/android/util/
H A DProperty.java26 * @param <V> The type that this property represents.
38 * optional public <code>setName()</code> method which takes a value of the same type
41 * optional public <code>setName()</code> method which takes a value of the same type
59 * A constructor that takes an identifying name and {@link #getType() type} for the property.
61 public Property(Class<V> type, String name) { argument
63 mType = type;
101 * Returns the type for this property.
/frameworks/compile/linkloader/lib/
H A DELFSectionHeader.cpp38 char const *ELFSectionHeaderHelperMixin::getSectionTypeStr(uint32_t type) { argument
39 switch (type) {
45 // General section header type
52 // ARM-specific section header type
/frameworks/rs/
H A DrsAllocation.cpp28 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages, argument
37 setType(type);
41 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages, argument
43 Allocation *a = new Allocation(rsc, type, usages, mc, ptr);
45 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
55 const Type *type = mHal.state.type; local
56 mHal.state.dimensionX = type->getDimX();
57 mHal.state.dimensionY = type->getDimY();
58 mHal.state.dimensionZ = type
240 writePackedData(Context *rsc, const Type *type, uint8_t *dst, const uint8_t *src, bool dstPadded) argument
349 Type *type = Type::createFromStream(rsc, stream); local
[all...]
H A Dspec.h15 int type; member in struct:__anon1567
/frameworks/support/v4/gingerbread/android/support/v4/net/
H A DConnectivityManagerCompatGingerbread.java41 final int type = info.getType();
42 switch (type) {
/frameworks/support/v4/honeycomb_mr2/android/support/v4/net/
H A DConnectivityManagerCompatHoneycombMR2.java43 final int type = info.getType();
44 switch (type) {
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java36 // list of data type codes (third field in quadruplet)
38 // list of long int property values (fourth field in quadruplet, when value is integer type)
40 // list of long int property values (fourth field in quadruplet, when value is string type)
53 public void append(int handle, int property, int type, long value) { argument
60 mDataTypes[index] = type;
/frameworks/support/renderscript/v8/rs_support/
H A DrsAllocation.cpp25 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages, argument
34 setType(type);
38 Allocation * Allocation::createAllocation(Context *rsc, const Type *type, uint32_t usages, argument
40 Allocation *a = new Allocation(rsc, type, usages, mc, ptr);
42 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
52 const Type *type = mHal.state.type; local
53 mHal.state.dimensionX = type->getDimX();
54 mHal.state.dimensionY = type->getDimY();
55 mHal.state.dimensionZ = type
221 writePackedData(Context *rsc, const Type *type, uint8_t *dst, const uint8_t *src, bool dstPadded) argument
330 Type *type = Type::createFromStream(rsc, stream); local
[all...]
H A Dspec.h15 int type; member in struct:__anon1596
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephony.aidl192 * Enable a specific APN type.
194 int enableApnType(String type);
197 * Disable a specific APN type.
199 int disableApnType(String type);
228 * Returns the current active phone type as integer.
264 * Returns the network type
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DVertexShader.java52 public Builder setObjectConst(Type type) { argument
53 mShader.mPerObjConstants = type;
57 public Builder setShaderConst(Type type) { argument
58 mShader.mPerShaderConstants = type;
/frameworks/base/tools/aidl/
H A Daidl_language.h29 buffer_type type; member in struct:type_type
37 type_type type; member in struct:arg_type
53 type_type type; member in struct:method_type
107 type_type type; member in union:lexer_type
/frameworks/compile/mclinker/lib/LD/
H A DRelocation.cpp43 if (m_pSymInfo->type() == ResolveInfo::Section &&
62 error(diag::result_overflow) << pRelocFactory.getName(type())
67 error(diag::result_badreloc) << pRelocFactory.getName(type())
72 fatal(diag::unsupported_relocation) << type()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedRadioControl.java49 public void triggerSsn(int type, int code); argument
/frameworks/base/media/java/android/media/
H A DMediaCodecList.java47 getCodecCapabilities(int index, String type); argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java127 int type,
134 int type,
141 int type,
148 int type,
125 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
132 glMatrixIndexPointerOES( int size, int type, int stride, int offset ) argument
139 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
146 glWeightPointerOES( int size, int type, int stride, int offset ) argument

Completed in 451 milliseconds

1234567891011>>