Home
last modified time | relevance | path

Searched refs:ElementType (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/external/deqp/framework/delibs/decpp/
DdeAppendList.hpp51 template<typename ElementType>
58 void append (const ElementType& value);
65 AppendList (const AppendList<ElementType>&);
66 AppendList<ElementType>& operator= (const AppendList<ElementType>&);
71 ElementType* elements;
76 , elements (reinterpret_cast<ElementType*>(deAlignedMalloc(sizeof(ElementType)*size, in Block()
77 deAlign32((deUint32)alignOf<ElementType>(), (deUint32)sizeof(void*))))) in Block()
153 typedef Iterator<const ElementType> const_iterator;
154 typedef Iterator<ElementType> iterator;
163 template<typename ElementType>
[all …]
/external/vixl/src/
Dinvalset-vixl.h75 class ElementType, \
84 ElementType, N_PREALLOCATED_ELEMENTS, KeyType, INVALID_KEY, RECLAIM_FROM, \
105 void insert(const ElementType& element);
109 size_t erase(const ElementType& element);
121 const ElementType GetMinElement();
126 static bool IsValid(const ElementType& element);
127 static KeyType GetKey(const ElementType& element);
128 static void SetKey(ElementType* element, KeyType key);
130 typedef ElementType _ElementType;
136 ElementType* Search(const ElementType& element);
[all …]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
DListOrganizer.java25 public class ListOrganizer<ElementType> implements ZIndexable<ElementType> {
26 private List<ElementType> list;
28 public ListOrganizer(List<ElementType> list) { in ListOrganizer()
33 public boolean moveToTop(ElementType element) { in moveToTop()
42 public boolean moveAbove(ElementType objectToMove, ElementType reference) { in moveAbove()
56 public boolean moveBeneath(ElementType objectToMove, ElementType reference) { in moveBeneath()
68 public boolean moveToBottom(ElementType key) { in moveToBottom()
78 public boolean moveUp(ElementType key) { in moveUp()
89 ElementType widgetAbove = list.get(widgetIndex+1); in moveUp()
93 public boolean moveDown(ElementType key) { in moveDown()
[all …]
DZIndexable.java29 public interface ZIndexable<ElementType> {
36 public boolean moveToTop(ElementType element); in moveToTop()
45 public boolean moveAbove(ElementType objectToMove, ElementType reference); in moveAbove()
55 public boolean moveBeneath(ElementType objectToMove, ElementType reference); in moveBeneath()
62 public boolean moveToBottom(ElementType key); in moveToBottom()
70 public boolean moveUp(ElementType key); in moveUp()
77 public boolean moveDown(ElementType key); in moveDown()
79 public List<ElementType> elements(); in elements()
/external/conscrypt/common/src/main/java/org/conscrypt/
DInternal.java20 import java.lang.annotation.ElementType;
32 @Target({ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.FIELD,
33 ElementType.METHOD, ElementType.PACKAGE, ElementType.TYPE})
DExperimentalApi.java19 import java.lang.annotation.ElementType;
39 ElementType.ANNOTATION_TYPE,
40 ElementType.CONSTRUCTOR,
41 ElementType.FIELD,
42 ElementType.METHOD,
43 ElementType.PACKAGE,
44 ElementType.TYPE})
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DExperimentalApi.java34 import java.lang.annotation.ElementType;
53 ElementType.ANNOTATION_TYPE,
54 ElementType.CONSTRUCTOR,
55 ElementType.FIELD,
56 ElementType.METHOD,
57 ElementType.PACKAGE,
58 ElementType.TYPE})
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DSchema.java45 private ElementType theRoot = null;
56 ElementType e = new ElementType(name, model, memberOf, flags, this); in elementType()
65 public ElementType rootElementType() { in rootElementType()
79 ElementType e = getElementType(elemName); in attribute()
95 ElementType child = getElementType(name); in parent()
96 ElementType parent = getElementType(parentName); in parent()
122 public ElementType getElementType(String name) { in getElementType()
123 return (ElementType)(theElementTypes.get(name.toLowerCase(Locale.ROOT))); in getElementType()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DSourceNodeImplTest.java16 import org.jacoco.core.analysis.ICoverageNode.ElementType;
27 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testInit()
28 assertEquals(ElementType.CLASS, node.getElementType()); in testInit()
37 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testGetLine()
46 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testEnsureCapacityUnknown1()
53 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testEnsureCapacityUnknown2()
60 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testIncrementLineUnknown()
71 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testIncrementLines()
167 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testIncrementLine()
180 final SourceNodeImpl node = new SourceNodeImpl(ElementType.CLASS, "Foo"); in testIncrementChildNoLines()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DCoverageNodeImplTest.java24 import org.jacoco.core.analysis.ICoverageNode.ElementType;
35 ICoverageNode node = new CoverageNodeImpl(ElementType.GROUP, "sample"); in testProperties()
36 assertEquals(ElementType.GROUP, node.getElementType()); in testProperties()
42 ICoverageNode node = new CoverageNodeImpl(ElementType.GROUP, "sample"); in testInit()
53 CoverageNodeImpl parent = new CoverageNodeImpl(ElementType.GROUP, in testIncrement()
55 ICoverageNode child = new CoverageNodeImpl(ElementType.GROUP, "sample") { in testIncrement()
86 CoverageNodeImpl parent = new CoverageNodeImpl(ElementType.GROUP, in testIncrementCollection()
88 ICoverageNode child1 = new CoverageNodeImpl(ElementType.GROUP, "sample") { in testIncrementCollection()
93 ICoverageNode child2 = new CoverageNodeImpl(ElementType.GROUP, "sample") { in testIncrementCollection()
104 ICoverageNode node = new CoverageNodeImpl(ElementType.CLASS, "Sample") { in testGetPlainCopy()
[all …]
/external/guava/guava/src/com/google/common/annotations/
DBeta.java20 import java.lang.annotation.ElementType;
43 ElementType.ANNOTATION_TYPE,
44 ElementType.CONSTRUCTOR,
45 ElementType.FIELD,
46 ElementType.METHOD,
47 ElementType.TYPE})
DGwtIncompatible.java20 import java.lang.annotation.ElementType;
40 ElementType.TYPE, ElementType.METHOD,
41 ElementType.CONSTRUCTOR, ElementType.FIELD })
/external/owasp/sanitizer/src/main/org/owasp/html/
DTCB.java31 import java.lang.annotation.ElementType;
40 ElementType.CONSTRUCTOR,
41 ElementType.METHOD,
42 ElementType.PACKAGE,
43 ElementType.TYPE
/external/libmojo/base/android/java/src/org/chromium/base/annotations/
DUsedByReflection.java7 import java.lang.annotation.ElementType;
20 ElementType.METHOD, ElementType.FIELD, ElementType.TYPE,
21 ElementType.CONSTRUCTOR })
/external/Microsoft-GSL/gsl/
Dspan90 template <class ElementType, std::ptrdiff_t Extent = dynamic_extent>
101 template <class ElementType, std::ptrdiff_t Extent>
102 struct is_span_oracle<gsl::span<ElementType, Extent>> : std::true_type
116 template <class ElementType, size_t Extent>
117 struct is_std_array_oracle<std::array<ElementType, Extent>> : std::true_type
343 template <class ElementType, std::ptrdiff_t Extent>
348 using element_type = ElementType;
353 using iterator = details::span_iterator<span<ElementType, Extent>, false>;
354 using const_iterator = details::span_iterator<span<ElementType, Extent>, true>;
548 template <class ElementType, std::ptrdiff_t FirstExtent, std::ptrdiff_t SecondExtent>
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/
DResourcesTest.java18 import org.jacoco.core.analysis.ICoverageNode.ElementType;
76 assertEquals("el_group", Resources.getElementStyle(ElementType.GROUP)); in testGetElementStyle()
77 assertEquals("el_bundle", Resources.getElementStyle(ElementType.BUNDLE)); in testGetElementStyle()
79 Resources.getElementStyle(ElementType.PACKAGE)); in testGetElementStyle()
81 Resources.getElementStyle(ElementType.SOURCEFILE)); in testGetElementStyle()
82 assertEquals("el_class", Resources.getElementStyle(ElementType.CLASS)); in testGetElementStyle()
83 assertEquals("el_method", Resources.getElementStyle(ElementType.METHOD)); in testGetElementStyle()
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
DBundleCheckerTest.java23 import org.jacoco.core.analysis.ICoverageNode.ElementType;
55 addRule(ElementType.BUNDLE); in testBundleLimit()
63 addRule(ElementType.PACKAGE); in testPackageLimit()
71 addRule(ElementType.SOURCEFILE); in testSourceFileLimit()
79 addRule(ElementType.CLASS); in testClassLimit()
87 addRule(ElementType.METHOD); in testMethodLimit()
95 addRule(ElementType.GROUP); in testGroupLimitNotSupported()
104 rule.setElement(ElementType.BUNDLE); in testLimitOk()
115 addRule(ElementType.BUNDLE).setExcludes("*"); in testBundleNoMatch()
121 private Rule addRule(ElementType elementType) { in addRule()
/external/jsr305/ri/src/main/java/javax/annotation/
DCheckReturnValue.java4 import java.lang.annotation.ElementType;
12 @Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE,
13 ElementType.PACKAGE })
/external/wycheproof/java/com/google/security/wycheproof/
DWycheproofRunner.java19 import java.lang.annotation.ElementType;
63 @Target({ElementType.TYPE})
74 @Target({ElementType.TYPE})
83 @Target({ElementType.TYPE})
95 @Target({ElementType.METHOD})
109 @Target({ElementType.METHOD, ElementType.FIELD})
124 @Target({ElementType.METHOD})
/external/proguard/examples/annotations/src/proguard/annotation/
DKeep.java15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
DKeepName.java15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DRule.java17 import org.jacoco.core.analysis.ICoverageNode.ElementType;
26 private ElementType element;
38 this.element = ElementType.BUNDLE; in Rule()
47 public ElementType getElement() { in getElement()
55 public void setElement(final ElementType elementType) { in setElement()
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DRequestParameters.java23 import java.lang.annotation.ElementType;
34 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
DScopingOnly.java23 import java.lang.annotation.ElementType;
35 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
/external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DNuclear.java23 import java.lang.annotation.ElementType;
28 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })

12345678910>>...15