HomeSort by relevance Sort by last modified time
    Searched refs:arrayType (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/proguard/src/proguard/classfile/instruction/
InstructionUtil.java 35 * @param arrayType <code>InstructionConstants.ARRAY_T_BOOLEAN</code>,
52 public static char internalTypeFromArrayType(byte arrayType)
54 switch (arrayType)
64 default: throw new IllegalArgumentException("Unknown array type ["+arrayType+"]");
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java 42 private final Constant arrayType;
61 Constant arrayType) {
78 this.arrayType = arrayType;
80 if (arrayType == CstType.BYTE_ARRAY ||
81 arrayType == CstType.BOOLEAN_ARRAY) {
83 } else if (arrayType == CstType.SHORT_ARRAY ||
84 arrayType == CstType.CHAR_ARRAY) {
86 } else if (arrayType == CstType.INT_ARRAY ||
87 arrayType == CstType.FLOAT_ARRAY)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /dalvik/dx/src/com/android/dx/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
FillArrayDataInsn.java 40 private final Constant arrayType;
62 this.arrayType = cst;
85 return arrayType;
105 initValues, arrayType);
114 sources, initValues, arrayType);
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 28 private int arrayType;
40 arrayType = atype;
103 public int getArrayType() { return arrayType; }
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 26 protected int arrayType;
31 arrayType = CLASS;
37 arrayType = type;
56 public int getArrayType() { return arrayType; }
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 29 PointerType *arrayType = 0);
  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 50 GenericArrayType arrayType, List<Throwable> errors) {
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericArrayTypeTest.java 57 GenericArrayType arrayType = (GenericArrayType) genericType;
58 Type componentType = arrayType.getGenericComponentType();
  /sdk/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Context.h 47 void setupArr(const GLvoid* arr,GLenum arrayType,GLenum dataType,GLint size,GLsizei stride,GLboolean normalized, int pointsIndex = -1);
GLESv2Context.cpp 114 void GLESv2Context::setupArr(const GLvoid* arr,GLenum arrayType,GLenum dataType,GLint size,GLsizei stride,GLboolean normalized, int index){
116 s_glDispatch.glVertexAttribPointer(arrayType,size,dataType,normalized,stride,arr);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferViewCustom.h 44 v8::Handle<v8::Value> constructWebGLArrayWithArrayBufferArgument(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType, bool hasIndexer)
74 args.Holder()->SetIndexedPropertiesToExternalArrayData(array.get()->baseAddress(), arrayType, array.get()->length());
80 v8::Handle<v8::Value> constructWebGLArray(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType)
122 return constructWebGLArrayWithArrayBufferArgument<ArrayClass, ElementType>(args, type, arrayType, true);
159 args.Holder()->SetIndexedPropertiesToExternalArrayData(array.get()->baseAddress(), arrayType, array.get()->length());
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaArrayJSC.cpp 78 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
86 jvalue aJValue = convertValueToJValue(exec, m_rootObject.get(), aValue, arrayType, javaClassName);
88 switch (arrayType) {
152 JavaType arrayType = javaTypeFromPrimitiveType(m_type[1]);
153 switch (arrayType) {
JavaInstanceJSC.cpp 224 const char* arrayType = jMethod->returnTypeClassName();
225 if (arrayType[0] == '[')
226 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
298 const char* arrayType = jMethod->returnTypeClassName();
299 ASSERT(arrayType[0] == '[');
300 resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject);
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 428 public static String getElementType(String arrayType) {
429 char c = arrayType.charAt(1);
431 return arrayType.substring(2, arrayType.length() - 1).replace('/', '.');
433 return arrayType.substring(1);
435 return arrayType;
  /external/javassist/src/main/javassist/expr/
NewArray.java 241 CtClass arrayType;
246 arrayType = type;
273 gen.setType(arrayType);
279 c.setType(arrayType);
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 283 private Type arrayType;
511 this.arrayType = null;
846 if (arrayType == null) {
847 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
850 return arrayType;
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 268 private Type arrayType;
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 return arrayType;
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 268 private Type arrayType;
445 this.arrayType = null;
780 if (arrayType == null) {
781 arrayType = putIntern(new Type('[' + descriptor, BT_OBJECT));
784 return arrayType;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
  /dalvik/vm/
Exception.h 228 extern "C" void dvmThrowArrayStoreExceptionIncompatibleElement(ClassObject* objectType, ClassObject* arrayType);
251 ClassObject* arrayType);
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.h 58 void setupArr(const GLvoid* arr,GLenum arrayType,GLenum dataType,GLint size,GLsizei stride,GLboolean normalized, int pointsIndex = -1);

Completed in 838 milliseconds

1 2 3 4