Searched defs:features (Results 1 - 25 of 104) sorted by relevance

12345

/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DTesterAnnotation.java17 package com.google.common.collect.testing.features;
H A DFeature.java17 package com.google.common.collect.testing.features;
24 * Base class for enumerating the features of an interface to be tested.
26 * @param <T> The interface whose features are to be enumerated.
31 /** Returns the set of features that are implied by this feature. */
H A DCollectionSize.java17 package com.google.common.collect.testing.features;
30 * When describing the features of the collection produced by a given generator
34 * should be built. (In a typical case, the features should include {@link
36 * from those of other Collection-related features such as {@link
H A DConflictingRequirementsException.java17 package com.google.common.collect.testing.features;
H A DListFeature.java17 package com.google.common.collect.testing.features;
29 * Optional features of classes derived from {@code List}.
H A DSetFeature.java17 package com.google.common.collect.testing.features;
28 * Optional features of classes derived from {@code Set}.
H A DFeatureUtil.java17 package com.google.common.collect.testing.features;
49 * Given a set of features, add to it all the features directly or indirectly
51 * @param features the set of features to expand
52 * @return the same set of features, expanded with all implied features
54 public static Set<Feature<?>> addImpliedFeatures(Set<Feature<?>> features) { argument
55 // The base case of the recursion is an empty set of features, which will
56 // occur when the previous set contained only simple features
69 impliedFeatures(Set<Feature<?>> features) argument
[all...]
H A DTesterRequirements.java17 package com.google.common.collect.testing.features;
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
H A DListListIteratorTester.java21 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
22 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_ADD_WITH_INDEX;
23 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_SET;
31 import com.google.common.collect.testing.features.CollectionFeature;
32 import com.google.common.collect.testing.features.ListFeature;
66 private void runListIteratorTest(Set<IteratorFeature> features) { argument
68 listListIteratorTesterNumIterations(), singleton(samples.e4), features,
H A DCollectionIteratorTester.java21 import static com.google.common.collect.testing.features.CollectionFeature.KNOWN_ORDER;
22 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_ITERATOR_REMOVE;
29 import com.google.common.collect.testing.features.CollectionFeature;
92 private void runIteratorTest(Set<IteratorFeature> features, argument
94 new IteratorTester<E>(Platform.collectionIteratorTesterNumIterations(), features, elements,
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorTester.java70 * @param features the features supported by the iterator
73 Iterable<? extends IteratorFeature> features,
75 super(steps, Collections.<E>singleton(null), features, expectedElements,
72 IteratorTester(int steps, Iterable<? extends IteratorFeature> features, Iterable<E> expectedElements, KnownOrder knownOrder) argument
H A DListIteratorTester.java31 * {@code add()} calls; {@code features}, the features supported by the
44 Iterable<? extends IteratorFeature> features,
46 super(steps, elementsToInsert, features, expectedElements,
43 ListIteratorTester(int steps, Iterable<E> elementsToInsert, Iterable<? extends IteratorFeature> features, Iterable<E> expectedElements, int startIndex) argument
H A DCollectionTestSuiteBuilder.java19 import com.google.common.collect.testing.features.CollectionFeature;
20 import com.google.common.collect.testing.features.Feature;
95 private static Set<Feature<?>> computeReserializedCollectionFeatures(Set<Feature<?>> features) { argument
97 derivedFeatures.addAll(features);
H A DListTestSuiteBuilder.java19 import com.google.common.collect.testing.features.CollectionFeature;
20 import com.google.common.collect.testing.features.Feature;
147 Set<Feature<?>> features) {
149 derivedFeatures.addAll(features);
146 computeReserializedCollectionFeatures( Set<Feature<?>> features) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListListIteratorTester.java21 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
22 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_ADD_WITH_INDEX;
23 import static com.google.common.collect.testing.features.ListFeature.SUPPORTS_SET;
32 import com.google.common.collect.testing.features.CollectionFeature;
33 import com.google.common.collect.testing.features.ListFeature;
69 private void runListIteratorTest(Set<IteratorFeature> features) { argument
71 listListIteratorTesterNumIterations(), singleton(samples.e4), features,
H A DCollectionIteratorTester.java21 import static com.google.common.collect.testing.features.CollectionFeature.KNOWN_ORDER;
22 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_ITERATOR_REMOVE;
30 import com.google.common.collect.testing.features.CollectionFeature;
94 private void runIteratorTest(Set<IteratorFeature> features, argument
96 new IteratorTester<E>(Platform.collectionIteratorTesterNumIterations(), features, elements,
/external/guava/guava-testlib/test/com/google/common/collect/testing/features/
H A DFeatureEnumTest.java17 package com.google.common.collect.testing.features;
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAXFactoryImpl.java32 * The easiest way to test validity of features to set is to use
42 * This Map contains explicitly set features that can be succesfully
50 private HashMap features = null; field in class:SAXFactoryImpl
67 return SAXParserImpl.newInstance(features);
87 if (features == null) {
89 features = new LinkedHashMap();
91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
H A DSAXParserImpl.java42 public static SAXParserImpl newInstance(Map features) argument
46 if (features != null) {
47 Iterator it = features.entrySet().iterator();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java22 * if all plugins defined in the features are present.
27 //directory containing of build source, parent of features and plugins
30 //Comma separated list of features to parse
34 private Vector features; field in class:FetchValidator
99 features = parser.getFeatures();
105 // collect a list of missing plugins (or fragments), and features
120 enumeration = features.elements();
124 if (new File(install + "/features/" + feature).exists())
H A DElementParser.java33 private Vector features; field in class:ElementParser
36 public Vector getFeatures(){return features;}
52 // instantiate vectors that will hold lists of plugins and features read from feature.xml
54 features = new Vector();
75 xmlFile=install+"/features/"+id+"/"+"feature.xml";
96 add(atts.getValue("id")+"-feature", features);
129 System.out.println(xmlParser.features);
132 System.out.println(xmlParser.features.size()+" features expected");
/external/guava/guava-testlib/test/com/google/common/collect/testing/
H A DMapTestSuiteBuilderTests.java20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
25 import com.google.common.collect.testing.features.CollectionFeature;
26 import com.google.common.collect.testing.features.CollectionSize;
27 import com.google.common.collect.testing.features.Feature;
28 import com.google.common.collect.testing.features.MapFeature;
73 WrappedHashMapGenerator generator, String name, Feature<?>... features) {
74 List<Feature<?>> featuresList = Lists.newArrayList(features);
72 wrappedHashMapTests( WrappedHashMapGenerator generator, String name, Feature<?>... features) argument
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c37 static void do_disassemble(const char *triple, const char *features, argument
39 LLVMDisasmContextRef D = LLVMCreateDisasmCPUFeatures(triple, "", features,
69 const char *features = tokens[1]; local
72 printf("triple: %s, features: %s\n", triple, features);
73 if (!strcmp(features, "NULL"))
74 features = "";
83 do_disassemble(triple, features, disbuf, disbuflen);
/external/skia/src/core/
H A DSkUtilsArm.cpp20 # include <cpu-features.h>
30 // Use the Android NDK's cpu-features helper library to detect NEON at runtime.
86 const char features[] = "\nFeatures\t"; local
87 const size_t features_len = sizeof(features)-1;
90 features, features_len);
/external/v8/src/base/
H A Dcpu.cc425 // Try to extract the list of CPU features from ELF hwcaps.
436 char* features = cpu_info.ExtractField("Features"); local
437 has_idiva_ = HasListItem(features, "idiva");
438 has_neon_ = HasListItem(features, "neon");
439 has_thumb2_ = HasListItem(features, "thumb2");
440 has_vfp_ = HasListItem(features, "vfp");
441 if (HasListItem(features, "vfpv3d16")) {
443 } else if (HasListItem(features, "vfpv3")) {
447 delete[] features;

Completed in 467 milliseconds

12345