Searched refs:attributes (Results 1 - 25 of 694) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSimpleAttributeTableGenerator.java13 private final AttributeTable attributes; field in class:SimpleAttributeTableGenerator
16 AttributeTable attributes)
18 this.attributes = attributes;
23 return attributes;
15 SimpleAttributeTableGenerator( AttributeTable attributes) argument
/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java27 * 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,
109 targetMember.attributes,
177 replaceAttribute(int attributesCount, Attribute[] attributes, Attribute attribute) argument
200 addAttribute(int attributesCount, Attribute[] attributes, Attribute attribute) argument
226 deleteAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
255 findAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macgl.c37 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[
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3DirectoryEntry.java29 * attempt to parse the longname field for file attributes; they SHOULD
38 * The attributes of this entry.
40 public SFTPv3FileAttributes attributes; field in class:SFTPv3DirectoryEntry
/external/webkit/LayoutTests/fast/dom/Attr/script-tests/
H A Daccess-after-element-destruction.js15 var attributes = element.attributes; variable
20 shouldBe("attributes.length", "1");
21 shouldBe("attributes[0]", "attributes.item(0)");
22 shouldBe("attributes.getNamedItem('a')", "attributes.item(0)");
24 shouldBe("attributes.item(0).name", "'a'");
25 shouldBe("attributes.item(0).specified", "true");
26 shouldBe("attributes
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DRegistration.java31 * existing account information. XMPP servers may require a number of attributes to be set
32 * when creating a new account. The standard account attributes are as follows:
54 private Map<String, String> attributes = new HashMap<String,String>(); field in class:Registration
80 * Returns the map of String key/value pairs of account attributes.
82 * @return the account attributes.
85 return attributes;
89 * Sets the account attributes. The map must only contain String key/value pairs.
91 * @param attributes the account attributes.
93 public void setAttributes(Map<String, String> attributes) { argument
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DSymbolTable.h56 SymbolTableEntry(int index, unsigned attributes) argument
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) argument
84 pack(getIndex(), attributes & ReadOnly, attributes
[all...]
H A DTracing.d36 #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
/external/webkit/Source/WebCore/svg/
H A DSVGRadialGradientElement.cpp150 void SVGRadialGradientElement::collectGradientAttributes(RadialGradientAttributes& attributes) argument
158 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr))
159 attributes.setSpreadMethod((GradientSpreadMethod) current->spreadMethod());
161 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr))
162 attributes.setBoundingBoxMode(current->gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX);
164 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) {
167 attributes.setGradientTransform(transform);
170 if (!attributes.hasStops()) {
173 attributes.setStops(stops);
179 if (!attributes
221 calculateFocalCenterPointsAndRadius(const RadialGradientAttributes& attributes, FloatPoint& focalPoint, FloatPoint& centerPoint, float& radius) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DPlatformStatus.java29 NamedNodeMap attributes = anElement.getAttributes();
30 this.id = (String) attributes.getNamedItem("id").getNodeValue();
31 this.name = (String) attributes.getNamedItem("name").getNodeValue();
32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue();
/external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js16 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[
[all...]
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_namednodemapchildnoderange.js78 Create a NamedNodeMap object from the attributes of the
95 var attributes;
107 attributes = testEmployee.attributes;
109 length = attributes.length;
123 child = attributes.item(2);
127 child = attributes.item(0);
129 child = attributes.item(1);
131 child = attributes.item(3);
H A Dhc_namednodemapremovenameditem.js82 object of the attributes of the last child. Once the
99 var attributes;
111 attributes = testAddress.attributes;
113 removedNode = attributes.removeNamedItem("class");
114 streetAttr = attributes.getNamedItem("class");
H A Dhc_namednodemapsetnameditem.js79 object from the attributes of the last child by
103 var attributes;
116 attributes = testAddress.attributes;
118 setNode = attributes.setNamedItem(newAttribute);
119 districtNode = attributes.getNamedItem("lang");
H A Dhc_namednodemapsetnameditemthatexists.js83 object from the attributes of the last child by
106 var attributes;
119 attributes = testAddress.attributes;
121 setNode = attributes.setNamedItem(newAttribute);
122 districtNode = attributes.getNamedItem("class");
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_namednodemapchildnoderange.js78 Create a NamedNodeMap object from the attributes of the
95 var attributes;
107 attributes = testEmployee.attributes;
109 length = attributes.length;
123 child = attributes.item(2);
127 child = attributes.item(0);
129 child = attributes.item(1);
131 child = attributes.item(3);
H A Dhc_namednodemapremovenameditem.js82 object of the attributes of the last child. Once the
99 var attributes;
111 attributes = testAddress.attributes;
113 removedNode = attributes.removeNamedItem("class");
114 streetAttr = attributes.getNamedItem("class");
H A Dhc_namednodemapsetnameditem.js79 object from the attributes of the last child by
103 var attributes;
116 attributes = testAddress.attributes;
118 setNode = attributes.setNamedItem(newAttribute);
119 districtNode = attributes.getNamedItem("lang");
H A Dhc_namednodemapsetnameditemthatexists.js83 object from the attributes of the last child by
106 var attributes;
119 attributes = testAddress.attributes;
121 setNode = attributes.setNamedItem(newAttribute);
122 districtNode = attributes.getNamedItem("class");
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java70 public void startElement(String uri, String localName, String qName, Attributes attributes) { argument
73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes
82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source"));
83 String visibility = attributes.getValue("visibility");
88 boolean isStatic = Boolean.valueOf(attributes.getValue("static"));
90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract"));
96 boolean isFinal = Boolean.valueOf(attributes.getValue("final"));
98 String name = attributes.getValue("name");
109 mCurrentClass.setDeprecated("deprecated".equals(attributes
[all...]
/external/jdiff/src/jdiff/
H A DAPIHandler.java73 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));
95 String className = attributes.getValue("name");
96 String parentName = attributes
72 startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes) argument
274 addStartTagToText(String localName, Attributes attributes) argument
312 getModifiers(Attributes attributes) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DTestAttributeSetTest.java21 private HashMap<String, String> attributes; field in class:TestAttributeSetTest
26 attributes = new HashMap<String, String>();
35 attributes.put("android:id", "@android:id/text1");
36 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
42 attributes.put("id", "@id/text1");
43 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
49 attributes.put("id", "@null");
50 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
56 attributes.put("android:id", "@+id/text1");
58 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtracto
[all...]
/external/v8/src/
H A Dproperty-details.h42 // ABSENT can never be stored in or returned from a descriptor's attributes
43 // bitfield. It is only used as a return value meaning the attributes of
76 // PropertyDetails captures type and attributes for a property.
80 PropertyDetails(PropertyAttributes attributes, argument
84 ASSERT(AttributesField::is_valid(attributes));
88 | AttributesField::encode(attributes)
92 ASSERT(attributes == this->attributes());
102 PropertyAttributes attributes() { return AttributesField::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
112 bool IsReadOnly() { return (attributes()
[all...]
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLContextAttributes.h40 // Create a new attributes object
43 // Create a new attributes object initialized with preexisting attributes
44 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
73 // Fetches a copy of the attributes stored in this object in a
75 GraphicsContext3D::Attributes attributes() const;
79 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
/external/webkit/Source/WebCore/html/parser/
H A DTextDocumentParser.cpp64 RefPtr<NamedNodeMap> attributes = NamedNodeMap::create(); local
65 attributes->insertAttribute(styleAttribute.release(), false);
66 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes.release());

Completed in 585 milliseconds

1234567891011>>