HomeSort by relevance Sort by last modified time
    Searched defs:Collection (Results 1 - 19 of 19) sorted by null

  /external/guice/extensions/persist/src/com/google/inject/persist/finder/
Finder.java 23 import java.util.Collection;
44 * Returns the configured autoboxing collection class. Use this clause to specify a collection
46 * subclass of {@code java.util.Collection}.
48 Class<? extends Collection> returnAs() default Collection.class;
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Collection.h 33 * Collection of policy element as a map indexed with a their UID type.
35 * @tparam Key type of the policy element indexing the collection.
43 class Collection : public std::map<Key, Element<Key> *>
52 Collection()
58 * Add a policy element to the collection. Policy elements are streams, strategies, input
59 * sources, ... Compile time error generated if called with not supported collection.
62 * @tparam Key indexing the collection of policy element.
66 * @return NO_ERROR if the policy element has been successfully added to the collection.
75 ALOGD("%s: adding element %s to collection", __FUNCTION__, name.c_str());
80 * Get a policy element from the collection by its key. Policy elements are streams, strategies
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/
ExtraRootBusMap.c 144 ORDERED_COLLECTION *Collection;
150 // Handles and Collection are temporary / helper variables, while in Map we
161 Collection = OrderedCollectionInit (RootBridgePathCompare,
163 if (Collection == NULL) {
189 // not the main one). In that case, link the device path into Collection.
195 Status = OrderedCollectionInsert (Collection, NULL, DevicePath);
218 Entry = OrderedCollectionMin (Collection);
249 for (Entry = OrderedCollectionMin (Collection); Entry != NULL;
252 OrderedCollectionDelete (Collection, Entry, NULL);
254 OrderedCollectionUninit (Collection);
    [all...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
_typecheck.py 122 class Collection(_SingleArgumentType):
  /external/v8/tools/clang/blink_gc_plugin/
Edge.h 17 class Collection;
40 virtual void VisitCollection(Collection*) {}
56 void VisitCollection(Collection*) override;
75 virtual void AtCollection(Collection*);
226 class Collection : public Edge {
229 Collection(RecordInfo* info, bool on_heap, bool is_root)
233 ~Collection() {
235 assert(*it && "Collection-edge members must be non-null");
  /device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
OrderedCollectionTest.c 132 Empty the collection by iterating forward through its entries.
137 @param[in,out] Collection The collection to empty.
141 IN OUT ORDERED_COLLECTION *Collection
146 Entry = OrderedCollectionMin (Collection);
153 OrderedCollectionDelete (Collection, Entry, &Ptr);
165 Empty the collection by iterating backward through its entries.
170 @param[in,out] Collection The collection to empty.
174 IN OUT ORDERED_COLLECTION *Collection
    [all...]
  /frameworks/av/media/libmedia/include/media/
TypeConverter.h 38 typedef std::vector<Type> Collection;
39 static void add(Collection &collection, Type value)
41 collection.push_back(value);
48 typedef Vector<Type> Collection;
49 static void add(Collection &collection, Type value)
51 collection.add(value);
58 typedef SortedVector<Type> Collection;
59 static void add(Collection &collection, Type value
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
InputFile.cpp 369 // If the collection was already initialized, we should have just returned it
372 TypeCollectionPtr &Collection = (Kind == kIds) ? Ids : Types;
379 Collection =
381 return *Collection;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclarationTest.java 214 // Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess
219 Collection.class.getCanonicalName(),
298 assertEquals(new ReferenceTypeImpl(new ReflectionInterfaceDeclaration(Collection.class, typeResolver), ImmutableList.of(typeVariable), typeResolver), ancestors.get("java.util.Collection"));
    [all...]
  /external/python/cpython3/Lib/
_collections_abc.py 15 "Sized", "Container", "Callable", "Collection",
388 class Collection(Sized, Iterable, Container):
394 if cls is Collection:
416 class Set(Collection):
641 class Mapping(Collection):
749 class ValuesView(MappingView, Collection):
865 class Sequence(Reversible, Collection):
typing.py 68 'Collection',
81 # Concrete collection types.
    [all...]
  /frameworks/av/services/audiopolicy/engine/config/src/
EngineConfig.cpp 51 typedef C Collection;
64 static android::status_t deserialize(_xmlDoc *doc, const _xmlNode *root, Collection &ps);
74 static android::status_t deserialize(_xmlDoc *doc, const _xmlNode *root, Collection &ps);
86 Collection &collection);
98 Collection &collection);
111 Collection &collection);
125 Collection &collection)
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Iso639Data.java 90 Individual, Macrolanguage, Special, Collection, PrivateUse, Unknown;
132 Ancient, Constructed, Extinct, Historical, Living, Special, Collection, Unknown
464 toScope.put(languageSubtag, Scope.Collection);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
Serializer.cpp 47 typedef C Collection;
50 static status_t addElementToCollection(const Element &element, Collection *collection) {
51 return collection->add(element) >= 0 ? NO_ERROR : BAD_VALUE;
57 typedef C Collection;
61 static status_t addElementToCollection(const Element &element, Collection *collection) {
62 auto pair = collection->insert(element);
298 typename Trait::Collection *collection,
    [all...]
  /art/dexlayout/
dex_ir_builder.cc 123 std::map<uint32_t, T*>& Collection() { return collection_; }
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp     [all...]
  /external/guice/extensions/persist/lib/
hsqldb.jar 
hibernate3.jar 

Completed in 3241 milliseconds