/external/skia/src/svg/ |
D | SkSVGPaintState.cpp | 61 const char* attrValue, size_t attrLength) { in addAttribute() argument 84 attr->set(attrValue, attrLength); in addAttribute() 88 int pairs = SkParse::Count(attrValue, ';'); in addAttribute() 89 const char* attrEnd = attrValue + attrLength; in addAttribute() 91 const char* end = strchr(attrValue, ';'); in addAttribute() 94 const char* delimiter = strchr(attrValue, ':'); in addAttribute() 96 … int index = parser.findAttribute(this, attrValue, (int) (delimiter - attrValue), true); in addAttribute() 100 attrValue = end + 1; in addAttribute() 288 const char* attrValue = topAttr->c_str(); in writeChangedAttributes() local 304 parser._addAttributeLen("textSize", attrValue, attrLength); in writeChangedAttributes() [all …]
|
D | SkSVGPolygon.cpp | 30 const char* attrValue, size_t attrLength) { in DEFINE_SVG_INFO() 31 INHERITED::addAttribute(parser, attrIndex, attrValue, attrLength); in DEFINE_SVG_INFO()
|
D | SkSVGPolyline.cpp | 36 const char* attrValue, size_t attrLength) { in DEFINE_SVG_INFO() 40 f_points.append(attrValue, attrLength); in DEFINE_SVG_INFO()
|
D | SkSVGElements.cpp | 25 const char* attrValue, size_t attrLength) { in addAttribute() argument 28 first->set(attrValue, attrLength); in addAttribute()
|
D | SkSVGPolygon.h | 26 const char* attrValue, size_t attrLength);
|
D | SkSVGPolyline.h | 27 const char* attrValue, size_t attrLength);
|
D | SkSVGParser.cpp | 74 int SkSVGParser::findAttribute(SkSVGBase* element, const char* attrValue, in findAttribute() argument 80 if (strncmp(attributes->fName, attrValue, len) == 0 && strlen(attributes->fName) == len) { in findAttribute()
|
/external/skia/include/svg/ |
D | SkSVGParser.h | 37 void _addAttribute(const char* attrName, const char* attrValue) { in _addAttribute() argument 38 fXMLWriter.addAttribute(attrName, attrValue); } in _addAttribute() 39 void _addAttribute(const char* attrName, SkString& attrValue) { in _addAttribute() argument 40 fXMLWriter.addAttribute(attrName, attrValue.c_str()); } in _addAttribute() 41 void _addAttributeLen(const char* attrName, const char* attrValue, size_t len) { in _addAttributeLen() argument 42 fXMLWriter.addAttributeLen(attrName, attrValue, len); } in _addAttributeLen() 44 int findAttribute(SkSVGBase* , const char* attrValue, size_t len, bool isPaint);
|
D | SkSVGBase.h | 28 const char* attrValue, size_t attrLength);
|
D | SkSVGPaintState.h | 53 const char* attrValue, size_t attrLength);
|
/external/skia/src/animator/ |
D | SkDisplayXMLParser.cpp | 105 bool SkDisplayXMLParser::onAddAttributeLen(const char attrName[], const char attrValue[], in onAddAttributeLen() argument 114 if (fMaker.find(attrValue, attrValueLen, NULL)) { in onAddAttributeLen() 115 fError->setNoun(attrValue, attrValueLen); in onAddAttributeLen() 120 displayable->_id.set(attrValue, attrValueLen); in onAddAttributeLen() 123 fMaker.idsSet(attrValue, attrValueLen, displayable); in onAddAttributeLen() 138 if (info->setValue(fMaker, NULL, 0, info->getCount(), displayable, info->getType(), attrValue, in onAddAttributeLen() 142 fError->setNoun(attrValue, attrValueLen); in onAddAttributeLen() 146 if (fMaker.find(attrValue, attrValueLen, &ref) == false) { in onAddAttributeLen() 147 ref = fMaker.createInstance(attrValue, attrValueLen); in onAddAttributeLen() 149 fError->setNoun(attrValue, attrValueLen); in onAddAttributeLen()
|
D | SkAnimateMaker.h | 91 void idsSet(const char* attrValue, size_t len, SkDisplayable* displayable) { in idsSet() argument 92 fIDs.set(attrValue, len, displayable); } in idsSet()
|
/external/webkit/WebCore/bindings/v8/custom/ |
D | V8AttrCustom.cpp | 46 String attrValue = toWebCoreStringWithNullCheck(value); in ACCESSOR_SETTER() local 49 if (ownerElement && !allowSettingSrcToJavascriptURL(ownerElement, imp->name(), attrValue)) in ACCESSOR_SETTER() 53 imp->setValue(attrValue, ec); in ACCESSOR_SETTER()
|
/external/webkit/WebCore/bindings/js/ |
D | JSAttrCustom.cpp | 46 String attrValue = valueToStringWithNullCheck(exec, value); in setValue() local 50 …if (equalIgnoringCase(imp->name(), "src") && protocolIsJavaScript(deprecatedParseURL(attrValue))) { in setValue() 57 imp->setValue(attrValue, ec); in setValue()
|
/external/icu4c/i18n/ |
D | ucol_sit.cpp | 759 UColAttributeValue attrValue = UCOL_DEFAULT; in ucol_collatorToIdentifier() local 773 attrValue = ucol_getAttributeOrDefault(coll, attributesToBits[i].attribute, status); in ucol_collatorToIdentifier() 775 while(attributesToBits[i].values[j] != attrValue) { in ucol_collatorToIdentifier() 803 UColAttributeValue attrValue = UCOL_DEFAULT; in ucol_openFromIdentifier() local 811 attrValue = attributesToBits[i].values[value]; in ucol_openFromIdentifier() 814 if(attrValue != UCOL_DEFAULT) { in ucol_openFromIdentifier() 816 ucol_getAttribute(result, attributesToBits[i].attribute, status) != attrValue) { in ucol_openFromIdentifier() 817 ucol_setAttribute(result, attributesToBits[i].attribute, attrValue, status); in ucol_openFromIdentifier() 888 UColAttributeValue attrValue = UCOL_DEFAULT; in ucol_shortStringToIdentifier() local 900 attrValue = s.options[i]; in ucol_shortStringToIdentifier() [all …]
|
/external/webkit/WebCore/dom/ |
D | XMLTokenizerQt.cpp | 359 String attrValue = attr.value(); in attributesStartElementNsHandler() local 362 state->attributes.set(attrQName, attrValue); in attributesStartElementNsHandler() 411 String attrValue = attr.value(); in handleElementAttributes() local 414 newElement->setAttributeNS(attrURI, attrQName, attrValue, ec); in handleElementAttributes()
|
D | xml_expat_tokenizer.cpp | 411 String attrValue = toQString(atts[i+1]); in handleElementAttributes() local 412 newElement->setAttributeNS(attrURI, attrQName, attrValue, exceptioncode); in handleElementAttributes() 1001 DeprecatedString attrValue = toQString(atts[i+1]); in attributesStartElementHandler() local 1002 state->attributes.set(attrName, attrValue); in attributesStartElementHandler()
|
D | StyledElement.cpp | 97 …eDecl(MappedAttributeEntry entryType, const QualifiedName& attrName, const AtomicString& attrValue) in removeMappedAttributeDecl() argument 101 …tributeDecls->remove(MappedAttributeKey(entryType, attrName.localName().impl(), attrValue.impl())); in removeMappedAttributeDecl()
|
D | XMLTokenizerLibxml2.cpp | 700 String attrValue = toString(attributes[i].value, valueLength); in handleElementAttributes() local 705 newElement->setAttributeNS(attrURI, attrQName, attrValue, ec); in handleElementAttributes() 1416 String attrValue = toString(attributes[i].value, valueLength); in attributesStartElementNsHandler() local 1420 state->attributes.set(attrQName, attrValue); in attributesStartElementNsHandler()
|
/external/libxml2/ |
D | xmlschemas.c | 7087 const xmlChar *attrValue, *name = NULL, *ns = NULL; in xmlSchemaParseLocalAttribute() local 7143 attrValue = xmlSchemaGetNodeContent(pctxt, in xmlSchemaParseLocalAttribute() 7145 if (xmlStrEqual(attrValue, BAD_CAST "qualified")) { in xmlSchemaParseLocalAttribute() 7147 } else if (!xmlStrEqual(attrValue, BAD_CAST "unqualified")) in xmlSchemaParseLocalAttribute() 7153 attrValue, NULL, NULL, NULL); in xmlSchemaParseLocalAttribute() 7160 attrValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr); in xmlSchemaParseLocalAttribute() 7162 if (xmlStrEqual(attrValue, BAD_CAST "optional")) in xmlSchemaParseLocalAttribute() 7164 else if (xmlStrEqual(attrValue, BAD_CAST "prohibited")) in xmlSchemaParseLocalAttribute() 7166 else if (xmlStrEqual(attrValue, BAD_CAST "required")) in xmlSchemaParseLocalAttribute() 7173 attrValue, NULL, NULL, NULL); in xmlSchemaParseLocalAttribute() [all …]
|
/external/webkit/WebKitTools/Scripts/modules/ |
D | BeautifulSoup.py | 891 attrValue = markupAttrMap.get(attr) 892 if not self._matches(attrValue, matchAgainst):
|