/external/junit-params/src/test/java/junitparams/ |
D | ParametersForEnumTest.java | 15 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/ |
D | TestSubtypesExternalPropertyMissingProperty.java | 22 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 …]
|
D | TestPropertyCreatorSubtypesExternalPropertyMissingProperty.java | 31 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/ |
D | README.md | 2 ## 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/ |
D | CONTRIBUTING.md | 2 # 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 …]
|
D | CMakeLists.txt | 3 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")
|
D | METADATA | 2 description: "Fruit is a dependency injection framework for C++, loosely inspired by the Guice fram…
|
D | README.md | 7 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/ |
D | ExistingPropertyTest.java | 26 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/ |
D | CMakeLists.txt | 2 # This is a restricted set compared to Fruit's code, the bar for Fruit code is higher.
|
/external/google-fruit/extras/packaging/ |
D | debian.control | 12 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
|
D | libfruit.spec | 28 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
|
D | PKGBUILD | 5 pkgdesc="Fruit is a dependency injection framework for C++."
|
/external/google-fruit/extras/scripts/ |
D | postsubmit.bat | 28 mkdir C:\Fruit\build-%CONFIGURATION% 29 cd C:\Fruit\build-%CONFIGURATION%
|
/external/google-fruit/extras/doc/ |
D | README | 2 It's not necessary to build this when building Fruit.
|
/external/google-fruit/cmake-modules/ |
D | FindFruit.cmake | 24 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Fruit DEFAULT_MSG FRUIT_LIBRARY FRUIT_INCLUDE_DIR)
|
/external/pdfium/testing/resources/ |
D | combobox_form.in | 73 (Persimmon) (Quince) (Raspberry) (Strawberry) (Tamarind) (Ugli Fruit)
|
D | listbox_form.in | 73 (Persimmon) (Quince) (Raspberry) (Strawberry) (Tamarind) (Ugli Fruit)
|
/external/google-fruit/tests/ |
D | CMakeLists.txt | 6 …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…
|
D | tested_features.md | 43 * **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/ |
D | RELEASES.md | 168 @Parameters(source = Fruit.class)
|
/external/python/enum34/enum/doc/ |
D | enum.rst | 359 >>> from enum.test_enum import Fruit 361 >>> Fruit.tomato is loads(dumps(Fruit.tomato, 2))
|
/external/python/cpython3/Doc/library/ |
D | enum.rst | 443 >>> from test.test_enum import Fruit 445 >>> Fruit.TOMATO is loads(dumps(Fruit.TOMATO))
|
/external/google-styleguide/docguide/ |
D | style.md | 367 Fruit | Attribute | Notes
|
/external/python/enum34/enum/ |
D | test.py | 90 class Fruit(Enum): class
|