/external/llvm-project/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/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 | 1271 def getx(self): return self.__x member in SizeofTest.test_objecttypes.C 1274 x = property(getx, setx, delx, "")
|
D | test_descr.py | 2223 def getx(self): member in ClassPropertiesAndMethods.test_properties.C 2229 x = property(getx, setx, delx, doc="I'm the x property.") 2637 def getx(self): return 42 member in ClassPropertiesAndMethods.test_supers.DDbase 2638 x = property(getx) 2641 def getx(self): return "hello" member in ClassPropertiesAndMethods.test_supers.DDsub 2642 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/llvm-project/clang/test/SemaCXX/ |
D | libstdcxx_gets_hack.cpp | 16 using ::getx; // expected-error {{no member named 'getx'}}
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/ |
D | TestPropertyConflicts.java | 19 public boolean getx() { return false; } in getx() method in TestPropertyConflicts.BeanWithConflict
|
/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/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/howto/ |
D | descriptor.rst | 917 def getx(self): return self.__x 920 x = property(getx, setx, delx, "I'm the 'x' property.") 970 def getx(self): 976 x = Property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cffi/testing/cffi1/ |
D | test_recompiler.py | 1010 assert lib.getx(lib.myglob) == 42.5 1011 assert lib.getx(lib.increment(lib.myglob)) == 43.5
|
/external/python/cpython3/Doc/library/ |
D | functions.rst | 1357 def getx(self): 1366 x = property(getx, setx, delx, "I'm the 'x' property.")
|