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

12

/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/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/chromium-trace/trace-viewer/src/ui/
H A Dmouse_tracker.js66 remakeEvent_: function(e, newType) {
67 var remade = new base.Event(newType, true, true);
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
H A DTryListBuilder.java167 String newType = handler.getExceptionType();
171 if (newType == null) {
178 } else if (existingType.equals(newType)) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DConstantUnion.h21 bool cast(TBasicType newType, const ConstantUnion &constant) argument
23 switch (newType)
/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.cpp2590 DependentSizedArrayType *newType local
2595 Types.push_back(newType);
2596 return QualType(newType, 0);
2671 IncompleteArrayType *newType = new (*this, TypeAlignment) local
2674 IncompleteArrayTypes.InsertNode(newType, insertPos);
2675 Types.push_back(newType);
2676 return QualType(newType, 0);
2934 Type *newType = local
2936 Decl->TypeForDecl = newType;
2937 Types.push_back(newType);
2963 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Using); local
2981 TypedefType *newType = new(*this, TypeAlignment) local
[all...]
/external/chromium_org/third_party/mesa/src/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/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/include/clang/AST/
H A DDecl.h480 void setType(QualType newType) { DeclType = newType; } argument
2454 void setTypeSourceInfo(TypeSourceInfo *newType) {
2455 MaybeModedTInfo = newType;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp403 RefPtrWillBeRawPtr<InputType> newType = InputType::create(*this, newTypeName);
412 m_inputType = newType.release();
/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 ...
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp544 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) { argument
545 uint8_t Type = newType;
/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 530 milliseconds

12