Searched refs:other (Results 51 - 75 of 2064) sorted by relevance

1234567891011>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DMarkStack.cpp11 * documentation and/or other materials provided with the distribution.
93 void MarkStackArray::donateSomeCellsTo(MarkStackArray& other) argument
105 other.append(removeLast());
111 other.validatePrevious();
113 // Remove our head and the head of the other list before we start moving segments around.
116 MarkStackSegment* otherHead = other.m_segments.removeHead();
122 other.m_segments.push(current);
124 other.m_numberOfSegments++;
129 other.m_segments.push(otherHead);
132 other
135 stealSomeCellsFrom(MarkStackArray& other, size_t idleThreadCount) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DStringWithDirection.h12 * in the documentation and/or other materials provided with the
66 bool operator==(const StringWithDirection& other) const
68 return other.m_string == m_string && other.m_direction == m_direction;
70 bool operator!=(const StringWithDirection& other) const { return !((*this) == other); }
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DStyleBackgroundData.cpp49 bool StyleBackgroundData::isEquivalentForPainting(const StyleBackgroundData& other) const
51 if (m_background != other.m_background || m_color != other.m_color)
53 if (!m_outline.isVisible() && !other.m_outline.isVisible())
55 return m_outline == other.m_outline;
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dnamespace.rb27 def has_name?( other, ns=nil )
29 return (namespace() == ns and name() == other)
30 elsif other.include? ":"
31 return fully_expanded_name == other
33 return name == other
H A Dchild.rb45 # other::
51 def parent=( other )
52 return @parent if @parent == other
54 @parent = other
61 # after some other child.
67 def next_sibling=( other )
68 parent.insert_after self, other
72 # child before some other child.
78 def previous_sibling=(other)
79 parent.insert_before self, other
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_/
H A Dconst_point_iterator.hpp22 // software library without restriction. Specifically, if other files
24 // file, or you compile this file and link it with other files to
27 // License. This exception does not however invalidate any other
64 typedef typename Allocator::template rebind<Entry>::other::pointer entry_pointer;
77 typedef typename Allocator::template rebind<value_type>::other::pointer
82 typename Allocator::template rebind<value_type>::other::const_pointer
87 typename Allocator::template rebind<value_type>::other::reference
92 typename Allocator::template rebind<value_type>::other::const_reference
105 binary_heap_const_point_iterator_(const binary_heap_const_point_iterator_& other) argument
106 : m_p_e(other
[all...]
H A Dconstructors_destructor_fn_imps.hpp22 // software library without restriction. Specifically, if other files
24 // file, or you compile this file and link it with other files to
27 // License. This exception does not however invalidate any other
99 binary_heap_(const PB_DS_CLASS_C_DEC& other) : argument
100 entry_cmp(other),
101 resize_policy(other),
103 m_actual_size(other.m_actual_size),
106 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
107 _GLIBCXX_DEBUG_ASSERT(m_a_entries != other.m_a_entries);
109 const_iterator first_it = other
134 swap(PB_DS_CLASS_C_DEC& other) argument
149 value_swap(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/left_child_next_sibling_heap_/
H A Dconst_point_iterator.hpp22 // software library without restriction. Specifically, if other files
24 // file, or you compile this file and link it with other files to
27 // License. This exception does not however invalidate any other
71 typedef typename Allocator::template rebind<Node>::other::pointer node_pointer;
87 value_type>::other::pointer
93 value_type>::other::const_pointer
99 value_type>::other::reference
105 value_type>::other::const_reference
121 left_child_next_sibling_heap_node_const_point_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other argument
[all...]
H A Dconstructors_destructor_fn_imps.hpp22 // software library without restriction. Specifically, if other files
24 // file, or you compile this file and link it with other files to
27 // License. This exception does not however invalidate any other
76 left_child_next_sibling_heap_(const PB_DS_CLASS_C_DEC& other) argument
77 : Cmp_Fn(other), m_p_root(NULL), m_size(0)
79 m_size = other.m_size;
80 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
81 m_p_root = recursive_copy_node(other.m_p_root);
82 m_size = other.m_size;
89 swap(PB_DS_CLASS_C_DEC& other) argument
102 value_swap(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dhosts.h52 bool operator == (const Host &other) const;
53 bool operator != (const Host &other) const { return !(*this == other); }
54 bool operator < (const Host &other) const; // for STL sorting
57 bool operator <= (const Host &other) const;
58 bool operator >= (const Host &other) const { return other <= *this; }
H A Dtimeflow.h60 bool operator < (Interval other) const { return mValue < other.mValue; }
61 bool operator <= (Interval other) const { return mValue <= other.mValue; }
62 bool operator > (Interval other) const { return mValue > other.mValue; }
63 bool operator >= (Interval other) const { return mValue >= other.mValue; }
64 bool operator == (Interval other) const { return mValue == other
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dhosts.h52 bool operator == (const Host &other) const;
53 bool operator != (const Host &other) const { return !(*this == other); }
54 bool operator < (const Host &other) const; // for STL sorting
57 bool operator <= (const Host &other) const;
58 bool operator >= (const Host &other) const { return other <= *this; }
H A Dtimeflow.h60 bool operator < (Interval other) const { return mValue < other.mValue; }
61 bool operator <= (Interval other) const { return mValue <= other.mValue; }
62 bool operator > (Interval other) const { return mValue > other.mValue; }
63 bool operator >= (Interval other) const { return mValue >= other.mValue; }
64 bool operator == (Interval other) const { return mValue == other
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Object/
H A DArchive.h34 bool operator ==(const Child &other) const {
35 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
38 bool operator <(const Child &other) const {
39 return Data.begin() < other.Data.begin();
64 bool operator==(const child_iterator &other) const {
65 return child == other.child;
68 bool operator!=(const child_iterator &other) const {
69 return !(*this == other);
72 bool operator <(const child_iterator &other) cons
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/scxx/
H A DPWOBase.h44 PWOBase(const PWOBase &other): _obj(0), _own(0) { argument
45 GrabRef(other);
55 PWOBase &operator = (const PWOBase &other) { argument
56 GrabRef(other);
89 int cmp(const PWOBase &other)const {
91 int rc = PyObject_Cmp(_obj, other, &rslt);
96 bool operator == (const PWOBase &other)const {
97 return cmp(other) == 0;
99 bool operator != (const PWOBase &other)const {
100 return cmp(other) !
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dtmutamt.cpp33 TimeUnitAmount::TimeUnitAmount(const TimeUnitAmount& other) argument
34 : Measure(other)
40 TimeUnitAmount::operator=(const TimeUnitAmount& other) { argument
41 Measure::operator=(other);
47 TimeUnitAmount::operator==(const UObject& other) const {
48 return Measure::operator==(other);
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dtmunit.h71 TimeUnit(const TimeUnit& other);
77 TimeUnit& operator=(const TimeUnit& other);
84 virtual UBool operator==(const UObject& other) const;
91 UBool operator!=(const UObject& other) const;
97 * class have the same class ID. Objects of other classes have
138 TimeUnit::operator!=(const UObject& other) const {
139 return !operator==(other);
H A Dtmutamt.h69 TimeUnitAmount(const TimeUnitAmount& other);
76 TimeUnitAmount& operator=(const TimeUnitAmount& other);
96 * @param other the object to compare to.
100 virtual UBool operator==(const UObject& other) const;
105 * @param other the object to compare to.
109 UBool operator!=(const UObject& other) const;
134 * other classes have different class IDs.
158 TimeUnitAmount::operator!=(const UObject& other) const {
159 return !operator==(other);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DGapRects.h48 bool operator==(const GapRects& other) argument
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
52 bool operator!=(const GapRects& other) { return !(*this == other); } argument
H A DHitTestLocation.cpp103 HitTestLocation::HitTestLocation(const HitTestLocation& other, const LayoutSize& offset, RenderRegion* region) argument
104 : m_point(other.m_point)
105 , m_boundingBox(other.m_boundingBox)
106 , m_transformedPoint(other.m_transformedPoint)
107 , m_transformedRect(other.m_transformedRect)
108 , m_region(region ? region : other.m_region)
109 , m_isRectBased(other.m_isRectBased)
110 , m_isRectilinear(other.m_isRectilinear)
115 HitTestLocation::HitTestLocation(const HitTestLocation& other) argument
116 : m_point(other
130 operator =(const HitTestLocation& other) argument
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/splay_tree_/
H A Dconstructors_destructor_fn_imps.hpp22 // software library without restriction. Specifically, if other files
24 // file, or you compile this file and link it with other files to
27 // License. This exception does not however invalidate any other
85 PB_DS_CLASS_NAME(const PB_DS_CLASS_C_DEC& other) : argument
86 base_type(other)
95 swap(PB_DS_CLASS_C_DEC& other) argument
98 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
99 base_type::swap(other);
101 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dhttpversion.rb54 # Compares this version with +other+ according to the HTTP specification
57 def <=>(other)
58 unless other.is_a?(self.class)
59 other = self.class.new(other)
61 if (ret = @major <=> other.major) == 0
62 return @minor <=> other.minor
/macosx-10.9.5/ruby-104/ruby/test/psych/
H A Dtest_serialize_subclasses.rb11 def == other
12 @one == other.instance_eval { @one } &&
13 @two == other.instance_eval { @two }
28 def == other
29 super(other) && @bar == other.instance_eval{ @bar }
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdates.h110 bool operator < (const CssmUniformDate &other) const { return mTime < other.mTime; }
111 bool operator == (const CssmUniformDate &other) const { return mTime == other.mTime; }
112 bool operator > (const CssmUniformDate &other) const { return mTime > other.mTime; }
113 bool operator <= (const CssmUniformDate &other) const { return mTime <= other.mTime; }
114 bool operator >= (const CssmUniformDate &other) const { return mTime >= other
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdates.h110 bool operator < (const CssmUniformDate &other) const { return mTime < other.mTime; }
111 bool operator == (const CssmUniformDate &other) const { return mTime == other.mTime; }
112 bool operator > (const CssmUniformDate &other) const { return mTime > other.mTime; }
113 bool operator <= (const CssmUniformDate &other) const { return mTime <= other.mTime; }
114 bool operator >= (const CssmUniformDate &other) const { return mTime >= other
[all...]

Completed in 182 milliseconds

1234567891011>>