Home
last modified time | relevance | path

Searched refs:newType (Results 1 – 25 of 28) sorted by relevance

12

/external/javassist/src/main/javassist/expr/
DNewExpr.java187 CtClass newType = cp.get(newTypeName); in replace() local
191 int retVar = jc.recordReturnType(newType, true); in replace()
192 jc.recordProceed(new ProceedForNew(newType, newIndex, in replace()
197 checkResultValue(newType, statement); in replace()
203 bytecode.addConstZero(newType); in replace()
204 bytecode.addStore(retVar, newType); // initialize $_ in replace()
220 CtClass newType; field in NewExpr.ProceedForNew
224 newType = nt; in ProceedForNew()
235 gen.atMethodCallCore(newType, MethodInfo.nameInit, args, in doit()
237 gen.setType(newType); in doit()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java56 int newType; in compute0() local
58 newType = TokenId.LongConstant; in compute0()
61 newType = TokenId.CharConstant; in compute0()
63 newType = TokenId.IntConstant; in compute0()
95 newType = type1; in compute0()
99 newType = type1; in compute0()
103 newType = type1; in compute0()
109 return new IntConst(newValue, newType); in compute0()
DDoubleConst.java54 int newType; in compute0() local
57 newType = TokenId.DoubleConstant; in compute0()
59 newType = TokenId.FloatConstant; in compute0()
61 return compute(op, this.value, right.value, newType); in compute0()
69 int newType) in compute() argument
92 return new DoubleConst(newValue, newType); in compute()
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
DMediaTypeTest.java73 MediaType newType = MediaType.createApplicationType("yams"); in testCreateApplicationType() local
74 assertEquals("application", newType.type()); in testCreateApplicationType()
75 assertEquals("yams", newType.subtype()); in testCreateApplicationType()
79 MediaType newType = MediaType.createAudioType("yams"); in testCreateAudioType() local
80 assertEquals("audio", newType.type()); in testCreateAudioType()
81 assertEquals("yams", newType.subtype()); in testCreateAudioType()
85 MediaType newType = MediaType.createImageType("yams"); in testCreateImageType() local
86 assertEquals("image", newType.type()); in testCreateImageType()
87 assertEquals("yams", newType.subtype()); in testCreateImageType()
91 MediaType newType = MediaType.createTextType("yams"); in testCreateTextType() local
[all …]
/external/guava/guava-tests/test/com/google/common/net/
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 = MediaType.createTextType("yams");
[all …]
/external/proguard/src/proguard/classfile/editor/
DMemberReferenceFixer.java131 String newType = referencedMember.getDescriptor(referencedClass); in visitFieldrefConstant() local
134 !fieldrefConstant.getType(clazz).equals(newType)) in visitFieldrefConstant()
143 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitFieldrefConstant()
159 String newType = referencedMember.getDescriptor(referencedClass); in visitInterfaceMethodrefConstant() local
162 !interfaceMethodrefConstant.getType(clazz).equals(newType)) in visitInterfaceMethodrefConstant()
171 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitInterfaceMethodrefConstant()
215 String newType = referencedMember.getDescriptor(referencedClass); in visitMethodrefConstant() local
218 !methodrefConstant.getType(clazz).equals(newType)) in visitMethodrefConstant()
227 … new ConstantPoolEditor((ProgramClass)clazz).addNameAndTypeConstant(newName, newType); in visitMethodrefConstant()
303 String newType = referencedMember.getDescriptor(referencedClass); in visitEnclosingMethodAttribute() local
[all …]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRegisterSpec.java497 public RegisterSpec withType(TypeBearer newType) { in withType() argument
498 return makeLocalOptional(reg, newType, local); in withType()
526 Type newType; in withSimpleType() local
529 newType = (Type) orig; in withSimpleType()
531 newType = orig.getType(); in withSimpleType()
534 if (newType.isUninitialized()) { in withSimpleType()
535 newType = newType.getInitializedType(); in withSimpleType()
538 if (newType == orig) { in withSimpleType()
542 return makeLocalOptional(reg, newType, local); in withSimpleType()
/external/javassist/src/main/javassist/bytecode/analysis/
DAnalyzer.java321 Type newType = frame.getLocal(i); in mergeJsr() local
323 old.setLocal(i, newType); in mergeJsr()
328 newType = oldType.merge(newType); in mergeJsr()
330 old.setLocal(i, newType); in mergeJsr()
331 if (!newType.equals(oldType) || newType.popChanged()) in mergeJsr()
382 Type newType = frame.getLocal(index); in mergeRet() local
383 if (oldType != newType) { in mergeRet()
384 old.setLocal(index, newType); in mergeRet()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
DTryListBuilder.java167 String newType = handler.getExceptionType(); in addHandler() local
170 if (newType == null) { in addHandler()
177 } else if (existingType.equals(newType)) { in addHandler()
/external/doclava/src/com/google/doclava/
DInfoBuilder.java708 TypeInfo newType; in buildFields() local
711 newType = type; in buildFields()
713 newType = new TypeInfo(type.isPrimitive(), type.dimension(), in buildFields()
715 newType.setBounds(type.superBounds(), type.extendsBounds()); in buildFields()
716 newType.setIsWildcard(type.isWildcard()); in buildFields()
717 newType.setIsTypeVariable(type.isTypeVariable()); in buildFields()
718 newType.setTypeArguments(type.typeArguments()); in buildFields()
736 newType.setDimension(builder.toString()); in buildFields()
758 newType, commentAndPosition.getCommentText(), constantValue, in buildFields()
/external/jdiff/src/jdiff/
DHTMLReportGenerator.java1336 String newType = memberDiff.newType_; in writeCtorChangedTableEntry() local
1337 if (newType.compareTo("void") == 0) in writeCtorChangedTableEntry()
1338 newType = ""; in writeCtorChangedTableEntry()
1341 …reportFile.print(" <nobr><A HREF=\"" + memberRef + ".html#" + className + "(" + newType + ")\" ta… in writeCtorChangedTableEntry()
1373 ".html#" + className + "(" + newType + in writeCtorChangedTableEntry()
1644 String newType = memberDiff.newType_; in writeFieldChangedTableEntry() local
1645 String shortNewType = simpleName(newType); in writeFieldChangedTableEntry()
/external/clang/lib/AST/
DASTContext.cpp2670 DependentSizedArrayType *newType in getDependentSizedArrayType() local
2675 Types.push_back(newType); in getDependentSizedArrayType()
2676 return QualType(newType, 0); in getDependentSizedArrayType()
2751 IncompleteArrayType *newType = new (*this, TypeAlignment) in getIncompleteArrayType() local
2754 IncompleteArrayTypes.InsertNode(newType, insertPos); in getIncompleteArrayType()
2755 Types.push_back(newType); in getIncompleteArrayType()
2756 return QualType(newType, 0); in getIncompleteArrayType()
3013 Type *newType = in getInjectedClassNameType() local
3015 Decl->TypeForDecl = newType; in getInjectedClassNameType()
3016 Types.push_back(newType); in getInjectedClassNameType()
[all …]
/external/mesa3d/src/mesa/swrast/
Ds_span.c935 convert_color_type(SWspan *span, GLenum newType, GLuint output) in convert_color_type() argument
951 if (newType == GL_UNSIGNED_BYTE) { in convert_color_type()
954 else if (newType == GL_UNSIGNED_SHORT) { in convert_color_type()
962 newType, dst, in convert_color_type()
965 span->array->ChanType = newType; in convert_color_type()
/external/clang/include/clang/AST/
DDecl.h537 void setType(QualType newType) { DeclType = newType; } in setType() argument
2578 void setTypeSourceInfo(TypeSourceInfo *newType) { in setTypeSourceInfo() argument
2579 MaybeModedTInfo = newType; in setTypeSourceInfo()
/external/guava/guava/lib/
Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API ...
/external/llvm/lib/MC/
DELFObjectWriter.cpp521 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) { in mergeTypeForSet() argument
522 uint8_t Type = newType; in mergeTypeForSet()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/robolectric/lib/main/
Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/ ...
Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...
/external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
Dmootools-core-full-nocompat.js4282 var newType = parsed.tag;
4284 newType += ':' + pseudo.key + (pseudo.value ? '(' + pseudo.value + ')' : '');
4287 return method.call(this, newType, parsed.pseudos[0].value, fn);

12