Searched refs:newType (Results 1 - 25 of 51) sorted by relevance

123

/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTTexture.cpp505 @Modified newType New PixelType identifier.
511 void PVRTMapLegacyTextureEnumToNewFormat(PVRTPixelType OldFormat, PVRTuint64& newType, EPVRTColourSpace& newCSpace, EPVRTVariableType& newChanType, bool& isPreMult) argument
520 newType=PVRTGENPIXELID4('a','r','g','b',4,4,4,4);
528 newType=PVRTGENPIXELID4('a','r','g','b',1,5,5,5);
536 newType=PVRTGENPIXELID3('r','g','b',5,6,5);
544 newType=PVRTGENPIXELID4('x','r','g','b',1,5,5,5);
552 newType=PVRTGENPIXELID3('r','g','b',8,8,8);
560 newType=PVRTGENPIXELID4('a','r','g','b',8,8,8,8);
568 newType=PVRTGENPIXELID4('a','r','g','b',8,3,3,2);
576 newType
[all...]
H A DPVRTTexture.h639 @param[in,out] newType New PixelType identifier.
645 void PVRTMapLegacyTextureEnumToNewFormat(PVRTPixelType OldFormat, PVRTuint64& newType, EPVRTColourSpace& newCSpace, EPVRTVariableType& newChanType, bool& isPreMult);
/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java54 int newType;
57 newType = TokenId.DoubleConstant;
59 newType = TokenId.FloatConstant;
61 return compute(op, this.value, right.value, newType);
69 int newType)
92 return new DoubleConst(newValue, newType);
68 compute(int op, double value1, double value2, int newType) argument
H A DIntConst.java56 int newType;
58 newType = TokenId.LongConstant;
61 newType = TokenId.CharConstant;
63 newType = TokenId.IntConstant;
95 newType = type1;
99 newType = type1;
103 newType = type1;
109 return new IntConst(newValue, newType);
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java187 CtClass newType = cp.get(newTypeName);
191 int retVar = jc.recordReturnType(newType, true);
192 jc.recordProceed(new ProceedForNew(newType, newIndex,
197 checkResultValue(newType, statement);
203 bytecode.addConstZero(newType);
204 bytecode.addStore(retVar, newType); // initialize $_
220 CtClass newType; field in class:NewExpr.ProceedForNew
224 newType = nt;
235 gen.atMethodCallCore(newType, MethodInfo.nameInit, args,
237 gen.setType(newType);
[all...]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
H A DMediaTypeTest.java73 MediaType newType = MediaType.createApplicationType("yams");
74 assertEquals("application", newType.type());
75 assertEquals("yams", newType.subtype());
79 MediaType newType = MediaType.createAudioType("yams");
80 assertEquals("audio", newType.type());
81 assertEquals("yams", newType.subtype());
85 MediaType newType = MediaType.createImageType("yams");
86 assertEquals("image", newType.type());
87 assertEquals("yams", newType.subtype());
91 MediaType newType
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DMemberReferenceFixer.java131 String newType = referencedMember.getDescriptor(referencedClass);
134 !fieldrefConstant.getType(clazz).equals(newType))
143 new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType);
159 String newType = referencedMember.getDescriptor(referencedClass);
162 !interfaceMethodrefConstant.getType(clazz).equals(newType))
171 new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType);
215 String newType = referencedMember.getDescriptor(referencedClass);
218 !methodrefConstant.getType(clazz).equals(newType))
227 new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType);
303 String newType
[all...]
/external/guava/guava-tests/test/com/google/common/net/
H A DMediaTypeTest.java133 MediaType newType = MediaType.createApplicationType("yams");
134 assertEquals("application", newType.type());
135 assertEquals("yams", newType.subtype());
139 MediaType newType = MediaType.createAudioType("yams");
140 assertEquals("audio", newType.type());
141 assertEquals("yams", newType.subtype());
145 MediaType newType = MediaType.createImageType("yams");
146 assertEquals("image", newType.type());
147 assertEquals("yams", newType.subtype());
151 MediaType newType
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java321 Type newType = frame.getLocal(i);
323 old.setLocal(i, newType);
328 newType = oldType.merge(newType);
330 old.setLocal(i, newType);
331 if (!newType.equals(oldType) || newType.popChanged())
382 Type newType = frame.getLocal(index);
383 if (oldType != newType) {
384 old.setLocal(index, newType);
[all...]
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DProxyingInstantiator.java58 private final Class<?> newType; field in class:ProxyingInstantiator
65 newType = ClassDefinitionUtils.defineClass(type.getName() + SUFFIX, classBytes, type.getClassLoader());
74 return (T) newType.newInstance();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
H A DTryListBuilder.java167 String newType = handler.getExceptionType();
170 if (newType == null) {
177 } else if (existingType.equals(newType)) {
/external/swiftshader/src/OpenGL/compiler/
H A DConstantUnion.h33 bool cast(TBasicType newType, const ConstantUnion &constant) argument
35 switch (newType)
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java709 TypeInfo newType;
712 newType = type;
714 newType = new TypeInfo(type.isPrimitive(), type.dimension(),
716 newType.setBounds(type.superBounds(), type.extendsBounds());
717 newType.setIsWildcard(type.isWildcard());
718 newType.setIsTypeVariable(type.isTypeVariable());
719 newType.setTypeArguments(type.typeArguments());
737 newType.setDimension(builder.toString());
759 newType, commentAndPosition.getCommentText(), constantValue,
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DKey.java98 Key withType(Types types, TypeMirror newType) { argument
100 MoreTypes.equivalence().wrap(normalize(types, newType)));
/external/jdiff/src/jdiff/
H A DHTMLReportGenerator.java1336 String newType = memberDiff.newType_;
1337 if (newType.compareTo("void") == 0)
1338 newType = "";
1341 reportFile.print(" <nobr><A HREF=\"" + memberRef + ".html#" + className + "(" + newType + ")\" target=\"_top\"><font size=\"+1\"><tt>");
1373 ".html#" + className + "(" + newType +
1644 String newType = memberDiff.newType_;
1645 String shortNewType = simpleName(newType);
/external/skia/src/sksl/
H A DSkSLIRGenerator.cpp505 Type* newType = new Type(std::move(name), Type::kArray_Kind, *type, size); local
506 fSymbolTable->takeOwnership(newType);
507 type = newType;
1436 Type* newType = new Type(oldType.name() + "[" + to_string(size) + "]", local
1438 fSymbolTable->takeOwnership(newType);
1440 *newType));
1563 Type* newType = new Type(oldType.name() + "[]", Type::kArray_Kind, oldType, local
1565 fSymbolTable->takeOwnership(newType);
1567 *newType));
/external/mesa3d/src/mesa/swrast/
H A Ds_span.c935 convert_color_type(SWspan *span, GLenum newType, GLuint output) argument
951 if (newType == GL_UNSIGNED_BYTE) {
954 else if (newType == GL_UNSIGNED_SHORT) {
962 newType, dst,
965 span->array->ChanType = newType;
/external/clang/lib/AST/
H A DASTContext.cpp2793 DependentSizedArrayType *newType local
2798 Types.push_back(newType);
2799 return QualType(newType, 0);
2875 IncompleteArrayType *newType = new (*this, TypeAlignment) local
2878 IncompleteArrayTypes.InsertNode(newType, insertPos);
2879 Types.push_back(newType);
2880 return QualType(newType, 0);
3179 Type *newType = local
3181 Decl->TypeForDecl = newType;
3182 Types.push_back(newType);
3208 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using); local
3226 TypedefType *newType = new(*this, TypeAlignment) local
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DMethodAnalyzer.java1226 RegisterType newType = RegisterType.getRegisterType(classPath,
1238 narrowingRegister, newType);
1245 narrowingRegister, newType);
/external/clang/include/clang/AST/
H A DDecl.h600 void setType(QualType newType) { DeclType = newType; } argument
2654 void setTypeSourceInfo(TypeSourceInfo *newType) {
2655 MaybeModedTInfo = newType;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp424 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) {
425 uint8_t Type = newType;
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1353 milliseconds

123