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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dvidmode.h42 // returns true if this mode matches the other one in the sense that all
43 // non zero fields of the other mode have the same value in this one
45 bool Matches(const wxVideoMode& other) const
47 return (!other.w || w == other.w) &&
48 (!other.h || h == other.h) &&
49 (!other.bpp || bpp == other.bpp) &&
50 (!other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/serial/
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))) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DSVector.h59 SVector(const SVector &other) { argument
64 if (other.Length() > 0) {
65 SizeTo(other.Length());
67 for (int i=0;i<other.Length();i++)
68 v[i] = other.v[i];
69 len = other.Length();
74 SVector &operator=(const SVector &other) { argument
75 if (this != &other) {
81 if (other.Length() > 0) {
82 SizeTo(other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-string-util.c229 DBusString other; local
271 _dbus_string_init_const (&other, "H");
272 _dbus_assert (_dbus_string_equal_substring (&str, 0, 1, &other, 0));
273 _dbus_assert (_dbus_string_equal_substring (&str, 1, 0, &other, 1));
274 _dbus_string_init_const (&other, "Hello");
275 _dbus_assert (_dbus_string_equal_substring (&str, 0, 5, &other, 0));
276 _dbus_assert (_dbus_string_equal_substring (&str, 1, 4, &other, 1));
277 _dbus_assert (_dbus_string_equal_substring (&str, 2, 3, &other, 2));
278 _dbus_assert (_dbus_string_equal_substring (&str, 3, 2, &other, 3));
279 _dbus_assert (_dbus_string_equal_substring (&str, 4, 1, &other,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DSearchFile.cpp96 CSearchFile::CSearchFile(const CSearchFile& other) argument
97 : CAbstractFile(other),
99 m_parent(other.m_parent),
100 m_showChildren(other.m_showChildren),
101 m_searchID(other.m_searchID),
102 m_sourceCount(other.m_sourceCount),
103 m_completeSourceCount(other.m_completeSourceCount),
104 m_kademlia(other.m_kademlia),
105 m_downloadStatus(other.m_downloadStatus),
106 m_directory(other
136 MergeResults(const CSearchFile& other) argument
211 CSearchFile* other = m_children.at(i); local
[all...]
H A DClientRef.h88 bool operator < (const CClientRef & other) const { return m_client < other.m_client; }
89 bool operator == (const CClientRef & other) const { return m_client == other.m_client; }
90 bool operator != (const CClientRef & other) const { return m_client != other.m_client; }
92 void swap(CClientRef & other) argument
95 m_client = other.m_client;
96 other.m_client = c;
98 m_from.swap(other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Drbtree.c139 struct rb_node *other; local
145 other = parent->rb_right;
146 if (rb_is_red(other))
148 rb_set_black(other);
151 other = parent->rb_right;
153 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
154 (!other->rb_right || rb_is_black(other->rb_right)))
156 rb_set_red(other);
[all...]
/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 DPrimaryKeyMetadata.java47 public boolean equals(Object other) { argument
48 if (other instanceof PrimaryKeyMetadata) {
49 PrimaryKeyMetadata o = (PrimaryKeyMetadata) other;
H A DFieldMetadata.java63 public boolean equals(Object other) { argument
64 if (other instanceof FieldMetadata) {
65 FieldMetadata o = (FieldMetadata) other;
/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 DEntityConverter.java68 public boolean equals(Object other) { argument
69 if (other instanceof EntityConverter) {
70 EntityConverter o = (EntityConverter) other;
72 super.equals(other);
H A DRenamer.java83 public boolean equals(Object other) { argument
84 if (other instanceof Renamer) {
85 Renamer o = (Renamer) other;
87 super.equals(other);
H A DMutation.java60 public boolean equals(Object other) { argument
61 if (other instanceof Mutation) {
62 Mutation o = (Mutation) other;
H A DConverter.java104 public boolean equals(Object other) { argument
105 if (other instanceof Converter) {
106 Converter o = (Converter) other;
108 super.equals(other);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dtriostr.c1526 @param other Dynamic string to copy from.
1531 TRIO_ARGS2((self, other),
1533 trio_string_t *other)
1538 assert(other);
1540 length = self->length + other->length;
1543 trio_copy(&self->content[self->length], other->content);
1559 TRIO_ARGS2((self, other),
1561 TRIO_CONST char *other)
1566 assert(other);
1568 length = self->length + trio_length(other);
1530 trio_string_append(self, other), trio_string_t *self, trio_string_t *other argument
1558 trio_xstring_append(self, other), trio_string_t *self, TRIO_CONST char *other argument
1615 trio_string_contains(self, other), trio_string_t *self, trio_string_t *other argument
1633 trio_xstring_contains(self, other), trio_string_t *self, TRIO_CONST char *other argument
1651 trio_string_copy(self, other), trio_string_t *self, trio_string_t *other argument
1670 trio_xstring_copy(self, other), trio_string_t *self, TRIO_CONST char *other argument
1689 trio_string_duplicate(other), trio_string_t *other argument
1720 trio_xstring_duplicate(other), TRIO_CONST char *other argument
1751 trio_string_equal(self, other), trio_string_t *self, trio_string_t *other argument
1769 trio_xstring_equal(self, other), trio_string_t *self, TRIO_CONST char *other argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1825 trio_string_equal_case(self, other), trio_string_t *self, trio_string_t *other argument
1843 trio_xstring_equal_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1988 trio_string_match(self, other), trio_string_t *self, trio_string_t *other argument
2006 trio_xstring_match(self, other), trio_string_t *self, TRIO_CONST char *other argument
2024 trio_string_match_case(self, other), trio_string_t *self, trio_string_t *other argument
2042 trio_xstring_match_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
2060 trio_string_substring(self, other), trio_string_t *self, trio_string_t *other argument
2078 trio_xstring_substring(self, other), trio_string_t *self, TRIO_CONST char *other argument
[all...]
H A Dtriostr.h103 TRIO_STRING_PUBLIC trio_string_t *trio_xstring_duplicate TRIO_PROTO((const char *other));
111 TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other));
112 TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other));
113 TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other));
114 TRIO_STRING_PUBLIC trio_string_t *trio_string_duplicate TRIO_PROTO((trio_string_t *other));
115 TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other));
117 TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
118 TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other));
126 TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other));
127 TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Dtriostr.c1526 @param other Dynamic string to copy from.
1531 TRIO_ARGS2((self, other),
1533 trio_string_t *other)
1538 assert(other);
1540 length = self->length + other->length;
1543 trio_copy(&self->content[self->length], other->content);
1559 TRIO_ARGS2((self, other),
1561 TRIO_CONST char *other)
1566 assert(other);
1568 length = self->length + trio_length(other);
1530 trio_string_append(self, other), trio_string_t *self, trio_string_t *other argument
1558 trio_xstring_append(self, other), trio_string_t *self, TRIO_CONST char *other argument
1615 trio_string_contains(self, other), trio_string_t *self, trio_string_t *other argument
1633 trio_xstring_contains(self, other), trio_string_t *self, TRIO_CONST char *other argument
1651 trio_string_copy(self, other), trio_string_t *self, trio_string_t *other argument
1670 trio_xstring_copy(self, other), trio_string_t *self, TRIO_CONST char *other argument
1689 trio_string_duplicate(other), trio_string_t *other argument
1720 trio_xstring_duplicate(other), TRIO_CONST char *other argument
1751 trio_string_equal(self, other), trio_string_t *self, trio_string_t *other argument
1769 trio_xstring_equal(self, other), trio_string_t *self, TRIO_CONST char *other argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1825 trio_string_equal_case(self, other), trio_string_t *self, trio_string_t *other argument
1843 trio_xstring_equal_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1988 trio_string_match(self, other), trio_string_t *self, trio_string_t *other argument
2006 trio_xstring_match(self, other), trio_string_t *self, TRIO_CONST char *other argument
2024 trio_string_match_case(self, other), trio_string_t *self, trio_string_t *other argument
2042 trio_xstring_match_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
2060 trio_string_substring(self, other), trio_string_t *self, trio_string_t *other argument
2078 trio_xstring_substring(self, other), trio_string_t *self, TRIO_CONST char *other argument
[all...]
H A Dtriostr.h103 TRIO_STRING_PUBLIC trio_string_t *trio_xstring_duplicate TRIO_PROTO((const char *other));
111 TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other));
112 TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other));
113 TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other));
114 TRIO_STRING_PUBLIC trio_string_t *trio_string_duplicate TRIO_PROTO((trio_string_t *other));
115 TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other));
117 TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
118 TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other));
126 TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other));
127 TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DRecordInput.java49 private RecordInput(RecordInput other, int offset) { argument
50 this(other.catalog, other.rawAccess, other.priKeyEntry,
51 other.priKeyFormatId, other.buf, offset, other.len);
52 visited = other.visited;
58 private RecordInput(RecordInput other, DatabaseEntry entry) { argument
59 this(other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dvolume.cpp54 FileInfo(const FileInfo& other) { *this = other; } argument
55 FileInfo& operator=(const FileInfo& other) argument
57 m_flags = other.m_flags;
58 m_type = other.m_type;
148 // Notes: - This will only sensibly be called by a thread other than the one
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dstatbox.cpp53 static int other = 5; local
64 // pixels (otherwise overlapping occurs at the top). The "other"
67 other = 11;
75 *borderOther = other;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java65 public boolean equals(Object other) { argument
67 if (!(other instanceof Map.Entry)) {
71 Map.Entry e = (Map.Entry) other;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DPath.h60 CPath(const CPath& other);
69 * should not be used when sending filenames to other clients
78 CPath& operator=(const CPath& other);
80 bool operator<(const CPath& other) const;
82 bool operator==(const CPath& other) const;
84 bool operator!=(const CPath& other) const;
129 * one or the other lacks a terminal directory-seperator. However, an
132 bool IsSameDir(const CPath& other) const;
135 CPath JoinPaths(const CPath& other) const;
150 bool StartsWith(const CPath& other) cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/packaging/Solaris/
H A Dmakepkg.sh26 echo f none sbin/$file 0755 root other
31 echo f none bin/$file 0755 root other
36 echo f none lib/$file 0644 root other
39 echo f none lib/$file 0644 root other
42 echo f none lib/vfs/$file 0755 root other
45 echo f none lib/charset/$file 0755 root other
48 echo f none lib/auth/$file 0755 root other
52 echo f none lib/libsmbclient.so 0755 root other
53 echo f none lib/libsmbclient.a 0755 root other
54 echo f none include/libsmbclient.h 0644 root other
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DMarshalledObject.java39 MarshalledObject other = (MarshalledObject) o;
41 return this.data.equals(other.data) &&
42 this.primaryKey.equals(other.primaryKey) &&
43 this.indexKey1.equals(other.indexKey1) &&
44 this.indexKey2.equals(other.indexKey2);

Completed in 148 milliseconds

1234567891011>>