HomeSort by relevance Sort by last modified time
    Searched full:__ne__ (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
filter_unittest.py 31 # 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
47 # also define __ne__() so that the operators will behave as
50 # (from http://docs.python.org/reference/datamodel.html#object.__ne__ )
110 # __eq__() and __ne__().
115 """Test __ne__ inequality function."""
116 # By default, __ne__ always returns true on different objects.
118 # code defines __ne__.
121 # __eq__() and __ne__()
    [all...]
error_handlers_unittest.py 112 """Test the __ne__() method."""
113 # By default, __ne__ always returns true on different objects.
115 # code defines __ne__.
119 self.assertFalse(handler1.__ne__(handler2))
optparser_unittest.py 253 """Test __ne__ inequality function."""
254 # By default, __ne__ always returns true on different objects.
256 # code defines __ne__.
257 self.assertFalse(ProcessorOptions().__ne__(ProcessorOptions()))
error_handlers.py 104 def __ne__(self, other): member in class:DefaultStyleErrorHandler
105 # Python does not automatically deduce __ne__ from __eq__.
filter.py 90 def __ne__(self, other): member in class:_CategoryFilter
189 def __ne__(self, other): member in class:FilterConfiguration
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 22 def __ne__(self, other): member in class:Number
71 def __ne__(self, other): member in class:Vector
91 "ne": (lambda a,b: a!=b, operator.ne, operator.__ne__),
200 def __ne__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
260 # Verify that __eq__ and __ne__ work for dicts even if the keys and
261 # values don't support anything other than __eq__ and __ne__ (and
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 22 def __ne__(self, other): member in class:Number
71 def __ne__(self, other): member in class:Vector
91 "ne": (lambda a,b: a!=b, operator.ne, operator.__ne__),
200 def __ne__(self_, other): self.fail("This shouldn't happen") member in class:MiscTest.test_misbehavin.Misb
260 # Verify that __eq__ and __ne__ work for dicts even if the keys and
261 # values don't support anything other than __eq__ and __ne__ (and
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system.py 21 def __ne__(self, other): member in class:StatInfo
path_canonicalizer.py 47 def __ne__(self, _): raise NotImplementedError() member in class:PathCanonicalizer.Canonicalize.ReturnType
servlet.py 114 def __ne__(self, other): member in class:Response
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_results.py 64 def __ne__(self, other): member in class:TestResult
test_failures.py 96 def __ne__(self, other): member in class:TestFailure
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
codeunit.py 83 def __ne__(self, other): return self.name != other.name member in class:CodeUnit
  /external/chromium_org/third_party/simplejson/
ordered_dict.py 118 def __ne__(self, other): member in class:OrderedDict
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
functools.py 96 def __ne__(self, other): member in class:cmp_to_key.K
numbers.py 161 def __ne__(self, other): member in class:Complex
163 # The default __ne__ doesn't negate __eq__ until 3.0.
UserList.py 20 def __ne__(self, other): return self.data != self.__cast(other) member in class:UserList
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
support.py 38 # Check for a valid __ne__ implementation
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
functools.py 96 def __ne__(self, other): member in class:cmp_to_key.K
numbers.py 161 def __ne__(self, other): member in class:Complex
163 # The default __ne__ doesn't negate __eq__ until 3.0.
UserList.py 20 def __ne__(self, other): return self.data != self.__cast(other) member in class:UserList
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
support.py 38 # Check for a valid __ne__ implementation
  /external/chromium_org/tools/find_runtime_symbols/
static_symbols.py 73 def __ne__(self, other): member in class:Procedure
110 def __ne__(self, other): member in class:ElfSection
  /external/chromium_org/tools/telemetry/docs/
telemetry.unittest.gtest_testrunner.html 98 <dl><dt><a name="GTestTestSuite-__ne__"><strong>__ne__</strong></a>(self, other)</dt></dl>
telemetry.core.memory_cache_http_server.html 140 <dl><dt><a name="ByteRange-__ne__"><strong>__ne__</strong></a>(...)</dt><dd><tt>x.<a href="#ByteRange-__ne__">__ne__</a>(y)&nbsp;&lt;==&gt;&nbsp;x!=y</tt></dd></dl>
    [all...]

Completed in 685 milliseconds

1 2 3 4 5