HomeSort by relevance Sort by last modified time
    Searched full:attrvalue (Results 1 - 25 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxml2/test/valid/dtds/
external2.ent 1 <!ATTLIST root attr1 NMTOKEN "attrvalue">
  /external/skia/include/svg/parser/
SkSVGParser.h 29 void _addAttribute(const char* attrName, const char* attrValue) {
30 fXMLWriter.addAttribute(attrName, attrValue); }
31 void _addAttribute(const char* attrName, SkString& attrValue) {
32 fXMLWriter.addAttribute(attrName, attrValue.c_str()); }
33 void _addAttributeLen(const char* attrName, const char* attrValue, size_t len) {
34 fXMLWriter.addAttributeLen(attrName, attrValue, len); }
36 int findAttribute(SkSVGBase* , const char* attrValue, size_t len, bool isPaint);
SkSVGBase.h 21 const char* attrValue, size_t attrLength);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 83 // String attrValue;
87 // attrValue = testAddr.getAttributeNS(namespaceURI, localName);
88 // assertEquals("attrValue", "DISTRICT", attrValue);
99 String attrValue;
108 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
109 assertEquals("throw_Equals", "", attrValue);
117 String attrValue;
123 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
124 assertEquals("throw_Equals", "", attrValue);
    [all...]
ElementGetAttributeNodeNS.java 58 String attrValue;
73 attrValue = attribute.getNodeValue();
78 assertEquals("elementgetattributenodens01_attrValue", "", attrValue);
92 String attrValue;
100 attrValue = attribute.getNodeValue();
101 assertEquals("elementgetattributenodens02", "", attrValue);
109 // String attrValue;
118 // attrValue = attribute.getNodeValue();
119 // assertEquals("elementgetattributenodens03", "defaultVal", attrValue);
ElementSetAttributeNS.java 60 String attrValue;
68 attrValue = attribute.getNodeValue();
70 assertEquals("elementsetattributens01_attrValue", "value", attrValue);
78 String attrValue;
87 attrValue = attribute.getNodeValue();
91 attrValue);
99 String attrValue;
111 attrValue = attribute.getNodeValue();
114 assertEquals("elementsetattributens03_attrValue", "default1", attrValue);
ElementGetAttributeNS.java 73 // String attrValue;
81 // attrValue = element.getAttributeNS(nullNS, "defaultAttr");
82 // assertEquals("elementgetattributens02", "defaultVal", attrValue);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
htmllexergolden1.txt 21 ATTRVALUE [stylesheet] : 216-226
23 ATTRVALUE ["text/css"] : 232-242
25 ATTRVALUE [foo/bar.css] : 247-258
30 ATTRVALUE [white] : 277-282
32 ATTRVALUE ["blue"] : 296-302
34 ATTRVALUE ["document.writeln(\n &quot;&lt;p&gt;properly escaped code in a handler&lt;/p&gt;&quot;);"] : 311-400
39 ATTRVALUE ["text/javascript"] : 417-434
47 ATTRVALUE ["text/javascript"] : 540-557
55 ATTRVALUE [clickydiv] : 638-647
57 ATTRVALUE ["handleClicky(event)"] : 656-67
    [all...]
  /external/apache-harmony/security/src/test/resources/java/security/
Provider.prop.dat 3 serviceName.algName\ attrName= attrValue
  /external/skia/src/svg/parser/
