HomeSort by relevance Sort by last modified time
    Searched full:attribute (Results 226 - 250 of 7894) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/xml/sax/
AttributeList.java 1 // SAX Attribute List Interface.
9 * Interface for an element's attribute specifications.
22 * <p>When an attribute list is supplied as part of a
26 * to the parser, the attribute list is invalid. To save a
27 * persistent copy of the attribute list, use the SAX1
31 * <p>An attribute list includes only attributes that have been
96 * Return the name of an attribute in this list (by position).
99 * same attribute twice. Attributes without values (those declared
103 * <p>If the attribute name has a namespace prefix, the prefix
106 * @param i The index of the attribute in the list (starting at 0)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
KeyDeclaration.java 27 * Holds the attribute declarations for the xsl:keys element.
58 * Set the "name" attribute.
59 * The name attribute specifies the name of the key. The value
60 * of the name attribute is a QName, which is expanded as
63 * @param name Value to set for the "name" attribute.
71 * Get the "name" attribute.
72 * The name attribute specifies the name of the key. The value
73 * of the name attribute is a QName, which is expanded as
76 * @return Value of the "name" attribute.
95 * The "match" attribute
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
Rect.idl 22 readonly attribute CSSPrimitiveValue top;
23 readonly attribute CSSPrimitiveValue right;
24 readonly attribute CSSPrimitiveValue bottom;
25 readonly attribute CSSPrimitiveValue left;
FontFace.idl 44 [RaisesException=Setter] attribute DOMString family;
45 [RaisesException=Setter] attribute DOMString style;
46 [RaisesException=Setter] attribute DOMString weight;
47 [RaisesException=Setter] attribute DOMString stretch;
48 [RaisesException=Setter] attribute DOMString unicodeRange;
49 [RaisesException=Setter] attribute DOMString variant;
50 [RaisesException=Setter] attribute DOMString featureSettings;
52 readonly attribute FontFaceLoadStatus status;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.idl 39 [PerWorldBindings] readonly attribute DOMString nodeName;
41 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, PerWorldBindings, CustomElementCallbacks] attribute DOMString nodeValue;
43 [PerWorldBindings] readonly attribute unsigned short nodeType;
44 [PerWorldBindings] readonly attribute Node parentNode;
45 [PerWorldBindings] readonly attribute NodeList childNodes;
46 [PerWorldBindings] readonly attribute Node firstChild;
47 [PerWorldBindings] readonly attribute Node lastChild;
48 [PerWorldBindings] readonly attribute Node previousSibling;
49 [PerWorldBindings] readonly attribute Node nextSibling;
50 [PerWorldBindings] readonly attribute Document ownerDocument
    [all...]
ElementData.h 34 #include "core/dom/Attribute.h"
66 const Attribute* attributeItem(unsigned index) const;
67 const Attribute* getAttributeItem(const QualifiedName&) const;
102 const Attribute* attributeBase() const;
103 const Attribute* getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const;
116 static PassRefPtr<ShareableElementData> createWithAttributes(const Vector<Attribute>&);
118 explicit ShareableElementData(const Vector<Attribute>&);
122 Attribute m_attributeArray[0];
138 Attribute* attributeItem(unsigned index);
139 Attribute* getAttributeItem(const QualifiedName&)
191 const Attribute& attribute = begin[i]; local
209 const Attribute& attribute = begin[i]; local
229 const Attribute& attribute = begin[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOListElement.idl 21 [Reflect] attribute boolean compact;
22 attribute long start;
23 [Reflect] attribute boolean reversed;
24 [Reflect] attribute DOMString type;
HTMLParamElement.idl 21 [Reflect] attribute DOMString name;
22 [Reflect] attribute DOMString type;
23 [Reflect] attribute DOMString value;
24 [Reflect] attribute DOMString valueType;
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/viewport/
viewport-137.html 2 <title>Viewport META with valueless content attribute.</title>
  /external/clang/test/Sema/
attr-minsize.c 5 int var1 __attribute__((__minsize__)); // expected-error{{'__minsize__' attribute only applies to functions and methods}}
attr-regparm.c 4 __attribute((regparm(1.0))) int x1(void); // expected-error{{'regparm' attribute requires an integer constant}}
7 __attribute((regparm(5,3))) int x4(void); // expected-error{{'regparm' attribute takes one argument}}
11 void __attribute__((regparm(2))) x5(int); // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}}
  /external/clang/test/SemaCXX/
attr-regparm.cpp 14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}}
15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}}
  /external/clang/test/SemaObjC/
