Home | History | Annotate | Download | only in Support

Lines Matching refs:Other

18 //    * BOMs anywhere other than the first Unicode scalar value in the file.
191 // Return Value without any escaping or folding or other fun YAML stuff. This
286 bool operator !=(const basic_collection_iterator &Other) const {
287 if(Base != Other.Base)
289 return (Base && Other.Base) && Base->CurrentEntry
290 != Other.Base->CurrentEntry;
515 bool operator ==(const document_iterator &Other) {
516 if (isAtEnd() || Other.isAtEnd())
517 return isAtEnd() && Other.isAtEnd();
519 return Doc == Other.Doc;
521 bool operator !=(const document_iterator &Other) {
522 return !(*this == Other);