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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/accessibility/
AccessibilityMediaControls.h 70 const AtomicString& getAttribute(const QualifiedName& attribute) const;
  /external/webkit/Source/WebCore/html/
HTMLEmbedElement.cpp 184 loader->requestObject(this, m_url, getAttribute(nameAttr), m_serviceType, paramNames, paramValues);
227 String width = getAttribute(widthAttr);
228 String height = getAttribute(heightAttr);
277 addSubresourceURL(urls, document()->completeURL(getAttribute(srcAttr)));
HTMLFormCollection.cpp 115 if (associatedElement->isEnumeratable() && element->getAttribute(attrName) == name) {
126 if (element->getAttribute(attrName) == name) {
199 const AtomicString& nameAttrVal = element->getAttribute(nameAttr);
226 const AtomicString& nameAttrVal = element->getAttribute(nameAttr);
HTMLTableColElement.cpp 100 return getAttribute(widthAttr);
StepRange.cpp 40 hasStep = !equalIgnoringCase(element->getAttribute(precisionAttr), "float");
HTMLAnchorElement.cpp 150 String url = stripLeadingAndTrailingHTMLSpaces(getAttribute(hrefAttr));
152 handleLinkClick(event, document(), url, getAttribute(targetAttr), hasRel(RelationNoReferrer));
256 const AtomicString& value = getAttribute(draggableAttr);
266 return document()->completeURL(stripLeadingAndTrailingHTMLSpaces(getAttribute(hrefAttr)));
290 return getAttribute(nameAttr);
301 return getAttribute(targetAttr);
493 SpaceSplitString pingURLs(getAttribute(pingAttr), true);
  /external/webkit/Source/WebCore/loader/
FormSubmission.cpp 149 if (!(attributeValue = submitButton->getAttribute(formactionAttr)).isNull())
151 if (!(attributeValue = submitButton->getAttribute(formenctypeAttr)).isNull())
153 if (!(attributeValue = submitButton->getAttribute(formmethodAttr)).isNull())
155 if (!(attributeValue = submitButton->getAttribute(formtargetAttr)).isNull())
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
LeaksLoader.js 60 var urls = Array.prototype.map.call(root.querySelectorAll("tr.file > td > a[href$='-leaks.txt']"), function(link) { return baseURL + link.getAttribute("href"); });
  /frameworks/base/tools/aapt/
Main.h 58 String8 getAttribute(const ResXMLTree& tree, const char* ns,
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementcreatenewattribute.java 80 attrVal = testAddress.getAttribute("district");
elementremoveattribute.java 82 attrValue = testEmployee.getAttribute("street");
elementremoveattributerestoredefaultvalue.java 82 attribute = testEmployee.getAttribute("street");
hc_elementcreatenewattribute.java 80 attrVal = testAddress.getAttribute("lang");
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 172 public Object getAttribute(Attribute attribute);
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactory.java 307 public abstract Object getAttribute(String name);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderFactoryImpl.java 38 public Object getAttribute(String name) throws IllegalArgumentException {
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 53 public String getAttribute(String name);
  /libcore/support/src/test/java/tests/support/
Support_Xml.java 52 return e.getAttribute("attr");
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilLayoutElementImpl.java 38 return this.getAttribute("type");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleElementTest.java 239 assertNull(e.getAttribute("unknown uri", "name"));
240 assertNull(e.getAttribute("uri", "unknown name"));
242 e.getAttribute("uri", "name"));
244 e.getAttribute("my-uri", "second-name"));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 93 message = (String) marker.getAttribute(IMarker.MESSAGE);
108 String message = (String) marker.getAttribute(IMarker.MESSAGE);
118 int start = marker.getAttribute(IMarker.CHAR_START, 0);
119 int end = marker.getAttribute(IMarker.CHAR_END, 0);
180 String message = marker.getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1$
182 int start = marker.getAttribute(IMarker.CHAR_START, 0);
183 int end = marker.getAttribute(IMarker.CHAR_END, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 224 String typeName = parameter.getAttribute(TemplateHandler.ATTR_TYPE);
228 id = parameter.getAttribute(ATTR_ID);
229 initial = parameter.getAttribute(ATTR_DEFAULT);
230 suggest = parameter.getAttribute(ATTR_SUGGEST);
231 name = parameter.getAttribute(ATTR_NAME);
232 help = parameter.getAttribute(ATTR_HELP);
233 String constraintString = parameter.getAttribute(ATTR_CONSTRAINTS);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 284 node.getAttribute('rel') == 'alternate') {
285 out.url = node.getAttribute('href');
287 out.location = node.getAttribute('valueString');
290 out.attendeeStatus = node.firstChild.getAttribute('value');
293 out.status = node.getAttribute('value');
295 var startTimeStr = node.getAttribute('startTime');
296 var endTimeStr = node.getAttribute('endTime');
376 if (isHidden && isHidden.getAttribute('value') == 'false') {
377 if (isSelected && isSelected.getAttribute('value') == 'true') {
379 var cal_src = calendar_content.getAttribute('src')
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 58 * getAttribute/setAttribute.
339 return getAttribute(this.address, UNUM_MAX_FRACTION_DIGITS);
343 return getAttribute(this.address, UNUM_MAX_INTEGER_DIGITS);
347 return getAttribute(this.address, UNUM_MIN_FRACTION_DIGITS);
351 return getAttribute(this.address, UNUM_MIN_INTEGER_DIGITS);
355 return getAttribute(this.address, UNUM_GROUPING_SIZE);
359 return getAttribute(this.address, UNUM_MULTIPLIER);
391 return getAttribute(this.address, UNUM_DECIMAL_ALWAYS_SHOWN) != 0;
399 return getAttribute(this.address, UNUM_PARSE_INT_ONLY) != 0;
403 return getAttribute(this.address, UNUM_GROUPING_USED) != 0
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 321 setName(getAttribute(parser, NAME_ATTR));
322 mResult = CtsTestStatus.getStatus(getAttribute(parser, RESULT_ATTR));
323 mStartTime = getAttribute(parser, STARTTIME_ATTR);
324 mEndTime = getAttribute(parser, ENDTIME_ATTR);
329 mMessage = getAttribute(parser, MESSAGE_ATTR);

Completed in 1917 milliseconds

1 2 3 4 56 7 8 91011>>