Searched refs:other (Results 1 - 25 of 1754) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/lib/rake/ext/
H A Dtime.rb8 def <=>(other)
9 if Rake::EarlyTime === other
10 - other.<=>(self)
12 rake_original_time_compare(other)
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/rc_binomial_heap_/
H A Dsplit_join_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
51 split(Pred pred, PB_DS_CLASS_C_DEC& other) argument
54 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
57 other.make_binomial_heap();
59 base_type::split(pred, other);
62 other.find_max();
65 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
71 join(PB_DS_CLASS_C_DEC& 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
64 rc_binomial_heap_(const PB_DS_CLASS_C_DEC& other) : argument
65 PB_DS_BASE_C_DEC(other)
82 swap(PB_DS_CLASS_C_DEC& other) argument
85 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
87 base_type::swap(other);
89 m_rc.swap(other.m_rc);
92 _GLIBCXX_DEBUG_ONLY(other
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/drb/
H A Deq.rb3 def ==(other)
4 return false unless DRbObject === other
5 (@ref == other.__drbref) && (@uri == other.__drburi)
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_/
H A Dsplit_join_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
50 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) argument
53 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
57 other.clear();
59 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
65 value_swap(other);
67 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
74 _GLIBCXX_DEBUG_ONLY(other
106 join(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ddtintrv.cpp32 DateInterval::DateInterval(const DateInterval& other) argument
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) { argument
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_/
H A Dsplit_join_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
50 join_prep(PB_DS_CLASS_C_DEC& other) argument
53 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
54 if (other.m_size == 0)
59 value_swap(other);
63 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value));
65 const bool lesser = Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value), PB_DS_V2F(m_p_head->m_p_left->m_value));
71 value_swap(other);
81 join_finish(PB_DS_CLASS_C_DEC& other) argument
90 split_prep(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) argument
133 split_finish(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DMarkStack.cpp11 * documentation and/or other materials provided with the distribution.
38 void MarkStackArray::donateSomeCellsTo(MarkStackArray& other) argument
50 other.append(removeLast());
56 other.validatePrevious();
58 // Remove our head and the head of the other list before we start moving segments around.
61 GCArraySegment<const JSCell*>* otherHead = other.m_segments.removeHead();
67 other.m_segments.push(current);
69 other.m_numberOfSegments++;
74 other.m_segments.push(otherHead);
77 other
80 stealSomeCellsFrom(MarkStackArray& other, size_t idleThreadCount) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DCodeBlockHash.h11 * documentation and/or other materials provided with the distribution.
68 bool operator==(const CodeBlockHash& other) const { return hash() == other.hash(); }
69 bool operator!=(const CodeBlockHash& other) const { return hash() != other.hash(); }
70 bool operator<(const CodeBlockHash& other) const { return hash() < other.hash(); }
71 bool operator>(const CodeBlockHash& other) const { return hash() > other.hash(); }
72 bool operator<=(const CodeBlockHash& other) cons
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/unordered_iterator/
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
92 const_point_iterator_(const const_point_iterator_& other) argument
94 : m_p_value(other.m_p_value)
99 const_point_iterator_(const point_iterator_& other) argument
101 : m_p_value(other.m_p_value)
124 operator==(const point_iterator_& other) const
126 return (m_p_value == other.m_p_value);
131 operator==(const const_point_iterator_& other) cons
[all...]
H A Dpoint_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
86 point_iterator_(const point_iterator_& other) argument
88 : m_p_value(other.m_p_value)
111 operator==(const point_iterator_& other) const
113 return (m_p_value == other.m_p_value);
118 operator==(const const_point_iterator_& other) const
120 return (m_p_value == other.m_p_value);
125 operator!=(const point_iterator_& other) cons
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/serial/
H A DTestSerial.java.original19 private TestSerial other;
29 TestSerial(TestSerial other)
31 this.other = other;
36 return other;
54 if ((o.other == null) ? (this.other != null)
55 : (!o.other.equals(this.other)))
H A DTestSerial.java19 private TestSerial other; field in class:TestSerial
29 TestSerial(TestSerial other) { argument
31 this.other = other;
36 return other;
53 if ((o.other == null) ? (this.other != null)
54 : (!o.other.equals(this.other))) {
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Dcmp_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
52 operator==(const Other_HT_Map_Type& other) const
53 { return cmp_with_other(other); }
59 cmp_with_other(const Other_Map_Type& other) const
61 if (size() != other.size())
64 for (typename Other_Map_Type::const_iterator it = other.begin();
65 it != other.end(); ++it)
88 operator!=(const Other_HT_Map_Type& other) cons
[all...]
H A Dinfo_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
70 operator==(const Other_HT_Map_Type& other) const
71 { return cmp_with_other(other); }
77 cmp_with_other(const Other_Map_Type& other) const
79 if (size() != other.size())
82 for (typename Other_Map_Type::const_iterator it = other.begin();
83 it != other.end(); ++it)
105 operator!=(const Other_HT_Map_Type& other) cons
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dmeasure.cpp35 Measure::Measure(const Measure& other) : argument
36 UObject(other), unit(0) {
37 *this = other;
40 Measure& Measure::operator=(const Measure& other) { argument
41 if (this != &other) {
43 number = other.number;
44 unit = (MeasureUnit*) other.unit->clone();
57 UBool Measure::operator==(const UObject& other) const {
58 if (this == &other) { // Same object, equal
61 if (typeid(*this) != typeid(other)) { // Differen
[all...]
H A Dcurrunit.cpp34 CurrencyUnit::CurrencyUnit(const CurrencyUnit& other) : argument
35 MeasureUnit(other) {
36 u_strcpy(isoCode, other.isoCode);
39 CurrencyUnit& CurrencyUnit::operator=(const CurrencyUnit& other) { argument
40 if (this == &other) {
43 MeasureUnit::operator=(other);
44 u_strcpy(isoCode, other.isoCode);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcssmdbname.h56 CssmNetAddress(const CSSM_NET_ADDRESS &other);
60 bool operator <(const CssmNetAddress &other) const
62 return AddressType != other.AddressType ? AddressType < other.AddressType : address() < other.address();
70 DbName(const DbName &other);
71 DbName &operator =(const DbName &other);
76 bool operator <(const DbName &other) const
79 if (!mDbNameValid || !other.mDbNameValid)
80 return mDbNameValid < other
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcssmdbname.h56 CssmNetAddress(const CSSM_NET_ADDRESS &other);
60 bool operator <(const CssmNetAddress &other) const
62 return AddressType != other.AddressType ? AddressType < other.AddressType : address() < other.address();
70 DbName(const DbName &other);
71 DbName &operator =(const DbName &other);
76 bool operator <(const DbName &other) const
79 if (!mDbNameValid || !other.mDbNameValid)
80 return mDbNameValid < other
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/pairing_heap_/
H A Dsplit_join_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
51 split(Pred pred, PB_DS_CLASS_C_DEC& other) argument
54 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
56 other.clear();
61 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
75 ++other.m_size;
81 other.push_imp(p_out);
86 _GLIBCXX_DEBUG_ONLY(other
110 join(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/thin_heap_/
H A Dsplit_join_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
51 split(Pred pred, PB_DS_CLASS_C_DEC& other) argument
54 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
56 other.clear();
61 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
75 ++other.m_size;
79 other.make_root_and_link(p_out);
84 _GLIBCXX_DEBUG_ONLY(other
108 join(PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dmathn.rb76 # Exponentiate by +other+
78 def ** (other)
79 if self < 0 && other.round != other
80 Complex(self, 0.0) ** other
82 power!(other)
105 # Exponentiate by +other+
107 def ** (other)
108 if self < 0 && other.round != other
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/splay_tree_/
H A Dsplit_join_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
50 join(PB_DS_CLASS_C_DEC& other) argument
53 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
54 if (base_type::join_prep(other) == false)
57 _GLIBCXX_DEBUG_ONLY(other.assert_valid();)
61 node_pointer p_target_r = other.leftmost(other.m_p_head);
63 other
86 split(const_key_reference r_key, PB_DS_CLASS_C_DEC& other) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGStructureAbstractValue.h11 * documentation and/or other materials provided with the distribution.
93 bool addAll(const StructureSet& other) argument
95 if (isTop() || !other.size())
97 if (other.size() > 1) {
102 m_structure = other[0];
105 if (m_structure == other[0])
111 bool addAll(const StructureAbstractValue& other) argument
113 if (!other.m_structure)
117 if (other.isTop()) {
122 if (m_structure == other
188 filter(const StructureSet& other) argument
214 filter(const StructureAbstractValue& other) argument
227 filter(SpeculatedType other) argument
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/hash_fn/
H A Dsample_probe_fn.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
65 sample_probe_fn(const sample_probe_fn& other);
69 swap(sample_probe_fn& other);

Completed in 349 milliseconds

1234567891011>>