Lines Matching refs:other

120     boolean equals(MarkNode other) {  in equals()  argument
121 return (other.m_Name.equals(m_Name)) && (other.m_isPoint == m_isPoint) in equals()
122 && (other.m_isStart == m_isStart); in equals()
140 public boolean equals(Object other) { in equals() argument
141 return (other instanceof BookmarkNode) in equals()
142 && super.equals((MarkNode) other) in equals()
143 && MetaNode.eq(((BookmarkNode) other).m_XmlId, m_XmlId); in equals()
174 public boolean equals(Object other) { in equals() argument
175 return (other instanceof ReferenceMarkNode) in equals()
176 && super.equals((MarkNode) other); in equals()
204 public boolean equals(Object other) { in equals() argument
205 return (other instanceof DocumentIndexMarkNode) in equals()
206 && super.equals((MarkNode) other); in equals()
242 boolean equals(ContentNode other) { in equals() argument
243 return (other.m_Content.equals(m_Content)); in equals()
252 public boolean equals(Object other) { in equals() argument
253 return (other instanceof TextNode) && super.equals((ContentNode) other); in equals()
262 public boolean equals(Object other) { in equals() argument
263 return (other instanceof TextFieldNode) in equals()
264 && super.equals((ContentNode) other); in equals()
279 public boolean equals(Object other) { in equals() argument
280 return (other instanceof FrameNode) in equals()
281 && (((FrameNode) other).m_Name.equals(m_Name)) in equals()
282 && (((FrameNode) other).m_Anchor == m_Anchor); in equals()
307 public boolean equals(Object other) { in equals() argument
308 return (other instanceof FootnoteNode) in equals()
309 && (((FootnoteNode) other).m_Label.equals(m_Label)); in equals()
323 public boolean equals(Object other) { in equals() argument
324 return (other instanceof ControlCharacterNode) in equals()
325 && (((ControlCharacterNode) other).m_Char == m_Char); in equals()
335 public boolean equals(Object other) { in equals() argument
336 return (other instanceof SoftPageBreakNode); in equals()
351 public boolean equals(Object other) { in equals() argument
352 return (other instanceof HyperlinkNode) in equals()
353 && (((HyperlinkNode) other).m_URL.equals(m_URL)); in equals()
371 public boolean equals(Object other) { in equals() argument
372 return (other instanceof RubyNode) in equals()
373 && (((RubyNode) other).m_Ruby.equals(m_Ruby)); in equals()
388 public boolean equals(Object other) { in equals() argument
389 return (other instanceof MetaNode) in equals()
390 && eq(((MetaNode) other).m_XmlId, m_XmlId); in equals()
545 TreeNode other = m_BufferActual.get(j); in testBuffer() local
3864 public boolean equals(Object other) { in checkLoadMeta()
3865 return (other instanceof MetaNode); in checkLoadMeta()