HomeSort by relevance Sort by last modified time
    Searched defs:newType (Results 1 - 25 of 316) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/compiler/ast/
DoubleConst.java 54 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);
IntConst.java 56 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);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType01.java 76 DocumentType newType;
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
createDocumentType03.java 73 DocumentType newType = null;
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
80 nodeName = newType.getNodeName();
82 nodeValue = newType.getNodeValue();
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
MultiplePartitionsActivity.java 80 int newType = intent.getIntExtra("dateType", -1);
81 if (newType != -1) {
82 ccExpirationType = newType;
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
MultiplePartitionsActivity.java 80 int newType = intent.getIntExtra("dateType", -1);
81 if (newType != -1) {
82 ccExpirationType = newType;
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
ProxyingInstantiator.java 58 private final Class<?> newType;
65 newType = ClassDefinitionUtils.defineClass(type.getName() + SUFFIX, classBytes, type.getClassLoader());
74 return (T) newType.newInstance();
  /libcore/ojluni/src/main/java/java/lang/invoke/
CallSite.java 211 MethodType newType = newTarget.type(); // null check!
212 if (!newType.equals(oldType))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
PostActivityCreationAction.java 52 public void processNewType(IType newType) {
62 newType.createMethod(methodContent, null /* sibling*/, false /* force */,
68 IJavaElement element = newType;
PostReceiverCreationAction.java 51 public void processNewType(IType newType) {
58 newType.createMethod(methodContent, null /* sibling*/, false /* force */,
64 IJavaElement element = newType;
  /external/r8/src/main/java/com/android/tools/r8/graph/
GraphLense.java 124 DexType newType = lookupType(baseType, context);
125 if (baseType == newType) {
128 result = type.replaceBaseType(newType, dexItemFactory);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
CreateDocumentType.java 163 DocumentType newType = null;
169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
170 nodeName = newType.getNodeName();
172 nodeValue = newType.getNodeValue();
  /tools/tradefederation/core/src/com/android/tradefed/result/
DeviceFileReporter.java 210 final LogDataType newType = DATA_TYPE_REVERSE_MAP.get(ext);
211 CLog.d("Inferred data type %s", newType);
212 return newType;
  /external/javassist/src/main/javassist/expr/
NewExpr.java 187 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;
224 newType = nt;
235 gen.atMethodCallCore(newType, MethodInfo.nameInit, args,
237 gen.setType(newType);
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/ir/conversion/
LensCodeRewriter.java 161 DexType newType = graphLense.lookupType(checkCast.getType(), method);
162 if (newType != checkCast.getType()) {
164 new CheckCast(makeOutValue(checkCast, code), checkCast.object(), newType);
169 DexType newType = graphLense.lookupType(constClass.getValue(), method);
170 if (newType != constClass.getValue()) {
171 ConstClass newConstClass = new ConstClass(makeOutValue(constClass, code), newType);
176 DexType newType = graphLense.lookupType(instanceOf.type(), method);
177 if (newType != instanceOf.type()) {
179 instanceOf.value(), newType);
184 DexType newType = graphLense.lookupType(newArray.getArrayType(), method)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java 413 RegisterType newType = null;
433 if (newType == null) {
434 newType = RegisterType.getRegisterType(methodAnalyzer.getClassPath(),
438 if (MethodAnalyzer.isNotWideningConversion(originalType, newType)) {
565 RegisterType newType = null;
585 if (newType == null) {
586 newType = RegisterType.getRegisterType(methodAnalyzer.getClassPath(),
590 if (MethodAnalyzer.isNotWideningConversion(originalType, newType)) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
TryListBuilder.java 167 String newType = handler.getExceptionType();
170 if (newType == null) {
177 } else if (existingType.equals(newType)) {
  /frameworks/base/libs/hwui/
FrameInfoVisualizer.cpp 222 ProfileType newType = Properties::getProfileType();
223 if (newType != mType) {
224 mType = newType;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Intermediate.cpp 247 TBasicType newType = EbtVoid;
249 case EOpConstructInt: newType = EbtInt; break;
250 case EOpConstructUint: newType = EbtUint; break;
251 case EOpConstructInt64: newType = EbtInt64; break;
252 case EOpConstructUint64: newType = EbtUint64; break;
253 case EOpConstructBool: newType = EbtBool; break;
254 case EOpConstructFloat: newType = EbtFloat; break;
255 case EOpConstructDouble: newType = EbtDouble; break;
259 if (newType != EbtVoid) {
260 child = addConversion(op, TType(newType, EvqTemporary, child->getVectorSize()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 299 String newType = dlg.getCurrentResource();
300 setNewLayout(newType);
ListViewTypeMenu.java 179 String newType = dlg.getCurrentResource();
180 setNewType(mType, newType);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 489 * @param newType {@code non-null;} the new type
492 public RegisterSpec withType(TypeBearer newType) {
493 return makeLocalOptional(reg, newType, local);
521 Type newType;
524 newType = (Type) orig;
526 newType = orig.getType();
529 if (newType.isUninitialized()) {
530 newType = newType.getInitializedType();
533 if (newType == orig)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 501 * @param newType {@code non-null;} the new type
504 public RegisterSpec withType(TypeBearer newType) {
505 return makeLocalOptional(reg, newType, local);
533 Type newType;
536 newType = (Type) orig;
538 newType = orig.getType();
541 if (newType.isUninitialized()) {
542 newType = newType.getInitializedType();
545 if (newType == orig)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
MediaTypeTest.java 73 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 = MediaType.createTextType("yams")
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 321 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...]

Completed in 731 milliseconds

1 2 3 4 5 6 7 8 91011>>