Searched refs:__eq__ (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/style/
H A Derror_handlers_unittest.py84 """Test the __eq__() method for the return value of True."""
88 self.assertTrue(handler1.__eq__(handler2))
91 """Test the __eq__() method for the return value of False."""
103 self.assertTrue(handler.__eq__(make_handler()))
106 self.assertFalse(handler.__eq__(make_handler(configuration=None)))
107 self.assertFalse(handler.__eq__(make_handler(file_path='bar.txt')))
108 self.assertFalse(handler.__eq__(make_handler(increment_error_count=None)))
109 self.assertFalse(handler.__eq__(make_handler(line_numbers=[50])))
H A Dfilter_unittest.py31 # On Testing __eq__() and __ne__():
34 # assertNotEquals() to test __eq__() or __ne__(). We do this to be
40 # negation of __eq__() or __ne__(), which are not necessarily
46 # false. Accordingly, when defining __eq__(), one should
104 """Test __eq__ equality function."""
110 # __eq__() and __ne__().
111 self.assertTrue(filter1.__eq__(filter2))
112 self.assertFalse(filter1.__eq__(filter3))
121 # __eq__() and __ne__().
178 """Test __eq__ metho
[all...]
H A Doptparser_unittest.py230 """Test __eq__ equality function."""
231 self.assertTrue(ProcessorOptions().__eq__(ProcessorOptions()))
244 self.assertTrue(options.__eq__(ProcessorOptions()))
246 self.assertFalse(options.__eq__(ProcessorOptions(filter_rules=["+"])))
247 self.assertFalse(options.__eq__(ProcessorOptions(git_commit="commit")))
248 self.assertFalse(options.__eq__(ProcessorOptions(is_verbose=True)))
249 self.assertFalse(options.__eq__(ProcessorOptions(min_confidence=2)))
250 self.assertFalse(options.__eq__(ProcessorOptions(output_format="vs7")))
H A Dfilter.py85 def __eq__(self, other): member in class:_CategoryFilter
91 # Python does not automatically deduce from __eq__().
177 def __eq__(self, other): member in class:FilterConfiguration
190 # Python does not automatically deduce this from __eq__().
191 return not self.__eq__(other)
H A Derror_handlers.py90 def __eq__(self, other): member in class:DefaultStyleErrorHandler
105 # Python does not automatically deduce __ne__ from __eq__.
106 return not self.__eq__(other)
H A Doptparser.py173 def __eq__(self, other): member in class:CommandOptionValues
192 # Python does not automatically deduce this from __eq__().
193 return not self.__eq__(other)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_results.py48 def __eq__(self, other): member in class:TestResult
H A Dtest_failures.py93 def __eq__(self, other): member in class:TestFailure
/external/protobuf/python/google/protobuf/
H A Dmessage.py70 def __eq__(self, other_msg): member in class:Message
H A Dreflection.py718 def __eq__(self, other): function in function:_AddEqualsMethod
728 cls.__eq__ = __eq__
1098 def __eq__(self, other): member in class:_ExtensionDict
/external/protobuf/python/google/protobuf/internal/
H A Dcontainers.py72 # The concrete classes should define __eq__.
165 def __eq__(self, other): member in class:RepeatedScalarFieldContainer
237 def __eq__(self, other): member in class:RepeatedCompositeFieldContainer
/external/protobuf/python/
H A Dmox.py314 def __eq__(self, rhs): member in class:MockAnything
419 def __eq__(self, rhs): member in class:MockObject
622 def __eq__(self, rhs): member in class:MockMethod
783 def __eq__(self, rhs): member in class:Comparator
/external/clang/bindings/python/clang/
H A Dcindex.py150 def __eq__(self, other): member in class:SourceLocation
154 return not self.__eq__(other)
196 def __eq__(self, other): member in class:SourceRange
200 return not self.__eq__(other)
892 def __eq__(self, other): member in class:Cursor
896 return not self.__eq__(other)
1304 def __eq__(self, other): member in class:Type
1311 return not self.__eq__(other)
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dtestoutput.py84 def __eq__(self, other): member in class:TestOutput
/external/skia/bench/
H A Dbench_graph_svg.py58 def __eq__(self, other): member in class:Label
/external/chromium/testing/gtest/scripts/
H A Dpump.py94 def __eq__(self, rhs): member in class:Cursor
/external/gtest/scripts/
H A Dpump.py94 def __eq__(self, rhs): member in class:Cursor
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py3497 def __eq__(self, other): member in class:CppChecker
3512 # Python does not automatically deduce __ne__() from __eq__().
3513 return not self.__eq__(other)
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py597 def __eq__(self, other): member in class:Tag
612 as defined in __eq__."""

Completed in 277 milliseconds