Searched refs:other (Results 226 - 250 of 1751) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/css/
H A DMediaQueryExp.h14 * documentation and/or other materials provided with the distribution.
51 bool operator==(const MediaQueryExp& other) const
53 return (other.m_mediaFeature == m_mediaFeature)
54 && ((!other.m_value && !m_value)
55 || (other.m_value && m_value && other.m_value->cssText() == m_value->cssText()));
/external/webkit/Source/WebCore/inspector/
H A DScriptArguments.cpp12 * in the documentation and/or other materials provided with the
82 bool ScriptArguments::isEqual(ScriptArguments* other) const
84 if (!other)
87 if (m_arguments.size() != other->m_arguments.size())
93 if (!m_arguments[i].isEqual(other->globalState(), other->m_arguments[i]))
/external/webkit/Source/WebCore/platform/graphics/freetype/
H A DFontPlatformDataFreeType.cpp166 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other) argument
169 if (this == &other)
172 m_size = other.m_size;
173 m_syntheticBold = other.m_syntheticBold;
174 m_syntheticOblique = other.m_syntheticOblique;
175 m_fixedWidth = other.m_fixedWidth;
176 m_pattern = other.m_pattern;
186 m_scaledFont = cairo_scaled_font_reference(other.m_scaledFont);
191 FontPlatformData::FontPlatformData(const FontPlatformData& other) argument
195 *this = other;
198 FontPlatformData(const FontPlatformData& other, float size) argument
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreJni.h11 * documentation and/or other materials provided with the distribution.
40 AutoJObject(const AutoJObject& other) argument
41 : m_env(other.m_env)
42 , m_obj(other.m_obj ? other.m_env->NewLocalRef(other.m_obj) : NULL) {}
/external/linux-tools-perf/util/added/
H A Drbtree.c141 struct rb_node *other; local
147 other = parent->rb_right;
148 if (rb_is_red(other))
150 rb_set_black(other);
153 other = parent->rb_right;
155 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
156 (!other->rb_right || rb_is_black(other->rb_right)))
158 rb_set_red(other);
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp67 PassRefPtr<RenderStyle> RenderStyle::clone(const RenderStyle* other) argument
69 return adoptRef(new RenderStyle(*other));
273 bool RenderStyle::inheritedNotEqual(const RenderStyle* other) const
275 return inherited_flags != other->inherited_flags
276 || inherited != other->inherited
278 || m_svgStyle->inheritedNotEqual(other->m_svgStyle.get())
280 || rareInheritedData != other->rareInheritedData;
306 StyleDifference RenderStyle::diff(const RenderStyle* other, unsigned& changedContextSensitiveProperties) const argument
312 if (m_svgStyle != other->m_svgStyle) {
313 svgChange = m_svgStyle->diff(other
601 setCursorList(PassRefPtr<CursorList> other) argument
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h41 SkylineStorage(const SkylineStorage& other) argument
53 *this = other;
56 SkylineStorage & operator=(const SkylineStorage& other) { argument
57 resize(other.diagSize(), other.m_upperProfileSize, other.m_lowerProfileSize, other.upperSize(), other.lowerSize());
58 memcpy(m_diag, other.m_diag, m_diagSize * sizeof (Scalar));
59 memcpy(m_upper, other
66 swap(SkylineStorage& other) argument
[all...]
/external/v8/src/
H A Dbignum.cc10 // disclaimer in the documentation and/or other materials provided
77 void Bignum::AssignBignum(const Bignum& other) { argument
78 exponent_ = other.exponent_;
79 for (int i = 0; i < other.used_digits_; ++i) {
80 bigits_[i] = other.bigits_[i];
83 for (int i = other.used_digits_; i < used_digits_; ++i) {
86 used_digits_ = other.used_digits_;
165 Bignum other;
166 other.AssignUInt64(operand);
167 AddBignum(other);
171 AddBignum(const Bignum& other) argument
213 SubtractBignum(const Bignum& other) argument
[all...]
/external/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp18 dynarray(const dynarray &other) { argument
19 Start = (T*)malloc(sizeof(T) * other.size());
20 Last = End = Start + other.size();
22 for (unsigned I = 0, N = other.size(); I != N; ++I)
23 new (Start + I) T(other[I]);
33 dynarray &operator=(const dynarray &other) { argument
34 T* NewStart = (T*)malloc(sizeof(T) * other.size());
36 for (unsigned I = 0, N = other.size(); I != N; ++I)
37 new (NewStart + I) T(other[I]);
44 Last = End = NewStart + other
122 Point(const Point& other) argument
[all...]
/external/chromium/chrome/common/extensions/
H A Dextension_extent.cc47 bool ExtensionExtent::OverlapsWith(const ExtensionExtent& other) const {
52 for (PatternList::const_iterator j = other.patterns().begin();
53 j != other.patterns().end(); ++j) {
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstFieldRef.java67 protected int compareTo0(Constant other) { argument
68 int cmp = super.compareTo0(other);
74 CstFieldRef otherField = (CstFieldRef) other;
/external/easymock/src/org/easymock/internal/matchers/
H A DEquals.java52 Equals other = (Equals) o;
53 return this.expected == null && other.expected == null
55 && this.expected.equals(other.expected);
/external/icu4c/i18n/
H A Dsortkey.cpp27 // than the other
73 CollationKey::CollationKey(const CollationKey& other) argument
74 : UObject(other), fFlagAndLength(other.getLength()),
75 fHashCode(other.fHashCode)
77 if (other.isBogus())
90 uprv_memcpy(getBytes(), other.getBytes(), length);
147 CollationKey::operator=(const CollationKey& other) argument
149 if (this != &other)
151 if (other
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRoute.java106 public boolean equals(Object other) { argument
107 return (other instanceof RouteHeader) && super.equals(other);
H A DRouteList.java71 public boolean equals(Object other) { argument
72 if (!(other instanceof RouteList))
74 RouteList that = (RouteList) other;
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DLessZeroFrame.java86 LessZeroFrame other = (LessZeroFrame)object;
88 return this.u2offsetDelta == other.u2offsetDelta &&
89 this.choppedVariablesCount != other.choppedVariablesCount;
/external/skia/include/effects/
H A DSkLightingImageFilter.h20 SkScalar dot(const SkPoint3& other) const {
21 return SkScalarMul(fX, other.fX)
22 + SkScalarMul(fY, other.fY)
23 + SkScalarMul(fZ, other.fZ);
39 SkPoint3 operator-(const SkPoint3& other) const {
40 return SkPoint3(fX - other.fX, fY - other.fY, fZ - other.fZ);
42 bool operator==(const SkPoint3& other) const {
43 return fX == other
[all...]
/external/skia/src/gpu/effects/
H A DGrSingleTextureEffect.h33 bool hasSameTextureParamsAndMatrix(const GrSingleTextureEffect& other) const {
34 const GrTextureAccess& otherAccess = other.fTextureAccess;
38 this->getMatrix().cheapEqualTo(other.getMatrix());
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DByteEncodedValue.java13 * documentation and/or other materials provided with the distribution.
72 ByteEncodedValue other = (ByteEncodedValue)o;
74 return (value<other.value?-1:(value>other.value?1:0));
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLComponent.h11 // in the documentation and/or other materials provided with the
60 bool operator==(const URLComponent& other) const { return m_begin == other.m_begin && m_length == other.m_length; }
/external/webkit/Source/WebCore/platform/qt/
H A DCursorQt.cpp17 * documentation and/or other materials provided with the distribution.
47 Cursor::Cursor(const Cursor& other) argument
48 : m_type(other.m_type)
49 , m_image(other.m_image)
50 , m_hotSpot(other.m_hotSpot)
52 , m_platformCursor(other.m_platformCursor ? new QCursor(*other.m_platformCursor) : 0)
64 Cursor& Cursor::operator=(const Cursor& other) argument
66 m_type = other.m_type;
67 m_image = other
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedPropertyDescription.h60 bool operator==(const SVGAnimatedPropertyDescription& other) const
62 return m_element == other.m_element && m_attributeName == other.m_attributeName;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
H A DProviderConfigurationPermission.java119 ProviderConfigurationPermission other = (ProviderConfigurationPermission)permission;
121 return (this.permissionMask & other.permissionMask) == other.permissionMask;
134 ProviderConfigurationPermission other = (ProviderConfigurationPermission)obj;
136 return this.permissionMask == other.permissionMask && this.getName().equals(other.getName());
/external/chromium/webkit/glue/
H A Dwebcursor.h49 WebCursor(const WebCursor& other);
50 const WebCursor& operator=(const WebCursor& other);
67 bool IsEqual(const WebCursor& other) const;
109 void Copy(const WebCursor& other);
123 bool IsPlatformDataEqual(const WebCursor& other) const ;
126 void CopyPlatformData(const WebCursor& other);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DListIntSet.java61 public void merge(IntSet other) { argument
62 if (other instanceof ListIntSet) {
63 ListIntSet o = (ListIntSet) other;
87 } else if (other instanceof BitIntSet) {
88 BitIntSet o = (BitIntSet) other;
95 IntIterator iter = other.iterator();

Completed in 900 milliseconds

1234567891011>>