Home
last modified time | relevance | path

Searched defs:things (Results 1 – 10 of 10) sorted by relevance

/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/compare/
DObjectToStringComparatorTest.java50 final List<Thing> things = Arrays.asList(null, new Thing("y"), null); in testNull() local
59 final List<Thing> things = Arrays.asList(new Thing(null), new Thing("y"), new Thing(null)); in testNullToString() local
68 final List<Thing> things = Arrays.asList(new Thing("z"), new Thing("y"), new Thing("x")); in testSortCollection() local
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/
DMyCompositeObject.java21 Collection<MyClass<? extends Object>> things; field in MyCompositeObject
27 public void setThings(Collection<MyClass<? extends Object>> things) { in setThings()
/external/clang/test/CodeGenCXX/
Dempty-classes.cpp66 ThingOrCell things; member
/external/protobuf/src/google/protobuf/util/internal/testdata/
Dmaps.proto105 repeated string things = 2; field
/external/cronet/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dmaps.proto105 repeated string things = 2; field
/external/javapoet/src/test/java/com/squareup/javapoet/
DMethodSpecTest.java108 @Nullable String thing, List<? extends T> things) throws IOException, SecurityException; in everything()
DTypeSpecTest.java234 ClassName things = ClassName.get(tacosPackage, "Things"); in retrofitStyleInterface() local
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DAutoValueTest.java2381 public abstract ImmutableSet<? extends T> things(); in things() method in AutoValueTest.BuilderWithCopyingSetters
2395 Builder<T> setThings(ImmutableSet<T> things); in setThings()
2397 Builder<T> setThings(Iterable<? extends T> things); in setThings()
2399 Builder<T> setThings(T... things); in setThings()
2501 public abstract ImmutableList<T> things(); in things() method in AutoValueTest.BuilderWithCollectionBuilderAndSetter
2509 Builder<T> setThings(List<T> things); in setThings()
2511 ImmutableList<T> things(); in things() method
2538 ImmutableList<Integer> things = ImmutableList.of(17, 23); in testBuilderAndSetterUsingSetter() local
/external/dagger2/java/dagger/internal/codegen/validation/
DModuleValidator.java633 private static String formatListForErrorMessage(List<?> things) { in formatListForErrorMessage()
/external/kotlinpoet/kotlinpoet/src/test/java/com/squareup/kotlinpoet/
DTypeSpecTest.kt372 val things = ClassName(tacosPackage, "Things") in retrofitStyleInterface() constant