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

1 2

  /external/chromium_org/v8/test/webkit/
primitive-method-this.js 31 String.prototype.thisType = function() { return typeof this; };
32 Number.prototype.thisType = function() { return typeof this; };
33 Boolean.prototype.thisType = function() { return typeof this; };
35 shouldBe("(1).thisType()", "'object'");
36 shouldBe("(2.3).thisType()", "'object'");
37 shouldBe("'xxx'.thisType()", "'object'");
38 shouldBe("(false).thisType()", "'object'");
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 80 Type thisType = getDefiningClass().getClassType();
81 instancePrototype = prototype.withFirstParameter(thisType);
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 158 Type thisType = arg(0).getType();
159 if (thisType.isUninitialized()) {
160 frame.makeInitialized(thisType);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 80 Type thisType = getDefiningClass().getClassType();
81 instancePrototype = prototype.withFirstParameter(thisType);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstBaseMethodRef.java 80 Type thisType = getDefiningClass().getClassType();
81 instancePrototype = prototype.withFirstParameter(thisType);
  /external/proguard/src/proguard/classfile/attribute/preverification/
MoreZeroFrame.java 120 VerificationType thisType = this.additionalVariables[index];
123 if (!thisType.equals(otherType))
FullFrame.java 138 VerificationType thisType = this.variables[index];
141 if (!thisType.equals(otherType))
149 VerificationType thisType = this.stack[index];
152 if (!thisType.equals(otherType))
  /external/chromium_org/third_party/skia/gm/
gm_error.h 69 ErrorType thisType = static_cast<ErrorType>(typeInt);
70 const char *thisTypeName = getErrorTypeName(thisType);
72 *type = thisType;
  /external/skia/gm/
gm_error.h 69 ErrorType thisType = static_cast<ErrorType>(typeInt);
70 const char *thisTypeName = getErrorTypeName(thisType);
72 *type = thisType;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 97 ItemType thisType = itemType();
100 if (thisType != otherType) {
119 ItemType thisType = itemType();
122 if (thisType != otherType) {
123 return thisType.compareTo(otherType);
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 97 ItemType thisType = itemType();
100 if (thisType != otherType) {
119 ItemType thisType = itemType();
122 if (thisType != otherType) {
123 return thisType.compareTo(otherType);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
OffsettedItem.java 97 ItemType thisType = itemType();
100 if (thisType != otherType) {
119 ItemType thisType = itemType();
122 if (thisType != otherType) {
123 return thisType.compareTo(otherType);
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 59 ParameterizedType thisType = (ParameterizedType)getClass().getGenericSuperclass();
62 mType = thisType.getActualTypeArguments()[0];
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 278 Type thisType = parameterTypes.get(i);
281 result = thisType.compareTo(otherType);
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 282 Type thisType = parameterTypes.get(i);
285 result = thisType.compareTo(otherType);
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 282 Type thisType = parameterTypes.get(i);
285 result = thisType.compareTo(otherType);
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 95 String thisType = this.type;
98 if (thisType == null)
104 int thisDimensionCount = ClassUtil.internalArrayTypeDimensionCount(thisType);
109 thisType = thisType.substring(commonDimensionCount);
114 (ClassUtil.isInternalPrimitiveType(thisType.charAt(0)) ||
117 return !thisType.equals(otherType) ? NEVER :
125 thisType = ClassUtil.internalClassNameFromClassType(thisType);
147 !ClassUtil.isInternalArrayInterfaceName(thisType))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 398 String thisType = type == null ? "" : type;
399 if (!otherType.equals(thisType))
434 String thisType = type == null ? "" : type;
437 if (thisType.equals(otherType)) {
446 return thisType.compareTo(otherType);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 450 Type thisType = getType();
454 if (thisType != otherType) {
459 type.equals(other.getTypeBearer()) ? type : thisType;
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 454 Type thisType = getType();
458 if (thisType != otherType) {
463 type.equals(other.getTypeBearer()) ? type : thisType;
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpec.java 455 Type thisType = getType();
459 if (thisType != otherType) {
464 type.equals(other.getTypeBearer()) ? type : thisType;
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 426 CstType thisType = type.constant;
428 ClassDefItem out = new ClassDefItem(thisType, flags, supertype.constant,
  /external/clang/lib/CodeGen/
CGBlocks.cpp 360 QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType(C);
362 llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType);
364 = CGM.getContext().getTypeInfoInChars(thisType);
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 1167 milliseconds

1 2