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

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 385 #define DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES(thisType) \
386 inline bool operator==(const thisType& a, const thisType& b) { return &a == &b; } \
387 inline bool operator==(const thisType& a, const thisType* b) { return &a == b; } \
388 inline bool operator==(const thisType* a, const thisType& b) { return a == &b; } \
389 inline bool operator!=(const thisType& a, const thisType& b) { return !(a == b); } \
390 inline bool operator!=(const thisType& a, const thisType* b) { return !(a == b); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
KeyAlgorithm.h 64 #define DEFINE_KEY_ALGORITHM_TYPE_CASTS(thisType) \
65 DEFINE_TYPE_CASTS(thisType, KeyAlgorithm, value, value->is##thisType(), value.is##thisType())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 145 #define DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) \
146 inline bool is##thisType(const thisType* element); \
147 inline bool is##thisType(const thisType& element); \
148 inline bool is##thisType(const HTMLElement* element) { return element && is##thisType(*element); } \
149 inline bool is##thisType(const Element* element) { return element && is##thisType(*element); } \
150 inline bool is##thisType(const Node& node) { return node.isElementNode() ? is##thisType(toElement(node)) : false; }
    [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()); } \
BasicShapes.h 75 #define DEFINE_BASICSHAPE_TYPE_CASTS(thisType) \
76 DEFINE_TYPE_CASTS(thisType, BasicShape, value, value->type() == BasicShape::thisType##Type, value.type() == BasicShape::thisType##Type)
  /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 85 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \
86 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/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/dom/
Node.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValue.h 134 #define DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(thisType, predicate) \
135 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 259 #define DEFINE_CSS_VALUE_TYPE_CASTS(thisType, predicate) \
260 DEFINE_TYPE_CASTS(thisType, CSSValue, value, value->predicate, value.predicate)

Completed in 941 milliseconds

1 2