Home
last modified time | relevance | path

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

123456

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementTraversal.h34 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/
DSchema.java44 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()
DElementType.java23 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()
DElement.java26 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/
DBeta.java20 import java.lang.annotation.ElementType;
35 ElementType.ANNOTATION_TYPE,
36 ElementType.CONSTRUCTOR,
37 ElementType.FIELD,
38 ElementType.METHOD,
39 ElementType.TYPE})
DGwtIncompatible.java20 import java.lang.annotation.ElementType;
39 @Target({ ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD })
DGwtCompatible.java20 import java.lang.annotation.ElementType;
65 @Target({ ElementType.TYPE, ElementType.METHOD })
/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/chromium_org/base/android/java/src/org/chromium/base/
DUsedByReflection.java7 import java.lang.annotation.ElementType;
20 ElementType.METHOD, ElementType.FIELD, ElementType.TYPE,
21 ElementType.CONSTRUCTOR })
/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/proguard/examples/annotations/src/proguard/annotation/
DKeepName.java15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
DKeep.java15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
/external/chromium_org/extensions/common/permissions/
Dbase_set_operators.h29 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/
Darray_internal.h171 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/
DIgnore.java3 import java.lang.annotation.ElementType;
33 @Target({ElementType.METHOD, ElementType.TYPE})
DAfter.java3 import java.lang.annotation.ElementType;
37 @Target(ElementType.METHOD)
DClassRule.java3 import java.lang.annotation.ElementType;
58 @Target({ElementType.FIELD})
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/
DGuardedBy.java3 import java.lang.annotation.ElementType;
34 @Target( { ElementType.FIELD, ElementType.METHOD })
/external/jsr305/ri/src/main/java/javax/annotation/meta/
DTypeQualifierDefault.java4 import java.lang.annotation.ElementType;
16 @Target(ElementType.ANNOTATION_TYPE)
19 ElementType[] value() default {}; in value()
DTypeQualifierNickname.java4 import java.lang.annotation.ElementType;
30 @Target(ElementType.ANNOTATION_TYPE)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/annotations/
DParseDetail.java19 import java.lang.annotation.ElementType;
26 @Target({ElementType.METHOD, ElementType.TYPE})
DDoNotParseDetail.java20 import java.lang.annotation.ElementType;
30 @Target({ElementType.METHOD, ElementType.TYPE})
/external/chromium_org/content/renderer/java/
Dgin_java_bridge_value_converter.cc66 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/
DV8HTMLPlugInElementCustom.cpp49 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/
DParametersAreSlashedByDefault.java3 import java.lang.annotation.ElementType;
10 @TypeQualifierDefault(ElementType.PARAMETER)

123456