Searched refs:other (Results 26 - 50 of 741) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dc-strcaseeq.h34 # define CASEEQ(other,upper) \
35 (c_isupper (upper) ? ((other) & ~0x20) == (upper) : (other) == (upper))
37 # define CASEEQ(other,upper) \
38 (c_isupper (upper) ? (other) == (upper) || (other) == (upper) - 'A' + 'a' : (other) == (upper))
40 # define CASEEQ(other,upper) \
41 (c_toupper (other) == (upper))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/HelpGen/src/
H A Dwxstllst.h120 inline iterator( const iterator& other )\
122 mpNode = other.mpNode;\
174 inline const_iterator( const iterator& other )\
176 mpNode = other.mpNode;\
230 inline reverse_iterator( const reverse_iterator& other )\
232 mpNode = other.mpNode;\
283 inline const_reverse_iterator( const reverse_iterator& other )\
285 mpNode = other.mpNode;\
327 listClass( const listClass& other )\
332 for( listClass::const_iterator i = other
[all...]
H A Dwxstlvec.h96 inline reverse_iterator( const reverse_iterator& other )\
98 mpPos = other.mpPos;\
147 inline const_reverse_iterator( const reverse_iterator& other )\
149 mpPos = other.mpPos;\
273 inline const vectorClass& operator=( const vectorClass& other )\
281 size_t newLen = difference_type( other.mpEndOfBuf - other.mpStart );\
285 PlacementCopy( other.begin(), other.end(), mpStart );\
287 mpEnd = mpStart + other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DStyle.cxx110 bool Style::EquivalentFontTo(const Style *other) const {
111 if (bold != other->bold ||
112 italic != other->italic ||
113 size != other->size ||
114 characterSet != other->characterSet)
116 if (fontName == other->fontName)
120 if (!other->fontName)
122 return strcmp(fontName, other->fontName) == 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sctp/
H A Ddebug.c157 /* Lookup "other" debug name. */
160 if (id.other <= SCTP_EVENT_OTHER_MAX)
161 return sctp_other_tbl[id.other];
162 return "unknown 'other' event";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DConversion.java39 * <li>Although field renaming (as well as all other changes) is handled by the
428 * conversion class or a superclass other than {@code Object}, {@code
437 boolean equals(Object other); argument
H A DMutations.java164 public boolean equals(Object other) { argument
165 if (other instanceof Mutations) {
166 Mutations o = (Mutations) other;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/i2c/
H A DMakefile10 obj-$(CONFIG_SND) += other/
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DEntityMetadata.java70 public boolean equals(Object other) { argument
71 if (other instanceof EntityMetadata) {
72 EntityMetadata o = (EntityMetadata) other;
H A DSecondaryKeyMetadata.java98 public boolean equals(Object other) { argument
99 if (other instanceof SecondaryKeyMetadata) {
100 SecondaryKeyMetadata o = (SecondaryKeyMetadata) other;
H A DClassMetadata.java22 * <p>This and other metadata classes are classes rather than interfaces to
123 public boolean equals(Object other) { argument
124 if (other instanceof ClassMetadata) {
125 ClassMetadata o = (ClassMetadata) other;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dconfig18 Enable option directly after other option
20 Disable option directly after other option
22 Turn option into module directly after other option
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/unix/
H A Daf_unix.c57 * other the moment one end closes.
329 static void unix_dgram_disconnected(struct sock *sk, struct sock *other) argument
339 if (!sock_flag(other, SOCK_DEAD) && unix_peer(other) == sk) {
340 other->sk_err = ECONNRESET;
341 other->sk_error_report(other);
946 struct sock *other; local
961 other = unix_find_other(net, sunaddr, alen, sock->type, hash, &err);
962 if (!other)
1014 unix_wait_for_peer(struct sock *other, long timeo) argument
1043 struct sock *other = NULL; local
1397 struct sock *other = NULL; local
1550 struct sock *other = NULL; local
1960 struct sock *other; local
2078 struct sock *sk = sock->sk, *other; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DDeadSourceList.cpp63 bool CDeadSourceList::CDeadSource::operator==(const CDeadSource& other) const
65 if ( m_ID == other.m_ID ) {
66 if ( m_Port == other.m_Port || m_KadPort == other.m_KadPort ) {
68 return m_ServerIP == other.m_ServerIP;
H A DRangeMap.h98 * adjacent to each other or partially overlapping each other, then they will
106 * It is currently not possible to manipulate existing ranges by hand, other
150 bool operator==( const iterator_base& other ) const {
151 return m_it == other.m_it;
155 bool operator!=( const iterator_base& other ) const {
156 return m_it != other.m_it;
236 CRangeMap(const CRangeMap<VALUE, KEYTYPE>& other) argument
237 : m_ranges( other.m_ranges )
244 CRangeMap& operator=(const CRangeMap<VALUE, KEYTYPE>& other) { argument
253 swap(CRangeMap<VALUE, KEYTYPE>& other) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dlayout.cpp135 // The edge is a percentage of the other window's edge
746 wxWindowBase *other) const
751 if (other->GetChildren().Find((wxWindow*)thisWin))
766 other->GetClientSizeConstraint(&w, &h);
772 other->GetClientSizeConstraint(&w, &h);
778 other->GetClientSizeConstraint(&w, &h);
784 other->GetClientSizeConstraint(&w, &h);
791 other->GetClientSizeConstraint(&w, &h);
805 wxLayoutConstraints *constr = other->GetConstraints();
818 other
[all...]
H A Dsckaddr.cpp69 wxSockAddress::wxSockAddress(const wxSockAddress& other) argument
74 m_address = GAddress_copy(other.m_address);
112 wxIPaddress::wxIPaddress(const wxIPaddress& other) argument
113 : wxSockAddress(other)
130 wxIPV4address::wxIPV4address(const wxIPV4address& other) argument
131 : wxIPaddress(other)
234 wxIPV6address::wxIPV6address(const wxIPV6address& other) argument
235 : wxIPaddress(other)
322 wxUNIXaddress::wxUNIXaddress(const wxUNIXaddress& other) argument
323 : wxSockAddress(other)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dsckaddr.h29 wxSockAddress(const wxSockAddress& other);
32 wxSockAddress& operator=(const wxSockAddress& other);
56 wxIPaddress(const wxIPaddress& other);
78 wxIPV4address(const wxIPV4address& other);
130 wxIPV6address(const wxIPV6address& other);
177 wxUNIXaddress(const wxUNIXaddress& other);
H A Dgraphics.h48 // instance from the other instances that were shared - using copy on write semantics
68 wxGraphicsObject( const wxGraphicsObject& other) : wxObject( other ) {} argument
69 wxGraphicsObject& operator= (const wxGraphicsObject & other) { Ref(other); return *this;} argument
91 wxGraphicsPen( const wxGraphicsPen& other) : wxGraphicsObject( other ) {} argument
92 wxGraphicsPen& operator= (const wxGraphicsPen & other) { Ref(other); return *this;} argument
106 wxGraphicsBrush( const wxGraphicsBrush& other) argument
107 operator =(const wxGraphicsBrush & other) argument
121 wxGraphicsFont( const wxGraphicsFont& other) argument
122 operator =(const wxGraphicsFont & other) argument
136 wxGraphicsBitmap( const wxGraphicsBitmap& other) argument
137 operator =(const wxGraphicsBitmap & other) argument
206 wxGraphicsMatrix( const wxGraphicsMatrix& other) argument
207 operator =(const wxGraphicsMatrix & other) argument
345 wxGraphicsPath( const wxGraphicsPath& other) argument
346 operator =(const wxGraphicsPath & other) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Ddead001.tcl10 # TEST deadlocked in a ring. The other has the processes all deadlocked on
60 set other 0
67 default { incr other }
74 dead_check $t $n $timeout $dead $clean $other
H A Ddead002.tcl56 set other 0
63 default { incr other }
70 dead_check $t $n $timeout $dead $clean $other
H A Ddead003.tcl55 set other 0
62 default { incr other }
68 dead_check $t $n 0 $dead $clean $other
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DPath.cpp88 // UTF-8, C or POSIX. This is because in any other case, the
290 CPath::CPath(const CPath& other) argument
291 : m_printable(DeepCopy(other.m_printable))
292 , m_filesystem(DeepCopy(other.m_filesystem))
318 CPath& CPath::operator=(const CPath& other) argument
320 if (this != &other) {
321 m_printable = DeepCopy(other.m_printable);
322 m_filesystem = DeepCopy(other.m_filesystem);
329 bool CPath::operator==(const CPath& other) const
331 return ::IsSameAs(m_filesystem, other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtimaglst.tex12 some other control classes.
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/include/asm/
H A Dframe.inc34 movm [other],(sp)
36 mov a1,(sp) # USP in MOVM[other] dummy slot
81 mov (sp),a1 # USP in MOVM[other] dummy slot
84 movm (sp),[other]

Completed in 293 milliseconds

1234567891011>>