HomeSort by relevance Sort by last modified time
    Searched refs:getAttribute (Results 176 - 200 of 590) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/editing/
SplitElementCommand.cpp 98 m_element2->setAttribute(HTMLNames::idAttr, m_element1->getAttribute(HTMLNames::idAttr));
  /external/webkit/Source/WebCore/html/
HTMLOptGroupElement.cpp 114 String itemText = document()->displayStringModifiedByEncoding(getAttribute(labelAttr));
HTMLLinkElement.cpp 275 String charset = getAttribute(charsetAttr);
470 return document()->completeURL(getAttribute(hrefAttr));
475 return getAttribute(relAttr);
480 return getAttribute(targetAttr);
485 return getAttribute(typeAttr);
  /external/webkit/Source/WebCore/wml/
WMLElement.cpp 86 return parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::titleAttr));
WMLPElement.cpp 109 String lastMode = lastParagraph->getAttribute(modeAttr);
WMLGoElement.cpp 104 String href = getAttribute(HTMLNames::hrefAttr);
131 if (getAttribute(sendrefererAttr) == "true")
134 String cacheControl = getAttribute(cache_controlAttr);
WMLSelectElement.cpp 306 String value = parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::valueAttr));
537 return parseValueForbiddingVariableReferences(getAttribute(HTMLNames::nameAttr));
542 return parseValueSubstitutingVariableReferences(getAttribute(HTMLNames::valueAttr));
547 return parseValueForbiddingVariableReferences(getAttribute(inameAttr));
552 return parseValueSubstitutingVariableReferences(getAttribute(ivalueAttr));
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 295 public abstract Object getAttribute(String name)
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestPackageResult.java 171 setAppPackageName(getAttribute(parser, APP_PACKAGE_NAME_ATTR));
172 setName(getAttribute(parser, NAME_ATTR));
173 setDigest(getAttribute(parser, DIGEST_ATTR));
  /external/chromium/webkit/glue/
