/external/python/cpython3/Lib/turtledemo/ |
D | sorting_animate.py | 54 d.setx(self.x + 34 * len(self)) 60 b.setx(xpos - 34) 65 b.setx(xpos + 34) 77 b.setx(self.x + 34 * key)
|
D | minimal_hanoi.py | 36 d.setx(self.x)
|
/external/python/cpython3/Lib/test/ |
D | test_doctest2.py | 70 def setx(self, value): member in C 79 x = property(getx, setx, doc="""\
|
D | test_turtle.py | 391 self.nav.setx(-1023.2334)
|
D | test_sys.py | 1081 def setx(self, value): self.__x = value member in SizeofTest.test_objecttypes.C 1083 x = property(getx, setx, delx, "")
|
/external/python/cpython2/Lib/test/ |
D | test_doctest2.py | 71 def setx(self, value): member in C 80 x = property(getx, setx, doc="""\
|
D | test_sys.py | 704 def setx(self, value): self.__x = value member in SizeofTest.test_objecttypes.C 706 x = property(getx, setx, delx, "")
|
D | test_turtle.py | 387 self.nav.setx(-1023.2334)
|
D | test_descr.py | 2142 def setx(self, value): member in ClassPropertiesAndMethods.test_properties.C 2146 x = property(getx, setx, delx, doc="I'm the x property.")
|
/external/clang/test/SemaObjCXX/ |
D | properties.mm | 13 - (void)setx:(const X&)other; 19 - (void)setx:(const X&)other { x_ = other; }
|
D | propert-dot-error.mm | 19 - (void)setx:(X)x;
|
/external/python/cpython2/Demo/turtle/ |
D | tdemo_minimal_hanoi.py | 36 d.setx(self.x)
|
/external/google-fruit/extras/scripts/ |
D | postsubmit.bat | 26 setx PATH "%PATH%"
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Generic/ |
D | negintconst.ll | 10 ; setx .G_fmtArg_1, %o1, %o0
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/ |
D | negintconst.ll | 10 ; setx .G_fmtArg_1, %o1, %o0
|
/external/llvm/test/CodeGen/Generic/ |
D | negintconst.ll | 10 ; setx .G_fmtArg_1, %o1, %o0
|
/external/python/cpython2/Doc/library/ |
D | abc.rst | 193 def setx(self, value): ... 194 x = abstractproperty(getx, setx)
|
D | turtle.rst | 95 | :func:`setx` 347 .. function:: setx(x) 363 >>> turtle.setx(10)
|
D | functions.rst | 1022 def setx(self, value): 1028 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython3/Doc/howto/ |
D | descriptor.rst | 199 def setx(self, value): self.__x = value 201 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 205 def setx(self, value): self.__x = value 207 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/python/cpython3/Doc/library/ |
D | turtle.rst | 110 | :func:`setx` 367 .. function:: setx(x) 383 >>> turtle.setx(10)
|
D | functions.rst | 1260 def setx(self, value): 1266 x = property(getx, setx, delx, "I'm the 'x' property.")
|
/external/icu/icu4c/source/test/intltest/ |
D | usettest.cpp | 704 UnicodeSet *setx = UnicodeSet::fromUSet(uset); in TestAPI() local 705 TEST_ASSERT((void *)setx == (void *)uset); in TestAPI()
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 1708 def setx(self, x): member in TNavigator
|