/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getAttributeNS02.java | 76 String attrValue; 85 attrValue = testAddr.getAttributeNS(namespaceURI, localName); 86 assertEquals("throw_Equals", "", attrValue);
|
getAttributeNS03.java | 72 String attrValue; 78 attrValue = testAddr.getAttributeNS(namespaceURI, localName); 79 assertEquals("throw_Equals", "", attrValue);
|
getAttributeNS04.java | 76 String attrValue; 83 attrValue = testAddr.getAttributeNS(namespaceURI, localName); 84 assertEquals("throw_Equals", "NewValue", attrValue);
|
namednodemapremovenameditemns02.java | 81 String attrValue; 90 attrValue = attribute.getNodeValue(); 92 assertEquals("namednodemapremovenameditemns02_attrValue", "defaultVal", attrValue);
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestPackageResult.java | 175 * @param attrValue 178 private void serializeAttribute(KXmlSerializer serializer, String attrName, String attrValue) 180 attrValue = attrValue == null ? "" : attrValue; 181 serializer.attribute(ns, attrName, attrValue);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
AttrResourceLoader.java | 41 public String convertValueToEnum(Class<? extends View> viewClass, String namespace, String attrName, String attrValue) { 44 return classAttrEnumToValue.get(key(className, attrName, attrValue, isSystem));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
ListValueCellEditor.java | 57 String attrValue = uiListAttribute.getCurrentValue(); 58 mCombo.setText(attrValue);
|
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/ |
LayoutFileParser.java | 245 String value = escapeQuotes(attr.attrValue.getText(), true); 250 L.e("Expecting '}' in expression '%s'", attr.attrValue.getText()); 258 valueLocation.startLine = attr.attrValue.getLine() - 1; 259 valueLocation.startOffset = attr.attrValue.getCharPositionInLine() + 260 attr.attrValue.getText().indexOf(strippedValue); 319 final String name = escapeQuotes(className.attrValue.getText(), true); 322 className.attrValue.getLine() - 1, 323 className.attrValue.getCharPositionInLine() + 1, 324 className.attrValue.getLine() - 1, 325 className.attrValue.getCharPositionInLine() + name.length( [all...] |
/external/skia/include/svg/parser/ |
SkSVGPaintState.h | 46 const char* attrValue, size_t attrLength);
|
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/src/ |
ElementQueries.js | 77 var key, option, width = 0, height = 0, value, actualValue, attrValues, attrValue, attrName; 109 attrValue = ''; 112 attrValue += option.value; 116 attrValue += option.value; 120 if (attrValue && -1 === (' '+attrValues[attrName]+' ').indexOf(' ' + attrValue + ' ')) { 121 attrValues[attrName] += ' ' + attrValue;
|
/libcore/ojluni/src/main/java/java/net/ |
HttpCookie.java | [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
TaskRecord.java | [all...] |
/external/skia/src/animator/ |
SkAnimateMaker.h | 83 void idsSet(const char* attrValue, size_t len, SkDisplayable* displayable) { 84 fIDs.set(attrValue, len, displayable); }
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorOutputElem.java | 151 public void setForeignAttr(String attrUri, String attrLocalName, String attrRawName, String attrValue) 154 m_outputProperties.setProperty(key, attrValue); 161 public void addLiteralResultAttribute(String attrUri, String attrLocalName, String attrRawName, String attrValue) 164 m_outputProperties.setProperty(key, attrValue);
|
/frameworks/data-binding/compilerCommon/ |
XMLParser.g4 | 47 attribute : attrName=Name '=' attrValue=STRING ; // Our STRING is AttValue in spec
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementSetAttributeNodeNS.java | 118 String attrValue; 130 attrValue = newAttr.getNodeValue(); 132 assertEquals("elementsetattributenodens02_attrValue", "Yes", attrValue);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
HTMLParser.py | 298 attrname, rest, attrvalue = m.group(1, 2, 3) 300 attrvalue = None 301 elif attrvalue[:1] == '\'' == attrvalue[-1:] or \ 302 attrvalue[:1] == '"' == attrvalue[-1:]: 303 attrvalue = attrvalue[1:-1] 304 if attrvalue: 305 attrvalue = self.unescape(attrvalue [all...] |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 283 attrvalue = attrname 285 if (attrvalue[:1] == "'" == attrvalue[-1:] or 286 attrvalue[:1] == '"' == attrvalue[-1:]): 288 attrvalue = attrvalue[1:-1] 289 attrvalue = self.entity_or_charref.sub( 290 self._convert_ref, attrvalue) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
HTMLParser.py | 298 attrname, rest, attrvalue = m.group(1, 2, 3) 300 attrvalue = None 301 elif attrvalue[:1] == '\'' == attrvalue[-1:] or \ 302 attrvalue[:1] == '"' == attrvalue[-1:]: 303 attrvalue = attrvalue[1:-1] 304 if attrvalue: 305 attrvalue = self.unescape(attrvalue [all...] |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 283 attrvalue = attrname 285 if (attrvalue[:1] == "'" == attrvalue[-1:] or 286 attrvalue[:1] == '"' == attrvalue[-1:]): 288 attrvalue = attrvalue[1:-1] 289 attrvalue = self.entity_or_charref.sub( 290 self._convert_ref, attrvalue) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 298 attrname, rest, attrvalue = m.group(1, 2, 3) 300 attrvalue = None 301 elif attrvalue[:1] == '\'' == attrvalue[-1:] or \ 302 attrvalue[:1] == '"' == attrvalue[-1:]: 303 attrvalue = attrvalue[1:-1] 304 if attrvalue: 305 attrvalue = self.unescape(attrvalue [all...] |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 283 attrvalue = attrname 285 if (attrvalue[:1] == "'" == attrvalue[-1:] or 286 attrvalue[:1] == '"' == attrvalue[-1:]): 288 attrvalue = attrvalue[1:-1] 289 attrvalue = self.entity_or_charref.sub( 290 self._convert_ref, attrvalue) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 298 attrname, rest, attrvalue = m.group(1, 2, 3) 300 attrvalue = None 301 elif attrvalue[:1] == '\'' == attrvalue[-1:] or \ 302 attrvalue[:1] == '"' == attrvalue[-1:]: 303 attrvalue = attrvalue[1:-1] 304 if attrvalue: 305 attrvalue = self.unescape(attrvalue [all...] |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 283 attrvalue = attrname 285 if (attrvalue[:1] == "'" == attrvalue[-1:] or 286 attrvalue[:1] == '"' == attrvalue[-1:]): 288 attrvalue = attrvalue[1:-1] 289 attrvalue = self.entity_or_charref.sub( 290 self._convert_ref, attrvalue) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringRefactoring.java | 717 * @param attrValue The attribute value, as extracted by 723 static String unquoteAttrValue(String attrValue) { 724 int len = attrValue.length(); 727 attrValue.charAt(0) == '"' && 728 attrValue.charAt(len1) == '"') { 729 attrValue = attrValue.substring(1, len1); 731 attrValue.charAt(0) == '\'' && 732 attrValue.charAt(len1) == '\'') { 733 attrValue = attrValue.substring(1, len1) [all...] |