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

/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/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpec.java494 * @param newType {@code non-null;} the new type
497 public RegisterSpec withType(TypeBearer newType) { argument
498 return makeLocalOptional(reg, newType, local);
526 Type newType;
529 newType = (Type) orig;
531 newType = orig.getType();
534 if (newType.isUninitialized()) {
535 newType = newType.getInitializedType();
538 if (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/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);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DTypes.h153 TType *newType = new TType(); local
154 newType->copyType(*this, remapper);
156 return newType;
H A DIntermediate.cpp313 TBasicType newType = EbtVoid; local
315 case EOpConstructInt: newType = EbtInt; break;
316 case EOpConstructBool: newType = EbtBool; break;
317 case EOpConstructFloat: newType = EbtFloat; break;
321 if (newType != EbtVoid) {
322 child = addConversion(op, TType(newType, child->getPrecision(), EvqTemporary,
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java708 TypeInfo newType;
711 newType = type;
713 newType = new TypeInfo(type.isPrimitive(), type.dimension(),
715 newType.setBounds(type.superBounds(), type.extendsBounds());
716 newType.setIsWildcard(type.isWildcard());
717 newType.setIsTypeVariable(type.isTypeVariable());
718 newType.setTypeArguments(type.typeArguments());
736 newType.setDimension(builder.toString());
758 newType, commentAndPosition.getCommentText(), constantValue,
/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/clang/lib/AST/
H A DASTContext.cpp2403 DependentSizedArrayType *newType local
2408 Types.push_back(newType);
2409 return QualType(newType, 0);
2484 IncompleteArrayType *newType = new (*this, TypeAlignment) local
2487 IncompleteArrayTypes.InsertNode(newType, insertPos);
2488 Types.push_back(newType);
2489 return QualType(newType, 0);
2760 Type *newType = local
2762 Decl->TypeForDecl = newType;
2763 Types.push_back(newType);
2791 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using); local
2809 TypedefType *newType = new(*this, TypeAlignment) local
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLInputElement.cpp446 OwnPtr<InputType> newType = InputType::create(this, fastGetAttribute(typeAttr)); local
449 if (m_inputType->formControlType() == newType->formControlType())
452 if (hadType && !newType->canChangeFromAnotherType()) {
470 m_inputType = newType.release();
/external/clang/include/clang/AST/
H A DDecl.h455 void setType(QualType newType) { DeclType = newType; } argument
2319 void setTypeSourceInfo(TypeSourceInfo *newType) {
2320 TInfo = newType;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/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 ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 3580 milliseconds