dom_operations.cc 175 if (LowerCaseEqualsASCII(element.getAttribute("type"), "text/css")) {
184 WebString value = element.getAttribute(WebString::fromUTF8(attribute_name));
329 WebString value = element.getAttribute(attribute_name);
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorTest.java 78 it.getAttribute(AttributedCharacterIterator.Attribute.LANGUAGE);
82 it.getAttribute(AttributedCharacterIterator.Attribute.READING);
85 assertNull(it.getAttribute(AttributedCharacterIterator.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 373 if ( ruleScope!=null && ruleScope.getAttribute(name)!=null ) {
382 if ( returnScope!=null && returnScope.getAttribute(name)!=null ) {
385 else if ( parameterScope!=null && parameterScope.getAttribute(name)!=null ) {
391 if ( rulePropertiesScope.getAttribute(name)!=null ) {
425 (String)uniqueRefAST.code.getAttribute("label");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 143 private Node getAttribute(int i) {
262 Node attribute = getAttribute(i);
284 Node attribute = getAttribute(i);
307 Node attribute = getAttribute(i);
328 Node attribute = getAttribute(i);
422 // Temporarily translate <fragment> to <include> (and in getAttribute
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 178 m_attributeName = constructQualifiedName(this, getAttribute(SVGNames::attributeNameAttr));
382 parseBeginOrEnd(getAttribute(SVGNames::endAttr), End);
391 parseBeginOrEnd(getAttribute(SVGNames::beginAttr), Begin);
532 const AtomicString& value = getAttribute(SVGNames::restartAttr);
543 const AtomicString& value = getAttribute(SVGNames::fillAttr);
549 return getAttribute(XLinkNames::hrefAttr);
556 const AtomicString& value = getAttribute(SVGNames::durAttr);
565 const AtomicString& value = getAttribute(SVGNames::repeatDurAttr);
576 const AtomicString& value = getAttribute(SVGNames::repeatCountAttr);
592 const AtomicString& value = getAttribute(SVGNames::maxAttr)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 228 String name = element.getAttribute("name"); //$NON-NLS-1$
255 String fqcn = child.getAttribute("class"); //$NON-NLS-1$
259 String fill = child.getAttribute("fill"); //$NON-NLS-1$
267 String skip = child.getAttribute("skip"); //$NON-NLS-1$
269 String render = child.getAttribute("render"); //$NON-NLS-1$
273 String displayName = child.getAttribute("name"); //$NON-NLS-1$
278 String relatedTo = child.getAttribute("relatedTo"); //$NON-NLS-1$
279 String topAttrs = child.getAttribute("topAttrs"); //$NON-NLS-1$
280 String resize = child.getAttribute("resize"); //$NON-NLS-1$
285 String init = child.getAttribute("init"); //$NON-NLS-1
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.cpp 240 const AtomicString& value = getAttribute(SVGNames::calcModeAttr);
256 const AtomicString& value = getAttribute(SVGNames::attributeTypeAttr);
266 return getAttribute(SVGNames::toAttr);
271 return getAttribute(SVGNames::byAttr);
276 return getAttribute(SVGNames::fromAttr);
282 const AtomicString& value = getAttribute(SVGNames::additiveAttr);
289 const AtomicString& value = getAttribute(SVGNames::accumulateAttr);
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 338 String version = preferences.getAttribute("EXTERNAL_XML_VERSION");
348 String type = root.getAttribute("type");
377 String key = entry.getAttribute("key");
378 String value = entry.getAttribute("value");
384 String name = child.getAttribute("name");
457 String key = node.getAttribute("key");
458 String value = node.getAttribute("value");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 444 stringValue = configuration.getAttribute(
478 stringValue = configuration.getAttribute(LaunchConfigDelegate.ATTR_AVD_NAME,
493 value = configuration.getAttribute(LaunchConfigDelegate.ATTR_WIPE_DATA, value);
501 value = configuration.getAttribute(LaunchConfigDelegate.ATTR_NO_BOOT_ANIM, value);
511 index = configuration.getAttribute(LaunchConfigDelegate.ATTR_SPEED,
524 index = configuration.getAttribute(LaunchConfigDelegate.ATTR_DELAY,
538 commandLine = configuration.getAttribute(
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 827 = (LineNumberAttribute)ca.getAttribute(LineNumberAttribute.tag);
831 LocalVariableAttribute va = (LocalVariableAttribute)ca.getAttribute(
837 = (LocalVariableAttribute)ca.getAttribute(
842 StackMapTable smt = (StackMapTable)ca.getAttribute(StackMapTable.tag);
846 StackMap sm = (StackMap)ca.getAttribute(StackMap.tag);
    [all...]
ClassFile.java 213 = getAttribute(AnnotationsAttribute.invisibleTag);
220 = getAttribute(AnnotationsAttribute.visibleTag);
227 = getAttribute(SignatureAttribute.tag);
310 = (InnerClassesAttribute)getAttribute(InnerClassesAttribute.tag);
719 public AttributeInfo getAttribute(String name) {
749 = (SourceFileAttribute)getAttribute(SourceFileAttribute.tag);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 123 String id = marker.getAttribute(EclipseLintRunner.MARKER_CHECKID_PROPERTY,
133 resolutions.add(new MoreInfoProposal(id, marker.getAttribute(IMarker.MESSAGE, null)));
179 String id = marker.getAttribute(EclipseLintRunner.MARKER_CHECKID_PROPERTY,
190 String message = marker.getAttribute(IMarker.MESSAGE, null);
278 int start = marker.getAttribute(IMarker.CHAR_START, -1);
279 int end = marker.getAttribute(IMarker.CHAR_END, -1);
  /libcore/luni/src/main/java/java/text/
Bidi.java 130 Object direction = paragraph.getAttribute(TextAttribute.RUN_DIRECTION);
144 Object embedding = paragraph.getAttribute(TextAttribute.BIDI_EMBEDDING);
164 Object numericShaper = paragraph.getAttribute(TextAttribute.NUMERIC_SHAPING);
  /cts/tools/utils/
android_api_description_splitter.py 123 filename = os.path.join(self.out, elem.getAttribute("name").replace(".", "_").lower() + ".xml")
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedStringTest.java 63 public Object getAttribute(AttributedCharacterIterator.Attribute p) {
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreateelementcasesensitive.js 114 attribute1 = newElement1.getAttribute("lang");
115 attribute2 = newElement2.getAttribute("title");

Completed in 2040 milliseconds

1 2 3 4 5 6 78 91011>>