HomeSort by relevance Sort by last modified time
    Searched refs:ElementType (Results 1 - 25 of 946) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/upstream/parameter/
ElementBuilderTemplate.h 34 template <class ElementType>
38 virtual CElement *createElement(const CXmlElement & /*elem*/) const { return new ElementType; }
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
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/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 })
  /system/chre/util/include/chre/util/
memory.h 31 template<typename ElementType>
32 void destroy(ElementType *first, size_t count);
36 * ElementType, otherwise copy assignment (dest = source).
38 template<typename ElementType>
39 void moveOrCopyAssign(ElementType& dest, ElementType& source);
51 template<typename ElementType>
52 void uninitializedMoveOrCopy(ElementType *source, size_t count,
53 ElementType *dest);
dynamic_vector_impl.h 31 template<typename ElementType>
32 DynamicVector<ElementType>::DynamicVector() {}
34 template<typename ElementType>
35 DynamicVector<ElementType>::DynamicVector(DynamicVector<ElementType>&& other)
46 template<typename ElementType>
47 DynamicVector<ElementType>::~DynamicVector() {
54 template<typename ElementType>
55 DynamicVector<ElementType>& DynamicVector<ElementType>::operator=
    [all...]
dynamic_vector.h 30 template<typename ElementType>
36 typedef ElementType* iterator;
37 typedef const ElementType* const_iterator;
52 DynamicVector(DynamicVector<ElementType>&& other);
58 DynamicVector& operator=(DynamicVector<ElementType>&& other);
78 ElementType *data();
87 const ElementType *data() const;
127 bool push_back(const ElementType& element);
128 bool push_back(ElementType&& element);
150 ElementType& operator[](size_type index)
    [all...]
fixed_size_blocking_queue.h 33 template <typename ElementType, size_t kSize>
44 bool push(const ElementType& element);
45 bool push(ElementType&& element);
53 ElementType pop();
83 ElementType& operator[](size_t index);
94 const ElementType& operator[](size_t index) const;
105 ArrayQueue<ElementType, kSize> mQueue;
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...]
fixed_size_vector.h 26 template<typename ElementType, size_t kCapacity>
37 ElementType& back();
38 const ElementType& back() const;
43 ElementType& front();
44 const ElementType& front() const;
51 ElementType *data();
58 const ElementType *data() const;
98 void push_back(const ElementType& element);
120 ElementType& operator[](size_t index);
131 const ElementType& operator[](size_t index) const
    [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...]
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...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
Internal.java 20 import java.lang.annotation.ElementType;
32 @Target({ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.FIELD,
33 ElementType.METHOD, ElementType.PACKAGE, ElementType.TYPE})
  /external/annotation-tools/annotation-file-utilities/tests/system-test/source-ann/
AnnotationTest.java 7 @Target(ElementType.TYPE_USE)
9 @Target(ElementType.TYPE_USE)
11 @Target(ElementType.TYPE_USE)
13 @Target(ElementType.TYPE_USE)
15 @Target(ElementType.TYPE_USE)
18 @Target({ElementType.TYPE_USE, ElementType.PARAMETER})
20 @Target(ElementType.TYPE_USE)
22 @Target(ElementType.TYPE_USE)
25 @Target({ElementType.TYPE_USE, ElementType.METHOD}
    [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/libmojo/base/android/java/src/org/chromium/base/annotations/
UsedByReflection.java 7 import java.lang.annotation.ElementType;
20 ElementType.METHOD, ElementType.FIELD, ElementType.TYPE,
21 ElementType.CONSTRUCTOR })
RemovableInRelease.java 7 import java.lang.annotation.ElementType;
17 @Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
  /external/mockito/src/main/java/org/mockito/
CheckReturnValue.java 7 import java.lang.annotation.ElementType;
25 ElementType.CONSTRUCTOR,
26 ElementType.METHOD,
27 ElementType.PACKAGE,
28 ElementType.TYPE
  /external/owasp/sanitizer/src/main/org/owasp/html/
TCB.java 31 import java.lang.annotation.ElementType;
40 ElementType.CONSTRUCTOR,
41 ElementType.METHOD,
42 ElementType.PACKAGE,
43 ElementType.TYPE
  /packages/apps/TV/common/src/com/android/tv/common/annotation/
UsedByNative.java 19 import java.lang.annotation.ElementType;
40 @Target({ElementType.METHOD, ElementType.FIELD, ElementType.TYPE, ElementType.CONSTRUCTOR})
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/annotations/
UsedByNative.java 19 import java.lang.annotation.ElementType;
25 @Target({ElementType.METHOD, ElementType.FIELD})
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
InverseBindingAdapter.java 18 import java.lang.annotation.ElementType;
78 @Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
  /external/guava/guava/src/com/google/common/annotations/
Beta.java 20 import java.lang.annotation.ElementType;
43 ElementType.ANNOTATION_TYPE,
44 ElementType.CONSTRUCTOR,
45 ElementType.FIELD,
46 ElementType.METHOD,
47 ElementType.TYPE})

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 91011>>