/external/clang/test/Analysis/ |
D | method-call.cpp | 9 int getx() const { return x; } in getx() function 18 (void)a->getx(); // assume we know what we're doing in testNullObject() 24 clang_analyzer_eval(x.getx() == 3); // expected-warning{{TRUE}} in f1() 29 clang_analyzer_eval(x.getx() == 3); // expected-warning{{TRUE}} in f2() 34 clang_analyzer_eval(x.getx() == 3); // expected-warning{{TRUE}} in f3() 39 clang_analyzer_eval(x.getx() == 3); // expected-warning{{TRUE}} in f4()
|
D | base-init.cpp | 9 int getx() const { in getx() function in A 28 clang_analyzer_eval(b.getx() == 0); // expected-warning{{TRUE}} in f()
|
/external/python/cpython3/Lib/test/ |
D | test_doctest2.py | 61 def getx(self): member in C 79 x = property(getx, setx, doc="""\
|
D | test_sys.py | 1080 def getx(self): return self.__x member in SizeofTest.test_objecttypes.C 1083 x = property(getx, setx, delx, "")
|
D | test_descr.py | 2172 def getx(self): member in ClassPropertiesAndMethods.test_properties.C 2178 x = property(getx, setx, delx, doc="I'm the x property.") 2586 def getx(self): return 42 member in ClassPropertiesAndMethods.test_supers.DDbase 2587 x = property(getx) 2590 def getx(self): return "hello" member in ClassPropertiesAndMethods.test_supers.DDsub 2591 x = property(getx)
|
/external/python/cpython2/Lib/test/ |
D | test_doctest2.py | 62 def getx(self): member in C 80 x = property(getx, setx, doc="""\
|
D | test_sys.py | 703 def getx(self): return self.__x member in SizeofTest.test_objecttypes.C 706 x = property(getx, setx, delx, "")
|
D | test_descr.py | 2140 def getx(self): member in ClassPropertiesAndMethods.test_properties.C 2146 x = property(getx, setx, delx, doc="I'm the x property.") 2598 def getx(self): return 42 member in ClassPropertiesAndMethods.test_supers.DDbase 2599 x = property(getx) 2602 def getx(self): return "hello" member in ClassPropertiesAndMethods.test_supers.DDsub 2603 x = property(getx)
|
/external/python/cpython2/Doc/library/ |
D | abc.rst | 192 def getx(self): ... 194 x = abstractproperty(getx, setx)
|
D | functions.rst | 1019 def getx(self): 1028 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython3/Doc/howto/ |
D | descriptor.rst | 198 def getx(self): return self.__x 201 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 204 def getx(self): return self.__x 207 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython3/Doc/library/ |
D | functions.rst | 1257 def getx(self): 1266 x = property(getx, setx, delx, "I'm the 'x' property.")
|