Home
last modified time | relevance | path

Searched full:wheels (Results 1 – 25 of 48) sorted by relevance

12

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DArrayTagsTest.java33 Wheel[] wheels = new Wheel[5]; in testDefaultRepresenter() local
37 wheels[i - 1] = wheel; in testDefaultRepresenter()
39 car.setWheels(wheels); in testDefaultRepresenter()
47 Wheel[] wheels = new Wheel[5]; in testFlowBlock() local
51 wheels[i - 1] = wheel; in testFlowBlock()
53 car.setWheels(wheels); in testFlowBlock()
66 List<Wheel> wheels = car.getWheels(); in testLoadClassTag() local
67 assertNotNull(wheels); in testLoadClassTag()
68 assertEquals(5, wheels.size()); in testLoadClassTag()
87 Wheel[] wheels = car.getWheels(); in testLoadClassNoRoot() local
[all …]
DTypeSafeCollectionsTest.java36 carDescription.putListPropertyType("wheels", Wheel.class); in testTypeSafeList()
41 List<Wheel> wheels = car.getWheels(); in testTypeSafeList() local
42 assertNotNull(wheels); in testTypeSafeList()
43 assertEquals(5, wheels.size()); in testTypeSafeList()
44 for (Wheel wheel : wheels) { in testTypeSafeList()
52 carDescription.putMapPropertyType("wheels", MyWheel.class, Object.class); in testTypeSafeMap()
58 Map<MyWheel, Date> wheels = car.getWheels(); in testTypeSafeMap() local
59 assertNotNull(wheels); in testTypeSafeMap()
60 assertEquals(5, wheels.size()); in testTypeSafeMap()
61 for (MyWheel wheel : wheels.keySet()) { in testTypeSafeMap()
[all …]
DClassTagsTest.java35 List<Wheel> wheels = new ArrayList<Wheel>(); in testDefaultRepresenter() local
39 wheels.add(wheel); in testDefaultRepresenter()
41 car.setWheels(wheels); in testDefaultRepresenter()
48 List<Wheel> wheels = new ArrayList<Wheel>(); in testDumpClassTag() local
52 wheels.add(wheel); in testDumpClassTag()
54 car.setWheels(wheels); in testDumpClassTag()
81 List<Wheel> wheels = car.getWheels(); in testLoadClassTag() local
82 assertNotNull(wheels); in testLoadClassTag()
83 assertEquals(5, wheels.size()); in testLoadClassTag()
101 List<Wheel> wheels = car.getWheels(); in testLoadClassNoRoot() local
[all …]
DCar.java22 private List<Wheel> wheels; field in Car
33 return wheels; in getWheels()
36 public void setWheels(List<Wheel> wheels) { in setWheels() argument
37 this.wheels = wheels; in setWheels()
DMyCar.java23 private Map<MyWheel, Date> wheels; field in MyCar
35 return wheels; in getWheels()
38 public void setWheels(Map<MyWheel, Date> wheels) { in setWheels() argument
39 this.wheels = wheels; in setWheels()
DImplicitTagsTest.java96 List<Wheel> wheels = car.getWheels(); in testLoadClassTag() local
97 assertNotNull(wheels); in testLoadClassTag()
98 assertEquals(5, wheels.size()); in testLoadClassTag()
99 Wheel w1 = wheels.get(0); in testLoadClassTag()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DNestedBuildersTest.java108 List<Wheel> wheels = new ArrayList<Wheel>(vehicleBuilder.getWheelList()); in testMessagesAreCached() local
109 for (int i = 0; i < wheels.size(); i++) { in testMessagesAreCached()
110 assertSame(wheels.get(i), vehicleBuilder.getWheel(i)); in testMessagesAreCached()
114 for (int i = 0; i < wheels.size(); i++) { in testMessagesAreCached()
117 for (int i = 0; i < wheels.size(); i++) { in testMessagesAreCached()
118 assertSame(wheels.get(i), vehicleBuilder.getWheel(i)); in testMessagesAreCached()
125 // Now get wheels and check that only that one changed in testMessagesAreCached()
126 for (int i = 0; i < wheels.size(); i++) { in testMessagesAreCached()
128 assertSame(wheels.get(i), vehicleBuilder.getWheel(i)); in testMessagesAreCached()
130 assertNotSame(wheels.get(i), vehicleBuilder.getWheel(i)); in testMessagesAreCached()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
DYamlLoadAsIssueTest.java51 line("wheels:"); in setUp()
84 ArrayList<Wheel> wheels = new ArrayList<Wheel>(car.getWheels()); in ignoreImplicitTag() local
85 assertEquals(4, wheels.size()); in ignoreImplicitTag()
86 for (int i = 0; i < wheels.size(); i++) { in ignoreImplicitTag()
87 assertEquals(wheels.get(i).getId(), Integer.valueOf(i + 1)); in ignoreImplicitTag()
117 if ("wheels".equals(field)) { in construct()
119 List<Wheel> wheels = (List<Wheel>) constructSequence(snode); in construct() local
120 car.setWheels(wheels); in construct()
DCar.java27 private Collection<Wheel> wheels; field in Car
41 return wheels; in getWheels()
44 public void setWheels(Collection<Wheel> wheels) { in setWheels() argument
45 this.wheels = wheels; in setWheels()
/external/python/cpython3/PC/layout/support/
Dpip.py40 wheels = [shutil.copy(whl, ns.temp) for whl in src.glob("*.whl")]
41 search_path = os.pathsep.join(wheels)
75 for file in wheels:
/external/python/setuptools/setuptools/
Dbuild_meta.py151 wheels = [f for f in os.listdir(wheel_directory)
154 assert len(wheels) == 1
155 return wheels[0]
/external/v8/tools/
Dcallstats.py.vpython28 name: "infra/python/wheels/numpy/${vpython_platform}"
33 name: "infra/python/wheels/scipy/${vpython_platform}"
Drun-tests.py.vpython30 name: "infra/python/wheels/pyyaml/${vpython_platform}"
/external/python/httplib2/
D.travis.yml68 # but wheels don't roll well with our 2/3 split code base
85 # but wheels don't roll well with our 2/3 split code base
/external/python/httplib2/script/
Dtest28 # but wheels don't roll well with our 2/3 split code base
57 # but wheels don't roll well with our 2/3 split code base
/external/snakeyaml/src/test/resources/constructor/
Dcar-without-tags.yaml3 wheels:
Dcararray-with-tags.yaml3 wheels:
Dcar-no-root-class.yaml3 wheels:
Dcar-with-tags.yaml3 wheels:
Dcararray-with-tags-flow-auto.yaml3 wheels:
Dcar-no-root-class-map.yaml2 wheels:
/external/snakeyaml/src/test/resources/javabeans/
Dmycar-with-global-tag1.yaml3 wheels:
/external/grpc-grpc/src/python/grpcio/
Dcommands.py78 # https://bitbucket.org/pypa/pypi/issues/120/binary-wheels-for-linux-are-not-supported
89 # the custom wheels that we build/upload to GCS.
/external/mesa3d/
Dappveyor.yml54 # Install python wheels, necessary to install SCons via pip
/external/grpc-grpc/tools/run_tests/artifacts/
Dpackage_targets.py127 """Collects python eggs and wheels created in the artifact phase"""

12