HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 476 - 500 of 2398) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLHtmlElement.cpp 46 bool HTMLHtmlElement::isURLAttribute(const Attribute& attribute) const
48 return attribute.name() == manifestAttr || HTMLElement::isURLAttribute(attribute);
HTMLParamElement.cpp 27 #include "core/dom/Attribute.h"
58 bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const
60 if (attribute.name() == valueAttr && isURLParameter(name()))
62 return HTMLElement::isURLAttribute(attribute);
  /external/emma/core/java12/com/vladium/jcd/cls/
IAttributeCollection.java 11 import com.vladium.jcd.cls.attribute.*;
30 * Returns the attribute descriptor at a given offset.
32 * @param offset attribute offset [must be in [0, size()) range; input not checked]
66 * that all data referenced in 'attribute' will eventually appear in the
69 * @param attribute new attribute descriptor [may not be null]
71 int add (Attribute_info attribute);
76 * all data referenced in 'attribute' will eventually appear in the constant
79 * @param offset attribute offset [must be in [0, size()) range; input not checked]
80 * @param attribute new attribute descriptor [may not be null
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/
SameZeroFrame.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.CodeAttribute;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
StackMapAttribute.java 21 package proguard.classfile.attribute.preverification;
24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor;
26 import proguard.classfile.attribute.visitor.AttributeVisitor;
29 * This Attribute represents an exceptions attribute.
33 public class StackMapAttribute extends Attribute
69 // Implementations for Attribute.
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditorResetter.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
30 * code attribute.
43 * @param codeAttributeEditor the code attribute editor that will be reset.
53 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
InterfaceAdder.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.annotation.*;
26 import proguard.classfile.attribute.preverification.*;
StackSizeUpdater.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.*;
43 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
49 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /frameworks/base/core/java/android/util/
XmlPullAttributes.java 57 public int getAttributeListValue(String namespace, String attribute,
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute,
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute,
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute,
78 getAttributeValue(namespace, attribute), defaultValue);
81 public int getAttributeUnsignedIntValue(String namespace, String attribute,
84 getAttributeValue(namespace, attribute), defaultValue)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 104 Attr attribute; local
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
114 attrName = attribute.getNodeName();
121 Attr attribute; local
133 attribute = (Attr) attributes.getNamedItemNS(
135 attrName = attribute.getNodeName();
142 Attr attribute; local
152 attribute = (Attr) attributes.getNamedItemNS(
154 attrName = attribute.getNodeName();
161 Attr attribute; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsReport.java 93 xml.attribute(null, "report-version", Integer.toString(REPORT_VERSION));
94 xml.attribute(null, "creation-time", DATE_FORMAT.format(new Date()));
97 xml.attribute(null, "version-name", Version.getVersionName(mContext));
98 xml.attribute(null, "version-code", Integer.toString(Version.getVersionCode(mContext)));
103 xml.attribute(null, "board", Build.BOARD);
104 xml.attribute(null, "brand", Build.BRAND);
105 xml.attribute(null, "device", Build.DEVICE);
106 xml.attribute(null, "display", Build.DISPLAY);
107 xml.attribute(null, "fingerprint", Build.FINGERPRINT);
108 xml.attribute(null, "id", Build.ID)
    [all...]
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrlLib.h 85 * Please see "Attribute Targets" in NVCtrl.h for the list of valid
102 * Sets the attribute to the given value. The attributes and their
113 * BadValue - The screen or attribute doesn't exist.
121 unsigned int attribute,
129 * Sets the attribute to the given value. The attributes and their
136 * BadValue - The target or attribute doesn't exist.
145 unsigned int attribute,
163 unsigned int attribute,
182 unsigned int attribute,
190 * Returns True if the attribute exists. Returns False otherwise
692 unsigned int attribute; member in struct:__anon17100
716 unsigned int attribute; member in struct:__anon17102
740 unsigned int attribute; member in struct:__anon17104
765 unsigned int attribute; member in struct:__anon17106
789 unsigned int attribute; member in struct:__anon17108
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 194 * Process the attribute list for an RDF node element. A property attribute URI is
212 Node attribute = xmlNode.getAttributes().item(i); local
216 if ("xmlns".equals(attribute.getPrefix()) ||
217 (attribute.getPrefix() == null && "xmlns".equals(attribute.getNodeName())))
222 int attrTerm = getRDFTermKind(attribute);
239 // This is the rdf:about attribute on a top level node. Set
245 if (!xmpParent.getName().equals(attribute.getNodeValue()))
253 xmpParent.setName(attribute.getNodeValue())
375 Node attribute = attributes.item(i); local
409 Node attribute = attributes.item(i); local
500 Node attribute = xmlNode.getAttributes().item(i); local
624 Node attribute = xmlNode.getAttributes().item(i); local
705 Node attribute = xmlNode.getAttributes().item(i); local
833 Node attribute = xmlNode.getAttributes().item(i); local
930 Node attribute = xmlNode.getAttributes().item(i); local
    [all...]
  /cts/suite/cts/deviceTests/opengl/assets/vertex/
water 17 attribute vec4 a_Position;
18 attribute vec2 a_TexCoordinate;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSKeyframesRule.idl 31 attribute DOMString name;
32 readonly attribute CSSRuleList cssRules;
CSSSupportsRule.idl 32 readonly attribute CSSRuleList cssRules;
33 readonly attribute DOMString conditionText;
StyleSheetList.idl 26 readonly attribute unsigned long length;
  /external/chromium_org/third_party/WebKit/Source/core/events/
HashChangeEvent.idl 29 [InitializedByEventConstructor] readonly attribute DOMString oldURL;
30 [InitializedByEventConstructor] readonly attribute DOMString newURL;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerContainer.idl 36 [Unforgeable] readonly attribute ServiceWorker? controller;
37 [CallWith=ScriptState] readonly attribute Promise ready;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.idl 33 attribute float value;
34 readonly attribute float defaultValue;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS01.java 34 * The method createAttributeNS creates an attribute of the given qualified name and namespace URI
67 Attr attribute; local
75 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
76 nodeName = attribute.getNodeName();
77 nodeValue = attribute.getNodeValue();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_errno.py 29 for attribute in errno.__dict__.iterkeys():
30 if attribute.isupper():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_errno.py 29 for attribute in errno.__dict__.iterkeys():
30 if attribute.isupper():
31 self.assertIn(getattr(errno, attribute), errno.errorcode,
32 'no %s attr in errno.errorcode' % attribute)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MessagePort.idl 38 attribute EventHandler onmessage;

Completed in 1554 milliseconds

<<11121314151617181920>>