/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ElementTraversal.h | 34 template <class ElementType> 38 …static ElementType* firstChild(const ContainerNode& current) { return firstChildTemplate(current);… in firstChild() 39 static ElementType* firstChild(const Node& current) { return firstChildTemplate(current); } in firstChild() 41 static ElementType* firstChild(const ContainerNode&, MatchFunc); 42 … static ElementType* lastChild(const ContainerNode& current) { return lastChildTemplate(current); } in lastChild() 43 static ElementType* lastChild(const Node& current) { return lastChildTemplate(current); } in lastChild() 45 static ElementType* lastChild(const ContainerNode&, MatchFunc); 48 static ElementType* firstAncestor(const Node& current); 49 …static ElementType* firstAncestorOrSelf(Node& current) { return firstAncestorOrSelfTemplate(curren… in firstAncestorOrSelf() 50 …static ElementType* firstAncestorOrSelf(Element& current) { return firstAncestorOrSelfTemplate(cur… in firstAncestorOrSelf() [all …]
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | Schema.java | 44 private ElementType theRoot = null; 55 ElementType e = new ElementType(name, model, memberOf, flags, this); in elementType() 64 public ElementType rootElementType() { in rootElementType() 78 ElementType e = getElementType(elemName); in attribute() 94 ElementType child = getElementType(name); in parent() 95 ElementType parent = getElementType(parentName); in parent() 121 public ElementType getElementType(String name) { in getElementType() 122 return (ElementType)(theElementTypes.get(name.toLowerCase())); in getElementType()
|
D | ElementType.java | 23 public class ElementType { class 32 private ElementType theParent; // parent of this element type 50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) { in ElementType() method in ElementType 157 public ElementType parent() {return theParent;} in parent() 175 public boolean canContain(ElementType other) { in canContain() 274 public void setParent(ElementType parent) { theParent = parent; } in setParent()
|
D | Element.java | 26 private ElementType theType; // type of element 37 public Element(ElementType type, boolean defaultAttributes) { in Element() 50 public ElementType type() { return theType; } in type() 128 public ElementType parent() { return theType.parent(); } in parent()
|
/external/guava/guava/src/com/google/common/annotations/ |
D | Beta.java | 20 import java.lang.annotation.ElementType; 35 ElementType.ANNOTATION_TYPE, 36 ElementType.CONSTRUCTOR, 37 ElementType.FIELD, 38 ElementType.METHOD, 39 ElementType.TYPE})
|
D | GwtIncompatible.java | 20 import java.lang.annotation.ElementType; 39 @Target({ ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD })
|
D | GwtCompatible.java | 20 import java.lang.annotation.ElementType; 65 @Target({ ElementType.TYPE, ElementType.METHOD })
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | TCB.java | 31 import java.lang.annotation.ElementType; 40 ElementType.CONSTRUCTOR, 41 ElementType.METHOD, 42 ElementType.PACKAGE, 43 ElementType.TYPE
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
D | UsedByReflection.java | 7 import java.lang.annotation.ElementType; 20 ElementType.METHOD, ElementType.FIELD, ElementType.TYPE, 21 ElementType.CONSTRUCTOR })
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
D | 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/ |
D | KeepName.java | 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
|
D | Keep.java | 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
|
/external/chromium_org/extensions/common/permissions/ |
D | base_set_operators.h | 29 typedef typename BaseSetOperatorsTraits<T>::ElementType ElementType; typedef 31 typedef std::map<ElementIDType, linked_ptr<ElementType> > Map; 34 public std::iterator<std::input_iterator_tag, const ElementType*> { 57 const ElementType* operator*() const { 61 const ElementType* operator->() const { 161 ElementType* p = it1->Diff(*it2); in Difference() 190 ElementType* p = it1->Intersect(*it2); in Intersection() 262 void insert(ElementType* item) { in insert()
|
/external/chromium_org/mojo/public/cpp/bindings/lib/ |
D | array_internal.h | 171 typedef typename ArrayDataTraits<T>::StorageType ElementType; 174 ElementType* elements, 179 ElementType* elements, 185 const ElementType* elements, 198 typedef ArrayDataTraits<Handle>::StorageType ElementType; 201 ElementType* elements, 205 ElementType* elements, 210 const ElementType* elements, 237 typedef typename ArrayDataTraits<H>::StorageType ElementType; 240 ElementType* elements, [all …]
|
/external/junit/src/org/junit/ |
D | Ignore.java | 3 import java.lang.annotation.ElementType; 33 @Target({ElementType.METHOD, ElementType.TYPE})
|
D | After.java | 3 import java.lang.annotation.ElementType; 37 @Target(ElementType.METHOD)
|
D | ClassRule.java | 3 import java.lang.annotation.ElementType; 58 @Target({ElementType.FIELD})
|
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/ |
D | GuardedBy.java | 3 import java.lang.annotation.ElementType; 34 @Target( { ElementType.FIELD, ElementType.METHOD })
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
D | TypeQualifierDefault.java | 4 import java.lang.annotation.ElementType; 16 @Target(ElementType.ANNOTATION_TYPE) 19 ElementType[] value() default {}; in value()
|
D | TypeQualifierNickname.java | 4 import java.lang.annotation.ElementType; 30 @Target(ElementType.ANNOTATION_TYPE)
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/annotations/ |
D | ParseDetail.java | 19 import java.lang.annotation.ElementType; 26 @Target({ElementType.METHOD, ElementType.TYPE})
|
D | DoNotParseDetail.java | 20 import java.lang.annotation.ElementType; 30 @Target({ElementType.METHOD, ElementType.TYPE})
|
/external/chromium_org/content/renderer/java/ |
D | gin_java_bridge_value_converter.cc | 66 template <typename ElementType, typename ListType> 71 scoped_ptr<TypedArraySerializerImpl<ElementType, ListType> > result( in Create() 72 new TypedArraySerializerImpl<ElementType, ListType>(typed_array)); in Create() 79 DCHECK_EQ(data_length, typed_array_->Length() * sizeof(ElementType)); in serializeTo() 80 for (ElementType *element = reinterpret_cast<ElementType*>(data), in serializeTo()
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8HTMLPlugInElementCustom.cpp | 49 template <typename ElementType, typename PropertyType> 52 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); in getScriptableObjectProperty() 83 template <typename ElementType, typename PropertyType> 86 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); in setScriptableObjectProperty() 179 template <typename ElementType> 182 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); in invokeOnScriptableObject()
|
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
D | ParametersAreSlashedByDefault.java | 3 import java.lang.annotation.ElementType; 10 @TypeQualifierDefault(ElementType.PARAMETER)
|