Home
last modified time | relevance | path

Searched refs:Fruit (Results 1 – 25 of 30) sorted by relevance

12

/external/junit-params/src/test/java/junitparams/
DParametersForEnumTest.java15 private static Set<Fruit> testedFruits = new HashSet<Fruit>();
19 assertThat(testedFruits).contains(Fruit.class.getEnumConstants()); in checkAllFruitsTested()
23 @Parameters(source = Fruit.class)
24 public void testAFruit(Fruit fruit) throws Exception { in testAFruit()
28 public enum Fruit { enum in ParametersForEnumTest
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ext/
DTestSubtypesExternalPropertyMissingProperty.java22 public Fruit fruit;
27 public Box(String type, Fruit fruit) { in Box()
40 public Fruit fruit;
45 public ReqBox(String type, Fruit fruit) { in ReqBox()
55 static abstract class Fruit { class in TestSubtypesExternalPropertyMissingProperty
58 public Fruit() { in Fruit() method in TestSubtypesExternalPropertyMissingProperty.Fruit
61 protected Fruit(String n) { in Fruit() method in TestSubtypesExternalPropertyMissingProperty.Fruit
66 static class Apple extends Fruit {
78 static class Orange extends Fruit {
192 Fruit deserOrange = deserOrangeBox.fruit; in checkOrangeBox()
[all …]
DTestPropertyCreatorSubtypesExternalPropertyMissingProperty.java31 private Fruit fruit;
33 private Box(String type, Fruit fruit) { in Box()
39 … public static Box getBox(@JsonProperty("type") String type, @JsonProperty("fruit") Fruit fruit) { in getBox()
47 public Fruit getFruit() { in getFruit()
52 static abstract class Fruit { class in TestPropertyCreatorSubtypesExternalPropertyMissingProperty
55 protected Fruit(String n) { in Fruit() method in TestPropertyCreatorSubtypesExternalPropertyMissingProperty.Fruit
64 static class Apple extends Fruit {
82 static class Orange extends Fruit {
188 Fruit deserOrange = deserOrangeBox.getFruit(); in checkOrangeBox()
198 Fruit deserApple = deserAppleBox.fruit; in checkAppleBox()
[all …]
/external/google-fruit/extras/benchmark/
DREADME.md2 ## Fruit benchmarks
4 Fruit contains some code to benchmark various metrics (e.g. performance, compile time, executable s…
9 The `suites` folder contains suites of Fruit (or Fruit-related) benchmarks that can be run using `r…
26 * `fruit_full.yml`: full set of Fruit benchmarks (using the Fruit 3.x API).
31 * `fruit_single.yml`: runs the Fruit runtime benchs under a single compiler and with just 1 combina…
34 * `fruit_debug.yml`: a suite used to debug Fruit's benchmarking code. This is very quick, but the a…
37 time of writing) instead of Fruit.
47 there could be a table definition that displays only metrics meaningful to Fruit users and one that…
48 more fine-grained metrics that are only meaningful to Fruit developers).
59 a Fruit commit):
[all …]
/external/google-fruit/
DCONTRIBUTING.md2 # Contributing to Fruit
4 This file contains various information and documentation for Fruit contributors.
5 If you only want to use Fruit, see the [wiki](https://github.com/google/fruit/wiki);
6 you can find instructions for building Fruit manually
9 If you actually want to change Fruit itself, that's great! Read on.
15 Fruit supports two build systems: CMake (configured in `CMakeLists.txt` files) and
18 This means that when you build/test Fruit code you have a choice of what build system you want to u…
20 `CMakeLists.txt` and `BUILD` files, to make sure that Fruit keeps building (and passing its tests) …
24 Example commands to build a development version of Fruit using CMake (with all assertions enabled) …
38 Fruit uses Travis CI for continuous integration. You can see the latest CI runs in Travis CI
[all …]
DCMakeLists.txt3 project(Fruit VERSION 3.6.0 LANGUAGES CXX) project
29 # The Visual Studio CMake generators default to multiple configurations, but Fruit doesn't support …
58 option(FRUIT_ENABLE_COVERAGE "Enable collection of test coverage. This is meant to be used by Fruit
68 …If this is false, Fruit will use std::unordered_set and std::unordered_map instead (however this c…
85 set(RUN_TESTS_UNDER_VALGRIND FALSE CACHE BOOL "Whether to run Fruit tests under valgrind")
107 set(FRUIT_ENABLE_CLANG_TIDY FALSE CACHE BOOL "Whether to run clang-tidy on the Fruit codebase durin…
120 # of the user-friendly default that hides Fruit internals).
145 set(CPACK_PACKAGE_NAME "Fruit")
147 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Fruit - Dependency Injection Framework For C++")
148 set(CPACK_PACKAGE_INSTALL_DIRECTORY "Fruit")
DMETADATA2 description: "Fruit is a dependency injection framework for C++, loosely inspired by the Guice fram…
DREADME.md7 Fruit is a [dependency injection](http://en.wikipedia.org/wiki/Dependency_injection) framework for …
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DExistingPropertyTest.java26 static abstract class Fruit { class in ExistingPropertyTest
28 protected Fruit(String n) { name = n; } in Fruit() method in ExistingPropertyTest.Fruit
32 static class Apple extends Fruit
46 static class Orange extends Fruit
60 public Fruit fruit;
62 public FruitWrapper(Fruit f) { fruit = f; } in FruitWrapper()
204 private static final List<Fruit> fruitList = Arrays.asList(pinguo, mandarin);
268 Fruit pinguoDeserialized = MAPPER.readValue(pinguoJson, Fruit.class); in testSimpleClassAsExistingPropertyDeserializationFruits()
276 Fruit pinguoExtracted = pinguoWrapperDeserialized.fruit; in testSimpleClassAsExistingPropertyDeserializationFruits()
283 Fruit[] fruits = MAPPER.readValue(fruitListJson, Fruit[].class); in testSimpleClassAsExistingPropertyDeserializationFruits()
[all …]
/external/google-fruit/examples/
DCMakeLists.txt2 # This is a restricted set compared to Fruit's code, the bar for Fruit code is higher.
/external/google-fruit/extras/packaging/
Ddebian.control12 Fruit is a dependency injection framework for C++, loosely inspired by the
21 Fruit is a dependency injection framework for C++, loosely inspired by the
Dlibfruit.spec28 Fruit is a dependency injection framework for C++, loosely inspired by the
41 Fruit is a dependency injection framework for C++, loosely inspired by the
DPKGBUILD5 pkgdesc="Fruit is a dependency injection framework for C++."
/external/google-fruit/extras/scripts/
Dpostsubmit.bat28 mkdir C:\Fruit\build-%CONFIGURATION%
29 cd C:\Fruit\build-%CONFIGURATION%
/external/google-fruit/extras/doc/
DREADME2 It's not necessary to build this when building Fruit.
/external/google-fruit/cmake-modules/
DFindFruit.cmake24 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Fruit DEFAULT_MSG FRUIT_LIBRARY FRUIT_INCLUDE_DIR)
/external/pdfium/testing/resources/
Dcombobox_form.in73 (Persimmon) (Quince) (Raspberry) (Strawberry) (Tamarind) (Ugli Fruit)
Dlistbox_form.in73 (Persimmon) (Quince) (Raspberry) (Strawberry) (Tamarind) (Ugli Fruit)
/external/google-fruit/tests/
DCMakeLists.txt6 …option(FRUIT_TESTS_USE_PRECOMPILED_HEADERS "Whether to use pre-compiled headers (PCHs) in Fruit te…
13 …option(FRUIT_TESTS_USE_PRECOMPILED_HEADERS "Whether to use pre-compiled headers (PCHs) in Fruit te…
Dtested_features.md43 * **TODO: ownership check** Returning a pointer (also check that Fruit takes ownership)
98 * **TODO: ownership check** Returning a pointer (also check that Fruit takes ownership)
/external/junit-params/
DRELEASES.md168 @Parameters(source = Fruit.class)
/external/python/enum34/enum/doc/
Denum.rst359 >>> from enum.test_enum import Fruit
361 >>> Fruit.tomato is loads(dumps(Fruit.tomato, 2))
/external/python/cpython3/Doc/library/
Denum.rst443 >>> from test.test_enum import Fruit
445 >>> Fruit.TOMATO is loads(dumps(Fruit.TOMATO))
/external/google-styleguide/docguide/
Dstyle.md367 Fruit | Attribute | Notes
/external/python/enum34/enum/
Dtest.py90 class Fruit(Enum): class

12