HomeSort by relevance Sort by last modified time
    Searched full:elementtype (Results 1 - 25 of 1548) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/chre/util/include/chre/util/
dynamic_vector_impl.h 29 template<typename ElementType>
30 DynamicVector<ElementType>::DynamicVector() {}
32 template<typename ElementType>
33 DynamicVector<ElementType>::DynamicVector(DynamicVector<ElementType>&& other)
44 template<typename ElementType>
45 DynamicVector<ElementType>::~DynamicVector() {
52 template <typename ElementType>
53 void DynamicVector<ElementType>::clear() {
58 template<typename ElementType>
    [all...]
priority_queue_impl.h 28 template<typename ElementType, typename CompareFunction>
29 PriorityQueue<ElementType, CompareFunction>::PriorityQueue() {}
31 template<typename ElementType, typename CompareFunction>
32 PriorityQueue<ElementType, CompareFunction>::PriorityQueue(
36 template<typename ElementType, typename CompareFunction>
37 size_t PriorityQueue<ElementType, CompareFunction>::size() const {
41 template<typename ElementType, typename CompareFunction>
42 size_t PriorityQueue<ElementType, CompareFunction>::capacity() const {
46 template<typename ElementType, typename CompareFunction>
47 bool PriorityQueue<ElementType, CompareFunction>::empty() const
    [all...]
fixed_size_vector_impl.h 27 template<typename ElementType, size_t kCapacity>
28 FixedSizeVector<ElementType, kCapacity>::~FixedSizeVector() {
32 template<typename ElementType, size_t kCapacity>
33 ElementType& FixedSizeVector<ElementType, kCapacity>::back() {
38 template<typename ElementType, size_t kCapacity>
39 const ElementType& FixedSizeVector<ElementType, kCapacity>::back() const {
44 template<typename ElementType, size_t kCapacity>
45 ElementType& FixedSizeVector<ElementType, kCapacity>::front()
    [all...]
array_queue_impl.h 28 template<typename ElementType, size_t kCapacity>
29 ArrayQueue<ElementType, kCapacity>::~ArrayQueue() {
35 template<typename ElementType, size_t kCapacity>
36 bool ArrayQueue<ElementType, kCapacity>::empty() const {
40 template<typename ElementType, size_t kCapacity>
41 bool ArrayQueue<ElementType, kCapacity>::full() const {
45 template<typename ElementType, size_t kCapacity>
46 size_t ArrayQueue<ElementType, kCapacity>::size() const {
50 template<typename ElementType, size_t kCapacity>
51 ElementType& ArrayQueue<ElementType, kCapacity>::front()
    [all...]
memory_impl.h 29 template<typename ElementType>
30 inline void destroy(ElementType *first, size_t count) {
32 first[i].~ElementType();
37 template<typename ElementType>
38 inline void moveOrCopyAssign(ElementType& dest, ElementType& source,
44 template<typename ElementType>
45 inline void moveOrCopyAssign(ElementType& dest, ElementType& source,
50 template<typename ElementType>
    [all...]
fixed_size_blocking_queue_impl.h 25 template<typename ElementType, size_t kSize>
26 bool FixedSizeBlockingQueue<ElementType, kSize>::push(
27 const ElementType& element) {
39 template<typename ElementType, size_t kSize>
40 ElementType FixedSizeBlockingQueue<ElementType, kSize>::pop() {
46 ElementType element(std::move(mQueue.front()));
51 template<typename ElementType, size_t kSize>
52 bool FixedSizeBlockingQueue<ElementType, kSize>::empty() {
57 template<typename ElementType, size_t kSize
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 20 import java.lang.annotation.ElementType;
26 * Test case of java.lang.annotation.ElementType
32 * @tests java.lang.annotation.ElementType#valueOf(String)
36 assertSame(ElementType.ANNOTATION_TYPE, ElementType
38 assertSame(ElementType.CONSTRUCTOR, ElementType.valueOf("CONSTRUCTOR"));
39 assertSame(ElementType.FIELD, ElementType.valueOf("FIELD"));
40 assertSame(ElementType.LOCAL_VARIABLE, ElementTyp
    [all...]
  /external/jsr305/ri/src/main/java/javax/annotation/
CheckReturnValue.java 4 import java.lang.annotation.ElementType;
12 @Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE,
13 ElementType.PACKAGE })
  /external/proguard/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ListOrganizer.java 23 * @param <ElementType>
25 public class ListOrganizer<ElementType> implements ZIndexable<ElementType> {
26 private List<ElementType> list;
28 public ListOrganizer(List<ElementType> list) {
33 public boolean moveToTop(ElementType element) {
42 public boolean moveAbove(ElementType objectToMove, ElementType reference) {
56 public boolean moveBeneath(ElementType objectToMove, ElementType reference) {
    [all...]
ZIndexable.java 27 * @param <ElementType>
29 public interface ZIndexable<ElementType> {
36 public boolean moveToTop(ElementType element);
45 public boolean moveAbove(ElementType objectToMove, ElementType reference);
55 public boolean moveBeneath(ElementType objectToMove, ElementType reference);
62 public boolean moveToBottom(ElementType key);
70 public boolean moveUp(ElementType key);
77 public boolean moveDown(ElementType key);
    [all...]
  /external/testng/src/test/java/test/tmp/
IgnoreUntil.java 3 import static java.lang.annotation.ElementType.CONSTRUCTOR;
4 import static java.lang.annotation.ElementType.METHOD;
5 import static java.lang.annotation.ElementType.TYPE;
  /art/test/005-annotations/src/android/test/
AnnoSimplePackage1.java 5 @Target(ElementType.PACKAGE)
  /art/test/005-annotations/src/android/test/anno/
AnnoSimpleConstructor.java 5 @Target(ElementType.CONSTRUCTOR)
AnnoSimpleField.java 5 @Target(ElementType.FIELD)
AnnoSimpleLocalVariable.java 5 @Target(ElementType.LOCAL_VARIABLE)
AnnoSimpleMethod.java 5 @Target(ElementType.METHOD)
AnnoSimplePackage.java 5 @Target(ElementType.PACKAGE)
AnnoSimpleParameter.java 5 @Target(ElementType.PARAMETER)
AnnoSimpleTypeInvis.java 5 @Target(ElementType.TYPE)
ExportedProperty.java 6 @Target({ ElementType.FIELD, ElementType.METHOD })
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
ParametersAreSlashedByDefault.java 3 import java.lang.annotation.ElementType;
10 @TypeQualifierDefault(ElementType.PARAMETER)

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>