property-3.m 12 @property (readonly) id d1; // expected-warning {{attribute 'readonly' of property 'd1' restricts attribute 'readwrite' of property inherited from 'I'}} expected-warning {{'copy' attribute on property 'd1' does not match the property inherited from 'I'}}
32 @property (nonatomic, assign) BOOL allowNonatomicProperty; // expected-warning {{'atomic' attribute on property 'allowNonatomicProperty' does not match the property inherited from 'EKProtocolCalendar'}}
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Ubo.glsllib 10 #define attribute in
  /external/markdown/MarkdownTest/Tests_2007/
Code Spans.text 1 `<test a="` content of attribute `">`
  /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/inspector/
JavaScriptCallFrame.idl 44 readonly attribute JavaScriptCallFrame caller;
45 readonly attribute long sourceID;
46 readonly attribute long line;
47 readonly attribute long column;
48 [Custom=Getter] readonly attribute object scopeChain;
50 [Custom=Getter] readonly attribute object thisObject;
51 readonly attribute DOMString stepInPositions;
52 readonly attribute DOMString functionName;
53 [Custom=Getter] readonly attribute DOMString type;
54 readonly attribute boolean isAtReturn
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 45 attribute EventHandler onreadystatechange;
54 [RaisesException=Setter] attribute unsigned long timeout;
55 readonly attribute unsigned short readyState;
57 [RaisesException=Setter] attribute boolean withCredentials;
67 readonly attribute XMLHttpRequestUpload upload;
72 [Custom=Getter, RaisesException=Getter] readonly attribute DOMString responseText; // The custom getter implements TreatReturnedNullStringAs=Null
73 [RaisesException=Getter] readonly attribute Document responseXML;
75 [RaisesException=Setter] attribute XMLHttpRequestResponseType responseType;
76 [Custom=Getter, RaisesException=Getter] readonly attribute object response;
78 readonly attribute unsigned short status
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBufferSourceNode.idl 29 [StrictTypeChecking, RaisesException=Setter] attribute AudioBuffer buffer;
36 readonly attribute unsigned short playbackState;
38 readonly attribute AudioParam gain;
39 readonly attribute AudioParam playbackRate;
41 attribute boolean loop; // This is the proper attribute name from the specification.
43 attribute double loopStart;
44 attribute double loopEnd;
49 [DeprecateAs=WebAudioLooping, ImplementedAs=loop] attribute boolean looping; // This is an alias for the .loop attribute for backwards compatibility
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.idl 41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec, but leaving .URL for compatibility reasons.
42 readonly attribute DOMString url;
49 readonly attribute unsigned short readyState;
51 readonly attribute unsigned long bufferedAmount;
54 attribute EventHandler onopen;
55 attribute EventHandler onmessage;
56 attribute EventHandler onerror;
57 attribute EventHandler onclose;
59 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol;
60 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extensions
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
AttributeSet.h 19 class Attribute;
22 * \brief AttributeSet is a set of Attribute.
30 typedef std::vector<Attribute*> AttrSet;
37 AttributeSet(unsigned int pNum, const Attribute& pPredefined);
47 // exists- return the recorded attribute whose content is identical to the
48 // input attribute.
49 Attribute *exists(const Attribute& pAttr) const;
51 // record - record the attribute no mater if it has been recorded.
52 void record(Attribute& pAttr)
    [all...]
  /dalvik/dx/tests/024-code-bytecode/
info.txt 6 method with a Code attribute, and the code[] array of the attribute has
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
selection-touch-override.html 1 <br><textarea cols="45" rows="5">Text Area without override attribute select all this text and tap on the selection, context menu should be shown!</textarea>
2 <br><textarea cols="45" rows="5" data-blackberry-end-selection-on-touch="on">Text Area with override attribute select all this text and tap on the selection, caret should be placed!</textarea>
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/testing/
SupportTestPartialInterface.idl 35 static readonly attribute long supplementalStaticReadOnlyAttr;
36 static attribute DOMString supplementalStaticAttr;
37 readonly attribute DOMString supplementalStr1;
38 attribute DOMString supplementalStr2;
39 [Custom] attribute DOMString supplementalStr3;
40 attribute Node supplementalNode;
50 [RuntimeEnabled=FeatureName13] attribute Node Node13;
51 [PerContextEnabled=FeatureName14] attribute Node Node14;

Completed in 983 milliseconds

1 2 3 4 5 6 7 8 91011>>