HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 1 - 25 of 679) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 27 * This class can add and delete attributes to and from classes, fields,
28 * methods, and code attributes. Attributes to be added must be filled out
30 * attributes of the same type are always replaced.
43 * Creates a new AttributeAdder that will edit attributes in the given
54 * Creates a new AttributeAdder that will edit attributes in the given
66 * Creates a new AttributeAdder that will edit attributes in the given
92 targetAttribute.attributes,
96 targetAttribute.attributes =
98 targetAttribute.attributes,
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macgl.c 37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ local
48 attributes[i++] = AGL_RGBA;
52 attributes[i++] = AGL_RED_SIZE;
53 attributes[i++] = this->gl_config.red_size;
54 attributes[i++] = AGL_GREEN_SIZE;
55 attributes[i++] = this->gl_config.green_size;
56 attributes[i++] = AGL_BLUE_SIZE;
57 attributes[i++] = this->gl_config.blue_size;
58 attributes[i++] = AGL_ALPHA_SIZE;
59 attributes[i++] = this->gl_config.alpha_size
    [all...]
  /frameworks/base/sax/java/android/sax/
StartElementListener.java 19 import org.xml.sax.Attributes;
29 * @param attributes from the element
31 void start(Attributes attributes);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
DeclareStyleableInfo.java 29 /** Attributes for this view or view group. Can be empty but never null. */
40 * @param attributes The initial list of attributes. Can be null.
42 public DeclareStyleableInfo(String styleName, AttributeInfo[] attributes) {
44 mAttributes = attributes == null ? new AttributeInfo[0] : attributes;
52 /** Returns the attributes for this view or view group. Maybe empty but not null. */
57 /** Sets the list of attributes for this View or ViewGroup. */
58 public void setAttributes(AttributeInfo[] attributes) {
59 mAttributes = attributes;
    [all...]
  /external/webkit/WebCore/svg/
SVGRadialGradientElement.cpp 116 RadialGradientAttributes attributes = collectGradientProperties(); local
123 if (attributes.boundingBoxMode()) {
124 focalPoint = FloatPoint(attributes.fx().valueAsPercentage(), attributes.fy().valueAsPercentage());
125 centerPoint = FloatPoint(attributes.cx().valueAsPercentage(), attributes.cy().valueAsPercentage());
126 radius = attributes.r().valueAsPercentage();
128 focalPoint = FloatPoint(attributes.fx().value(this), attributes.fy().value(this));
129 centerPoint = FloatPoint(attributes.cx().value(this), attributes.cy().value(this))
180 RadialGradientAttributes attributes; local
    [all...]
SVGLinearGradientElement.cpp 105 LinearGradientAttributes attributes = collectGradientProperties(); local
111 if (attributes.boundingBoxMode()) {
112 startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage());
113 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage());
115 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this));
116 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this))
148 LinearGradientAttributes attributes; local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 32 unsigned attributes; member in struct:JSC::PropertyMapEntry
36 PropertyMapEntry(UString::Rep* key, unsigned attributes, JSCell* specificValue)
39 , attributes(attributes)
45 PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, JSCell* specificValue, unsigned index)
48 , attributes(attributes)
SymbolTable.h 56 SymbolTableEntry(int index, unsigned attributes)
59 pack(index, attributes & ReadOnly, attributes & DontEnum);
74 unsigned attributes = 0; local
76 attributes |= ReadOnly;
78 attributes |= DontEnum;
79 return attributes;
82 void setAttributes(unsigned attributes)
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum)
    [all...]
Tracing.d 36 #pragma D attributes Unstable/Unstable/Common provider JavaScriptCore provider
37 #pragma D attributes Private/Private/Unknown provider JavaScriptCore module
38 #pragma D attributes Private/Private/Unknown provider JavaScriptCore function
39 #pragma D attributes Unstable/Unstable/Common provider JavaScriptCore name
40 #pragma D attributes Unstable/Unstable/Common provider JavaScriptCore args
  /libcore/luni/src/test/java/tests/xml/
SaxTest.java 21 import org.xml.sax.Attributes;
41 String qName, Attributes attributes) {
45 assertEquals(1, attributes.getLength());
46 assertEquals("", attributes.getURI(0));
47 assertOneOf("bar", "", attributes.getLocalName(0));
48 assertEquals("bar", attributes.getQName(0));
54 String qName, Attributes attributes) {
58 assertEquals(1, attributes.getLength())
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxgl.c 38 struct TagItem attributes [ 14 ]; /* 14 should be more than enough :) */ local
42 attributes[i].ti_Tag = AMA_Window; attributes[i++].ti_Data = (unsigned long)win;
43 attributes[i].ti_Tag = AMA_Left; attributes[i++].ti_Data = 0;
44 attributes[i].ti_Tag = AMA_Bottom; attributes[i++].ti_Data = 0;
45 attributes[i].ti_Tag = AMA_Width; attributes[i++].ti_Data = win->Width-win->BorderLeft-win->BorderRight;
46 attributes[i].ti_Tag = AMA_Height; attributes[i++].ti_Data = win->Height-win->BorderBottom-win->BorderTop
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
ApiCheck.java 145 Attributes attributes) {
147 mCurrentPackage = new PackageInfo(attributes.getValue("name"),
148 SourcePositionInfo.fromXml(attributes.getValue("source")));
154 mCurrentClass = new ClassInfo(attributes.getValue("name"),
156 attributes.getValue("extends") ,
159 attributes.getValue("abstract")),
161 attributes.getValue("static")),
163 attributes.getValue("final")),
164 attributes.getValue("deprecated")
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiDescrHandler.java 69 Attributes attributes) {
74 attributes.getValue("name"));
78 attributes.getValue("name"),
79 attributes.getValue("extends"),
80 attributes.getValue("static"));
83 mCurrentClass.addInterface(attributes.getValue("name"));
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"),
87 attributes.getValue("return"));
121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name")
    [all...]
  /external/jdiff/src/jdiff/
