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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleImage.h 100 #define DEFINE_STYLE_IMAGE_TYPE_CASTS(thisType, function) \
101 DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function); \
102 inline thisType* to##thisType(const RefPtr<StyleImage>& styleImage) { return to##thisType(styleImage.get()); } \
  /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/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 368 #define DEFINE_TYPE_CASTS(thisType, argumentType, argumentName, pointerPredicate, referencePredicate) \
369 inline thisType* to##thisType(argumentType* argumentName) \
372 return static_cast<thisType*>(argumentName); \
374 inline const thisType* to##thisType(const argumentType* argumentName) \
377 return static_cast<const thisType*>(argumentName); \
379 inline thisType& to##thisType(argumentType& argumentName) \
382 return static_cast<thisType&>(argumentName);
    [all...]
  /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'");
  /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);
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 138 VerificationType thisType = this.variables[index];
141 if (!thisType.equals(otherType))
149 VerificationType thisType = this.stack[index];
152 if (!thisType.equals(otherType))
MoreZeroFrame.java 120 VerificationType thisType = this.additionalVariables[index];
123 if (!thisType.equals(otherType))
  /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/rop/cst/
CstBaseMethodRef.java 80 Type thisType = getDefiningClass().getClassType();
81 instancePrototype = prototype.withFirstParameter(thisType);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResource.h 85 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \
86 DEFINE_TYPE_CASTS(thisType, RenderSVGResource, resource, resource->resourceType() == typeName, resource.resourceType() == typeName)
  /external/dexmaker/src/dx/java/com/android/dx/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);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValue.h 130 #define DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(thisType, predicate) \
131 DEFINE_TYPE_CASTS(thisType, AnimatableValue, value, value->predicate, value.predicate)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
csv.py 412 for thisType in [int, long, float, complex]:
414 thisType(row[col])
420 thisType = len(row[col])
423 if thisType == long:
424 thisType = int
426 if thisType != columnTypes[col]:
428 columnTypes[col] = thisType
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
csv.py 412 for thisType in [int, long, float, complex]:
414 thisType(row[col])
420 thisType = len(row[col])
423 if thisType == long:
424 thisType = int
426 if thisType != columnTypes[col]:
428 columnTypes[col] = thisType
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValue.h 249 #define DEFINE_CSS_VALUE_TYPE_CASTS(thisType, predicate) \
250 DEFINE_TYPE_CASTS(thisType, CSSValue, value, value->predicate, value.predicate)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h     [all...]
  /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;
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 278 Type thisType = parameterTypes.get(i);
281 result = thisType.compareTo(otherType);

Completed in 3719 milliseconds

1 2