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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
KeyAlgorithm.h 63 #define DEFINE_KEY_ALGORITHM_TYPE_CASTS(thisType) \
64 DEFINE_TYPE_CASTS(thisType, KeyAlgorithm, value, value->is##thisType(), value.is##thisType())
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontData.h 66 #define DEFINE_FONT_DATA_TYPE_CASTS(thisType, predicate) \
67 template<typename T> inline thisType* to##thisType(const RefPtr<T>& fontData) { return to##thisType(fontData.get()); } \
68 DEFINE_TYPE_CASTS(thisType, FontData, fontData, fontData->isSegmented() == predicate, fontData.isSegmented() == predicate)
CustomFontData.h 59 #define DEFINE_CUSTOM_FONT_DATA_TYPE_CASTS(thisType, predicate) \
60 template<typename T> inline thisType* to##thisType(const RefPtr<T>& customFontData) { return to##thisType(customFontData.get()); } \
61 DEFINE_TYPE_CASTS(thisType, CustomFontData, customFontData, customFontData->predicate, customFontData.predicate)
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 379 #define DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES(thisType) \
380 inline bool operator==(const thisType& a, const thisType& b) { return &a == &b; } \
381 inline bool operator==(const thisType& a, const thisType* b) { return &a == b; } \
382 inline bool operator==(const thisType* a, const thisType& b) { return a == &b; } \
383 inline bool operator!=(const thisType& a, const thisType& b) { return !(a == b); } \
384 inline bool operator!=(const thisType& a, const thisType* b) { return !(a == b); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 167 #define DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) \
168 inline bool is##thisType(const thisType* element); \
169 inline bool is##thisType(const thisType& element); \
170 inline bool is##thisType(const HTMLElement* element) { return element && is##thisType(*element); } \
171 inline bool is##thisType(const Node& node) { return node.isHTMLElement() ? is##thisType(toHTMLElement(node)) : false; } \
172 inline bool is##thisType(const Node* node) { return node && is##thisType(*node); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleImage.h 90 #define DEFINE_STYLE_IMAGE_TYPE_CASTS(thisType, function) \
91 DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function); \
92 inline thisType* to##thisType(const RefPtr<StyleImage>& styleImage) { return to##thisType(styleImage.get()); } \
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.h 280 #define DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) \
281 inline bool is##thisType(const thisType* element); \
282 inline bool is##thisType(const thisType& element); \
283 inline bool is##thisType(const SVGElement* element) { return element && is##thisType(*element); } \
284 inline bool is##thisType(const Node& node) { return node.isSVGElement() ? is##thisType(toSVGElement(node)) : false; } \
285 inline bool is##thisType(const Node* node) { return node && is##thisType(*node); }
    [all...]
  /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/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResource.h 80 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \
81 DEFINE_TYPE_CASTS(thisType, RenderSVGResource, resource, resource->resourceType() == typeName, resource.resourceType() == typeName)
  /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);
  /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/html/track/
TrackBase.h 81 #define DEFINE_TRACK_TYPE_CASTS(thisType, predicate) \
82 DEFINE_TYPE_CASTS(thisType, TrackBase, track, track->type() == predicate, track.type() == predicate)
  /external/dexmaker/src/dx/java/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/dom/
ElementData.h 114 #define DEFINE_ELEMENT_DATA_TYPE_CASTS(thisType, pointerPredicate, referencePredicate) \
115 template<typename T> inline thisType* to##thisType(const RefPtr<T>& data) { return to##thisType(data.get()); } \
116 DEFINE_TYPE_CASTS(thisType, ElementData, data, pointerPredicate, referencePredicate)
Node.h     [all...]
  /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/animatable/
AnimatableValue.h 134 #define DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(thisType, predicate) \
135 DEFINE_TYPE_CASTS(thisType, AnimatableValue, value, value->predicate, value.predicate)

Completed in 360 milliseconds

1 2 3