APIHandler.java 7 import org.xml.sax.Attributes;
73 java.lang.String qName, Attributes attributes) {
78 String apiName = attributes.getValue("name");
79 String version = attributes.getValue("jdversion"); // Not used yet
83 String pkgName = attributes.getValue("name");
87 String className = attributes.getValue("name");
88 String parentName = attributes.getValue("extends");
90 if (attributes.getValue("abstract").compareTo("true") == 0)
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes));
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapchildnoderange.java 33 * Create a NamedNodeMap object from the attributes of the
68 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 length = (int) attributes.getLength();
77 child = attributes.item(0);
78 child = attributes.item(1);
hc_namednodemapchildnoderange.java 31 * Create a NamedNodeMap object from the attributes of the
66 NamedNodeMap attributes; local
73 attributes = testEmployee.getAttributes();
74 length = (int) attributes.getLength();
80 child = attributes.item(2);
84 child = attributes.item(0);
86 child = attributes.item(1);
88 child = attributes.item(3);
hc_namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
70 NamedNodeMap attributes; local
77 attributes = testAddress.getAttributes();
78 removedNode = attributes.removeNamedItem("class");
79 streetAttr = (Attr) attributes.getNamedItem("class");
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
43 /** {@code non-null;} the associated list of attributes */
44 private final AttributeList attributes; field in class:AttCode
53 * @param attributes {@code non-null;} the associated list of attributes
56 ByteCatchList catches, AttributeList attributes) {
81 if (attributes.isMutable()) {
82 throw new MutabilityException("attributes.isMutable()");
86 throw new NullPointerException("attributes == null")
    [all...]
  /external/webkit/WebCore/html/canvas/
WebGLContextAttributes.h 40 // Create a new attributes object
43 // Create a new attributes object initialized with preexisting attributes
44 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
68 // Fetches a copy of the attributes stored in this object in a
70 GraphicsContext3D::Attributes attributes() const;
74 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapRemoveNamedItemNS.java 89 NamedNodeMap attributes; local
97 attributes = element.getAttributes();
98 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov",
100 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
108 // NamedNodeMap attributes;
119 // attributes = element.getAttributes();
120 // attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
121 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
135 NamedNodeMap attributes; local
150 attributes = element.getAttributes()
166 NamedNodeMap attributes; local
239 NamedNodeMap attributes; local
267 NamedNodeMap attributes; local
295 NamedNodeMap attributes; local
324 NamedNodeMap attributes; local
    [all...]
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 16 for(var i=0; i < node.attributes.length; i++) {
17 if (node.attributes[i].nodeName == 'displaystyle') {
18 newnode.setAttribute(node.attributes[i].nodeName,node.attributes[i].nodeValue);
62 for(var j=0; j < node.attributes.length; j++) {
63 if (node.attributes[j].nodeValue!="italic" &&
64 node.attributes[j].nodeValue!="" &&
65 node.attributes[j].nodeValue!="inherit" &&
66 node.attributes[j].nodeValue!=undefined) {
67 str += " "+node.attributes[j].nodeName+"="
    [all...]
  /external/bluetooth/glib/gio/
makegioalias.pl 103 my $attributes = "";
110 # Drop any Win32 specific .def file syntax, but keep attributes
112 $attributes = "$attributes $word" unless $word eq "PRIVATE";
117 extern __typeof ($str) $alias __attribute((visibility("hidden")))$attributes;
  /external/bluetooth/glib/gobject/
makegobjectalias.pl 103 my $attributes = "";
110 # Drop any Win32 specific .def file syntax, but keep attributes
112 $attributes = "$attributes $word" unless $word eq "PRIVATE";
117 extern __typeof ($str) $alias __attribute((visibility("hidden")))$attributes;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
CertificationRequestInfo.java 21 * attributes [0] Attributes{{ CRIAttributes }}
24 * Attributes { ATTRIBUTE:IOSet } ::= SET OF Attribute{{ IOSet }}
38 ASN1Set attributes = null; field in class:CertificationRequestInfo
58 ASN1Set attributes)
62 this.attributes = attributes;
85 attributes = ASN1Set.getInstance(tagobj, false);
111 return attributes;
122 if (attributes != null
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMember.java 37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
108 return attributes;
    [all...]

Completed in 1038 milliseconds

1 2 3 4 5 6 7 8 91011>>