Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 991) sorted by relevance

12345678910>>...40

/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
DSDL_macgl.c37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ in Mac_GL_Init() local
48 attributes[i++] = AGL_RGBA; in Mac_GL_Init()
52 attributes[i++] = AGL_RED_SIZE; in Mac_GL_Init()
53 attributes[i++] = this->gl_config.red_size; in Mac_GL_Init()
54 attributes[i++] = AGL_GREEN_SIZE; in Mac_GL_Init()
55 attributes[i++] = this->gl_config.green_size; in Mac_GL_Init()
56 attributes[i++] = AGL_BLUE_SIZE; in Mac_GL_Init()
57 attributes[i++] = this->gl_config.blue_size; in Mac_GL_Init()
58 attributes[i++] = AGL_ALPHA_SIZE; in Mac_GL_Init()
59 attributes[i++] = this->gl_config.alpha_size; in Mac_GL_Init()
[all …]
/external/proguard/src/proguard/classfile/editor/
DAttributesEditor.java92 targetAttribute.attributes, in addAttribute()
96 targetAttribute.attributes = in addAttribute()
98 targetAttribute.attributes, in addAttribute()
109 targetMember.attributes, in addAttribute()
113 targetMember.attributes = in addAttribute()
115 targetMember.attributes, in addAttribute()
126 targetClass.attributes, in addAttribute()
130 targetClass.attributes = in addAttribute()
132 targetClass.attributes, in addAttribute()
151 targetAttribute.attributes, in deleteAttribute()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
DSDL_cgxgl.c38 struct TagItem attributes [ 14 ]; /* 14 should be more than enough :) */ in CGX_GL_Init() local
42 attributes[i].ti_Tag = AMA_Window; attributes[i++].ti_Data = (unsigned long)win; in CGX_GL_Init()
43 attributes[i].ti_Tag = AMA_Left; attributes[i++].ti_Data = 0; in CGX_GL_Init()
44 attributes[i].ti_Tag = AMA_Bottom; attributes[i++].ti_Data = 0; in CGX_GL_Init()
45attributes[i].ti_Tag = AMA_Width; attributes[i++].ti_Data = win->Width-win->BorderLeft-win->Border… in CGX_GL_Init()
46attributes[i].ti_Tag = AMA_Height; attributes[i++].ti_Data = win->Height-win->BorderBottom-win->Bo… in CGX_GL_Init()
47 attributes[i].ti_Tag = AMA_DirectRender; attributes[i++].ti_Data = GL_TRUE; in CGX_GL_Init()
50 attributes[i].ti_Tag = AMA_DoubleBuf; in CGX_GL_Init()
52 attributes[i++].ti_Data = GL_TRUE; in CGX_GL_Init()
55 attributes[i++].ti_Data = GL_FALSE; in CGX_GL_Init()
[all …]
/external/webkit/Source/WebCore/svg/
DSVGRadialGradientElement.cpp150 void SVGRadialGradientElement::collectGradientAttributes(RadialGradientAttributes& attributes) in collectGradientAttributes() argument
158 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr)) in collectGradientAttributes()
159 attributes.setSpreadMethod((GradientSpreadMethod) current->spreadMethod()); in collectGradientAttributes()
161 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr)) in collectGradientAttributes()
162attributes.setBoundingBoxMode(current->gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDI… in collectGradientAttributes()
164 …if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) { in collectGradientAttributes()
167 attributes.setGradientTransform(transform); in collectGradientAttributes()
170 if (!attributes.hasStops()) { in collectGradientAttributes()
173 attributes.setStops(stops); in collectGradientAttributes()
179 if (!attributes.hasCx() && current->hasAttribute(SVGNames::cxAttr)) in collectGradientAttributes()
[all …]
DSVGLinearGradientElement.cpp139 void SVGLinearGradientElement::collectGradientAttributes(LinearGradientAttributes& attributes) in collectGradientAttributes() argument
147 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr)) in collectGradientAttributes()
148 attributes.setSpreadMethod((GradientSpreadMethod) current->spreadMethod()); in collectGradientAttributes()
150 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr)) in collectGradientAttributes()
151attributes.setBoundingBoxMode(current->gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDI… in collectGradientAttributes()
153 …if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) { in collectGradientAttributes()
156 attributes.setGradientTransform(transform); in collectGradientAttributes()
159 if (!attributes.hasStops()) { in collectGradientAttributes()
162 attributes.setStops(stops); in collectGradientAttributes()
168 if (!attributes.hasX1() && current->hasAttribute(SVGNames::x1Attr)) in collectGradientAttributes()
[all …]
DSVGPatternElement.cpp236 void SVGPatternElement::collectPatternAttributes(PatternAttributes& attributes) const in collectPatternAttributes()
242 if (!attributes.hasX() && current->hasAttribute(SVGNames::xAttr)) in collectPatternAttributes()
243 attributes.setX(current->x()); in collectPatternAttributes()
245 if (!attributes.hasY() && current->hasAttribute(SVGNames::yAttr)) in collectPatternAttributes()
246 attributes.setY(current->y()); in collectPatternAttributes()
248 if (!attributes.hasWidth() && current->hasAttribute(SVGNames::widthAttr)) in collectPatternAttributes()
249 attributes.setWidth(current->width()); in collectPatternAttributes()
251 if (!attributes.hasHeight() && current->hasAttribute(SVGNames::heightAttr)) in collectPatternAttributes()
252 attributes.setHeight(current->height()); in collectPatternAttributes()
254 if (!attributes.hasViewBox() && current->hasAttribute(SVGNames::viewBoxAttr)) in collectPatternAttributes()
[all …]
/external/doclava/src/com/google/doclava/apicheck/
DXmlApiFile.java70 public void startElement(String uri, String localName, String qName, Attributes attributes) { in startElement() argument
73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes in startElement()
82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source")); in startElement()
83 String visibility = attributes.getValue("visibility"); in startElement()
88 boolean isStatic = Boolean.valueOf(attributes.getValue("static")); in startElement()
90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract")); in startElement()
96 boolean isFinal = Boolean.valueOf(attributes.getValue("final")); in startElement()
98 String name = attributes.getValue("name"); in startElement()
109 mCurrentClass.setDeprecated("deprecated".equals(attributes.getValue("deprecated"))); in startElement()
111 String superclass = attributes.getValue("extends"); in startElement()
[all …]
/external/jdiff/src/jdiff/
DAPIHandler.java73 java.lang.String qName, Attributes attributes) { in startElement() argument
78 String apiName = attributes.getValue("name"); in startElement()
79 String version = attributes.getValue("jdversion"); // Not used yet in startElement()
83 String pkgName = attributes.getValue("name"); in startElement()
87 String className = attributes.getValue("name"); in startElement()
88 String parentName = attributes.getValue("extends"); in startElement()
90 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes)); in startElement()
95 String className = attributes.getValue("name"); in startElement()
96 String parentName = attributes.getValue("extends"); in startElement()
[all …]
/external/webkit/Source/WebKit/qt/Api/
Dqwebsettings.cpp74 QHash<int, bool> attributes; member in QWebSettingsPrivate
164 bool value = attributes.value(QWebSettings::AutoLoadImages, in apply()
165 global->attributes.value(QWebSettings::AutoLoadImages)); in apply()
168 value = attributes.value(QWebSettings::JavascriptEnabled, in apply()
169 global->attributes.value(QWebSettings::JavascriptEnabled)); in apply()
172 value = attributes.value(QWebSettings::AcceleratedCompositingEnabled, in apply()
173 … global->attributes.value(QWebSettings::AcceleratedCompositingEnabled)); in apply()
178 value = attributes.value(QWebSettings::WebGLEnabled, in apply()
179 global->attributes.value(QWebSettings::WebGLEnabled)); in apply()
184 value = attributes.value(QWebSettings::HyperlinkAuditingEnabled, in apply()
[all …]
/external/webkit/LayoutTests/fast/dom/Attr/
Daccess-after-element-destruction-expected.txt6 PASS attributes.length is 1
7 PASS attributes[0] is attributes.item(0)
8 PASS attributes.getNamedItem('a') is attributes.item(0)
9 PASS attributes.item(0).name is 'a'
10 PASS attributes.item(0).specified is true
11 PASS attributes.item(0).value is 'b'
12 PASS attributes.item(0).ownerElement.tagName is 'P'
13 PASS attributes.item(0).value is 'c'
14 PASS attributes.length is 0
/external/openssl/crypto/store/
Dstr_lib.c254 X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[], in STORE_get_certificate() argument
264 attributes, parameters); in STORE_get_certificate()
280 int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[], in STORE_store_certificate() argument
304 object, attributes, parameters); in STORE_store_certificate()
335 int STORE_revoke_certificate(STORE *s, OPENSSL_ITEM attributes[], in STORE_revoke_certificate() argument
342 attributes, parameters)) in STORE_revoke_certificate()
351 int STORE_delete_certificate(STORE *s, OPENSSL_ITEM attributes[], in STORE_delete_certificate() argument
358 attributes, parameters)) in STORE_delete_certificate()
367 void *STORE_list_certificate_start(STORE *s, OPENSSL_ITEM attributes[], in STORE_list_certificate_start() argument
376 STORE_OBJECT_TYPE_X509_CERTIFICATE, attributes, parameters); in STORE_list_certificate_start()
[all …]
Dstore.h236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
238 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
243 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
245 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
247 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
252 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
254 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
257 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
261 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
263 int STORE_delete_private_key(STORE *e, OPENSSL_ITEM attributes[],
[all …]
Dstr_mem.c113 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
115 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
117 STORE_OBJECT *data, OPENSSL_ITEM attributes[],
124 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
126 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
130 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
132 static int mem_unlock(STORE *s, OPENSSL_ITEM attributes[],
173 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) in mem_generate() argument
179 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]) in mem_get() argument
181 void *context = mem_list_start(s, type, attributes, parameters); in mem_get()
[all …]
/external/webkit/Source/JavaScriptCore/runtime/
DSymbolTable.h56 SymbolTableEntry(int index, unsigned attributes) in SymbolTableEntry()
59 pack(index, attributes & ReadOnly, attributes & DontEnum); in SymbolTableEntry()
74 unsigned attributes = 0; in getAttributes() local
76 attributes |= ReadOnly; in getAttributes()
78 attributes |= DontEnum; in getAttributes()
79 return attributes; in getAttributes()
82 void setAttributes(unsigned attributes) in setAttributes()
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum); in setAttributes()
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
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[j].nodeName+"="+
68 "\""+node.attributes[j].nodeValue+"\"";
/external/svox/pico/tts/
Dsvox_ssml_parser.cpp103 …d SvoxSsmlParser::starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes) in starttagHandler() argument
105 ((SvoxSsmlParser*)data)->startElement(element, attributes); in starttagHandler()
108 void SvoxSsmlParser::startElement(const XML_Char* element, const XML_Char** attributes) in startElement() argument
127 for (int i = 0; attributes[i]; i += 2) in startElement()
129 if (strcmp(attributes[i], "xml:lang") == 0) in startElement()
133 m_docLanguage = new char[strlen(attributes[i+1])+1]; in startElement()
135 strcpy(m_docLanguage, attributes[i+1]); in startElement()
173 for (int i = 0; attributes[i]; i += 2) in startElement()
175 if (strcmp(attributes[i], "alphabet") == 0) in startElement()
177 if (strcmp(attributes[i+1], "xsampa") == 0) in startElement()
[all …]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
DCertificationRequestInfo.java39 ASN1Set attributes = null; field in CertificationRequestInfo
59 ASN1Set attributes) in CertificationRequestInfo() argument
63 this.attributes = attributes; in CertificationRequestInfo()
74 ASN1Set attributes) in CertificationRequestInfo() argument
78 this.attributes = attributes; in CertificationRequestInfo()
101 attributes = ASN1Set.getInstance(tagobj, false); in CertificationRequestInfo()
127 return attributes; in getAttributes()
138 if (attributes != null) in toASN1Object()
140 v.add(new DERTaggedObject(false, 0, attributes)); in toASN1Object()
/external/webkit/LayoutTests/dom/html/level1/core/
Dhc_namednodemapchildnoderange.js95 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);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
Dhc_namednodemapchildnoderange.js95 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);
/external/harfbuzz/src/
Dharfbuzz-hebrew.c75 HB_GlyphAttributes *attributes = shaper_item->attributes; in HB_HebrewShape() local
138 attributes[slen].clusterStart = TRUE; in HB_HebrewShape()
139 attributes[slen].mark = FALSE; in HB_HebrewShape()
140 attributes[slen].combiningClass = 0; in HB_HebrewShape()
156 attributes[slen].clusterStart = TRUE; in HB_HebrewShape()
157 attributes[slen].mark = FALSE; in HB_HebrewShape()
158 attributes[slen].combiningClass = 0; in HB_HebrewShape()
159 attributes[slen].dontPrint = HB_IsControlChar(uc[i]); in HB_HebrewShape()
162 attributes[slen].clusterStart = FALSE; in HB_HebrewShape()
163 attributes[slen].mark = TRUE; in HB_HebrewShape()
[all …]
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGResourcePattern.cpp199 static inline FloatRect calculatePatternBoundaries(const PatternAttributes& attributes, in calculatePatternBoundaries() argument
205 if (attributes.boundingBoxMode()) in calculatePatternBoundaries()
206 …return FloatRect(attributes.x().valueAsPercentage() * objectBoundingBox.width() + objectBoundingBo… in calculatePatternBoundaries()
207attributes.y().valueAsPercentage() * objectBoundingBox.height() + objectBoundingBox.y(), in calculatePatternBoundaries()
208 attributes.width().valueAsPercentage() * objectBoundingBox.width(), in calculatePatternBoundaries()
209 attributes.height().valueAsPercentage() * objectBoundingBox.height()); in calculatePatternBoundaries()
211 return FloatRect(attributes.x().value(patternElement), in calculatePatternBoundaries()
212 attributes.y().value(patternElement), in calculatePatternBoundaries()
213 attributes.width().value(patternElement), in calculatePatternBoundaries()
214 attributes.height().value(patternElement)); in calculatePatternBoundaries()
[all …]
/external/clang/test/SemaObjC/
Dproperty-10.m6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'read…
13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu…
14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' ar…
15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar…
16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu…
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu…
18 … // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-er…
19 … // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-er…
21 @property(unsafe_unretained, copy) id p4_0; // expected-error {{property attributes 'unsafe_unretai…
22 @property(unsafe_unretained, retain) id p4_1; // expected-error {{property attributes 'unsafe_unret…
[all …]
/external/v8/src/
Dproperty-details.h80 PropertyDetails(PropertyAttributes attributes,
84 ASSERT(AttributesField::is_valid(attributes));
88 | AttributesField::encode(attributes)
92 ASSERT(attributes == this->attributes());
102 PropertyAttributes attributes() { return AttributesField::decode(value_); } in attributes() function
112 bool IsReadOnly() { return (attributes() & READ_ONLY) != 0; } in IsReadOnly()
113 bool IsDontDelete() { return (attributes() & DONT_DELETE) != 0; } in IsDontDelete()
114 bool IsDontEnum() { return (attributes() & DONT_ENUM) != 0; } in IsDontEnum()
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTElementProcessor.java158 … StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) in startElement() argument
264 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes() argument
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true); in setPropertiesFromAttributes()
286 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes() argument
306 int nAttrs = attributes.getLength(); in setPropertiesFromAttributes()
310 String attrUri = attributes.getURI(i); in setPropertiesFromAttributes()
313 && (attributes.getQName(i).startsWith("xmlns:") || in setPropertiesFromAttributes()
314 attributes.getQName(i).equals("xmlns"))) in setPropertiesFromAttributes()
318 String attrLocalName = attributes.getLocalName(i); in setPropertiesFromAttributes()
327 …handler.error(XSLTErrorResources.ER_ATTR_NOT_ALLOWED, new Object[]{attributes.getQName(i), rawName… in setPropertiesFromAttributes()
[all …]
DProcessorKey.java65 … StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) in startElement() argument
73 setPropertiesFromAttributes(handler, rawName, attributes, kd); in startElement()
87 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes() argument
97 int nAttrs = attributes.getLength(); in setPropertiesFromAttributes()
101 String attrUri = attributes.getURI(i); in setPropertiesFromAttributes()
102 String attrLocalName = attributes.getLocalName(i); in setPropertiesFromAttributes()
109 handler.error(attributes.getQName(i) in setPropertiesFromAttributes()
115 String valueString = attributes.getValue(i); in setPropertiesFromAttributes()
125 attributes.getQName(i), attributes.getValue(i), in setPropertiesFromAttributes()

12345678910>>...40