SkSVGPolygon.h 18 const char* attrValue, size_t attrLength);
SkSVGPolygon.cpp 22 const char* attrValue, size_t attrLength) {
23 INHERITED::addAttribute(parser, attrIndex, attrValue, attrLength);
SkSVGPolyline.cpp 28 const char* attrValue, size_t attrLength) {
32 f_points.append(attrValue, attrLength);
SkSVGPolyline.h 19 const char* attrValue, size_t attrLength);
SkSVGPaintState.cpp 53 const char* attrValue, size_t attrLength) {
76 attr->set(attrValue, attrLength);
80 int pairs = SkParse::Count(attrValue, ';');
81 const char* attrEnd = attrValue + attrLength;
83 const char* end = strchr(attrValue, ';');
86 const char* delimiter = strchr(attrValue, ':');
88 int index = parser.findAttribute(this, attrValue, (int) (delimiter - attrValue), true);
92 attrValue = end + 1;
280 const char* attrValue = topAttr->c_str()
    [all...]
SkSVGElements.cpp 17 const char* attrValue, size_t attrLength) {
20 first->set(attrValue, attrLength);
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_htmlparser.py 55 attrvalue = '""'
217 attrname, rest, attrvalue = m.group(1, 2, 3)
219 attrvalue = None
220 elif attrvalue[:1] == '\'' == attrvalue[-1:] or \
221 attrvalue[:1] == '"' == attrvalue[-1:]:
222 attrvalue = attrvalue[1:-1]
223 if attrvalue
    [all...]
  /frameworks/base/services/core/java/com/android/server/firewall/
StringFilter.java 144 public EqualsFilter(ValueProvider valueProvider, String attrValue) {
146 mFilterValue = attrValue;
158 public ContainsFilter(ValueProvider valueProvider, String attrValue) {
160 mFilterValue = attrValue;
172 public StartsWithFilter(ValueProvider valueProvider, String attrValue) {
174 mFilterValue = attrValue;
186 public PatternStringFilter(ValueProvider valueProvider, String attrValue) {
188 mPattern = new PatternMatcher(attrValue, PatternMatcher.PATTERN_SIMPLE_GLOB);
200 public RegexFilter(ValueProvider valueProvider, String attrValue) {
202 this.mPattern = Pattern.compile(attrValue);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementretrieveattrvalue.java 66 String attrValue;
70 attrValue = testAddress.getAttribute("street");
71 assertEquals("attrValue", "No", attrValue);
hc_elementretrieveattrvalue.java 65 String attrValue;
69 attrValue = testAddress.getAttribute("class");
70 assertEquals("attrValue", "No", attrValue);
elementaddnewattribute.java 68 String attrValue;
73 attrValue = testEmployee.getAttribute("district");
74 assertEquals("elementAddNewAttributeAssert", "dallas", attrValue);
hc_nodeattributenodevalue.java 67 String attrValue;
72 attrValue = addrAttr.getNodeValue();
73 assertEquals("nodeValue", "Yes", attrValue);
hc_elementaddnewattribute.java 68 String attrValue;
73 attrValue = testEmployee.getAttribute("lang");
74 assertEquals("attrValue", "EN-us", attrValue);
  /prebuilts/go/darwin-x86/src/cmd/go/
discovery.go 61 if attrValue(e.Attr, "name") != "go-import" {
64 if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
74 // attrValue returns the attribute value for the case-insensitive key
76 func attrValue(attrs []xml.Attr, name string) string {
  /prebuilts/go/linux-x86/src/cmd/go/
discovery.go 61 if attrValue(e.Attr, "name") != "go-import" {
64 if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
74 // attrValue returns the attribute value for the case-insensitive key
76 func attrValue(attrs []xml.Attr, name string) string {
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 97 bool SkDisplayXMLParser::onAddAttributeLen(const char attrName[], const char attrValue[],
106 if (fMaker.find(attrValue, attrValueLen, nullptr)) {
107 fError->setNoun(attrValue, attrValueLen);
112 displayable->_id.set(attrValue, attrValueLen);
115 fMaker.idsSet(attrValue, attrValueLen, displayable);
130 if (info->setValue(fMaker, nullptr, 0, info->getCount(), displayable, info->getType(), attrValue,
134 fError->setNoun(attrValue, attrValueLen);
138 if (fMaker.find(attrValue, attrValueLen, &ref) == false) {
139 ref = fMaker.createInstance(attrValue, attrValueLen);
141 fError->setNoun(attrValue, attrValueLen)
    [all...]

Completed in 352 milliseconds

1 2 3 4 5 6 7 8 91011>>