Home
last modified time | relevance | path

Searched refs:setx (Results 1 – 13 of 13) sorted by relevance

/third_party/flutter/engine/flutter/ci/docker/windows_build/
Dprepare_windows_server_2016_core.ps139 setx path "c:/depot_tools/;c:/MinGit/cmd;${env:path}"
40 setx DEPOT_TOOLS_WIN_TOOLCHAIN 0
41 setx GYP_MSVS_OVERRIDE_PATH "c:/Program Files (x86)/Microsoft Visual Studio/2017/Community"
/third_party/python/Lib/turtledemo/
Dsorting_animate.py54 d.setx(self.x + 34 * len(self))
60 b.setx(xpos - 34)
65 b.setx(xpos + 34)
77 b.setx(self.x + 34 * key)
Dminimal_hanoi.py36 d.setx(self.x)
/third_party/python/Lib/test/
Dtest_doctest2.py69 def setx(self, value): member in C
78 x = property(getx, setx, doc="""\
Dtest_turtle.py400 self.nav.setx(-1023.2334)
Dtest_sys.py1350 def setx(self, value): self.__x = value member in SizeofTest.test_objecttypes.C
1352 x = property(getx, setx, delx, "")
Dtest_descr.py2249 def setx(self, value): member in ClassPropertiesAndMethods.test_properties.C
2253 x = property(getx, setx, delx, doc="I'm the x property.")
/third_party/openssl/crypto/
Dsparc_arch.h81 setx SYM, %o7, reg;
/third_party/python/Doc/howto/
Ddescriptor.rst952 def setx(self, value): self.__x = value
954 x = property(getx, setx, delx, "I'm the 'x' property.")
1030 def setx(self, value):
1034 x = Property(getx, setx, delx, "I'm the 'x' property.")
/third_party/python/Doc/library/
Dturtle.rst110 | :func:`setx`
375 .. function:: setx(x)
393 >>> turtle.setx(10)
Dfunctions.rst1426 def setx(self, value):
1432 x = property(getx, setx, delx, "I'm the 'x' property.")
/third_party/icu/icu4c/source/test/intltest/
Dusettest.cpp742 UnicodeSet *setx = UnicodeSet::fromUSet(uset); in TestAPI() local
743 TEST_ASSERT((void *)setx == (void *)uset); in TestAPI()
/third_party/python/Lib/
Dturtle.py1793 def setx(self, x): member in TNavigator