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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/Bindings/
get-attribute-rare.html 10 description: "This benchmark covers 'getAttribute' in Dromaeo/dom-attr.html, and other DOM methods that return a String.",
14 localDiv.getAttribute("role");
get-attribute.html 10 description: "This benchmark covers 'getAttribute' in Dromaeo/dom-attr.html, and other DOM methods that return a String.",
14 localDiv.getAttribute("id");
  /external/smack/src/com/kenai/jbosh/
CMSessionParams.java 85 resp.getAttribute(Attributes.ACK));
86 String rid = req.getAttribute(Attributes.RID);
95 resp.getAttribute(Attributes.VER)),
97 resp.getAttribute(Attributes.POLLING)),
99 resp.getAttribute(Attributes.INACTIVITY)),
101 resp.getAttribute(Attributes.REQUESTS)),
103 resp.getAttribute(Attributes.HOLD)),
105 resp.getAttribute(Attributes.ACCEPT)),
107 resp.getAttribute(Attributes.MAXPAUSE)),
110 resp.getAttribute(Attributes.CHARSETS))
    [all...]
  /external/deqp/executor/
xeTestResultParser.cpp 382 const char* TestResultParser::getAttribute (const char* name)
387 return m_xmlParser.getAttribute(name);
449 const char* version = getAttribute("Version");
453 m_result->casePath = getAttribute("CasePath");
457 m_result->caseType = getTestCaseType(m_xmlParser.getAttribute("CaseType"));
481 result->statusCode = getTestStatusCode(getAttribute("StatusCode"));
493 section->name = getAttribute("Name");
494 section->description = getAttribute("Description");
502 number->name = getAttribute("Name");
503 number->description = getAttribute("Description")
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 81 s.getAttribute(null);
86 assertNull("getAttribute(aaa) failed", s.getAttribute("aaa"));
95 assertNull("getAttribute(bbb) failed", s.getAttribute("bbb"));
96 assertEquals("getAttribute(attribute) failed", "value", s
97 .getAttribute("attribute"));
98 assertEquals("getAttribute(KeySize) failed", "1024", s
99 .getAttribute("KeySize"));
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRegionElementImpl.java 64 String fit = getAttribute(FIT_ATTRIBUTE_NAME);
80 return parseRegionLength(getAttribute(LEFT_ATTRIBUTE_NAME), true);
88 int right = parseRegionLength(getAttribute(RIGHT_ATTRIBUTE_NAME), true);
89 int width = parseRegionLength(getAttribute(WIDTH_ATTRIBUTE_NAME), true);
101 return parseRegionLength(getAttribute(TOP_ATTRIBUTE_NAME), false);
109 int bottom = parseRegionLength(getAttribute(BOTTOM_ATTRIBUTE_NAME), false);
110 int height = parseRegionLength(getAttribute(HEIGHT_ATTRIBUTE_NAME), false);
122 return Integer.parseInt(this.getAttribute(Z_INDEX_ATTRIBUTE_NAME));
156 return this.getAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME);
161 final int height = parseRegionLength(getAttribute(HEIGHT_ATTRIBUTE_NAME), false)
    [all...]
SmilRootLayoutElementImpl.java 36 return this.getAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME);
40 String heightString = this.getAttribute(HEIGHT_ATTRIBUTE_NAME);
45 return this.getAttribute(TITLE_ATTRIBUTE_NAME);
49 String widthString = this.getAttribute(WIDTH_ATTRIBUTE_NAME);
SmilMediaElementImpl.java 137 return this.getAttribute("abstract");
141 return this.getAttribute("alt");
145 return this.getAttribute("author");
149 return this.getAttribute("clipBegin");
153 return this.getAttribute("clipEnd");
157 return this.getAttribute("copyright");
161 return this.getAttribute("longdesc");
165 return this.getAttribute("port");
169 return this.getAttribute("readIndex");
173 return this.getAttribute("rtpformat")
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-sequence.js 21 var newKeys = this.getAttribute('keys');
22 var newHintTexts = this.getAttribute('hintTexts');
23 var keyCodes = this.getAttribute('hintCodes') || newKeys;
24 var invert = this.getAttribute('invert');
kb-key-import.js 17 var id = this.getAttribute('importId');
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 29 public static int getAttribute(Theme theme, int attrId) {
39 return getAttribute(theme, android.R.attr.selectableItemBackground);
46 return getAttribute(theme, android.R.attr.activatedBackgroundIndicator);
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 58 img.setAttribute('alt', kittens[i].getAttribute('title'));
72 return "http://farm" + photo.getAttribute("farm") +
73 ".static.flickr.com/" + photo.getAttribute("server") +
74 "/" + photo.getAttribute("id") +
75 "_" + photo.getAttribute("secret") +
  /external/chromium_org/remoting/webapp/
format_iq.js 69 var host = server.getAttribute('host');
70 var udp = server.getAttribute('udp');
71 var tcp = server.getAttribute('tcp');
72 var tcpssl = server.getAttribute('tcpssl');
98 var transport = channel.getAttribute('transport');
99 var version = channel.getAttribute('version');
103 str += ' codec=' + channel.getAttribute('codec');
207 resolution = desc.getAttribute('width') + 'x' +
208 desc.getAttribute('height');
302 var name = candidate.getAttribute('name')
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchConfiguration.java 109 mLaunchAction = config.getAttribute(LaunchConfigDelegate.ATTR_LAUNCH_ACTION,
118 mReuseLastUsedDevice = config.getAttribute(
120 mLastUsedDevice = config.getAttribute(
127 mAvdName = config.getAttribute(LaunchConfigDelegate.ATTR_AVD_NAME, mAvdName);
134 index = config.getAttribute(LaunchConfigDelegate.ATTR_SPEED, index);
142 index = config.getAttribute(LaunchConfigDelegate.ATTR_DELAY, index);
149 mEmulatorCommandLine = config.getAttribute(
156 mWipeData = config.getAttribute(LaunchConfigDelegate.ATTR_WIPE_DATA, mWipeData);
162 mNoBootAnim = config.getAttribute(LaunchConfigDelegate.ATTR_NO_BOOT_ANIM,
175 String value = config.getAttribute(LaunchConfigDelegate.ATTR_TARGET_MODE
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_predicates.js 22 if ((nodes[i].getAttribute &&
23 nodes[i].getAttribute('role') == 'checkbox') ||
39 if ((nodes[i].getAttribute && nodes[i].getAttribute('role') == 'radio') ||
55 if ((nodes[i].getAttribute && nodes[i].getAttribute('role') == 'slider') ||
87 if ((nodes[i].getAttribute && nodes[i].getAttribute('role') == 'button') ||
106 if ((nodes[i].getAttribute &&
107 nodes[i].getAttribute('role') == 'combobox') |
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 86 const TiXmlAttribute* num_cmaps_attr = GetAttribute(cmap_table->at(0),
93 int32_t platform_id = GetAttribute(*it, "platform_id")->IntValue();
94 int32_t encoding_id = GetAttribute(*it, "encoding_id")->IntValue();
99 GetAttribute(*it, "format")->IntValue());
109 sscanf_s(GetAttribute(*jt, "char")->Value(), "%x", &character);
111 sscanf(GetAttribute(*jt, "char")->Value(), "%x", &character);
113 int32_t glyph_id = GetAttribute(*jt, "gid")->IntValue();
  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 86 const TiXmlAttribute* num_cmaps_attr = GetAttribute(cmap_table->at(0),
93 int32_t platform_id = GetAttribute(*it, "platform_id")->IntValue();
94 int32_t encoding_id = GetAttribute(*it, "encoding_id")->IntValue();
99 GetAttribute(*it, "format")->IntValue());
109 sscanf_s(GetAttribute(*jt, "char")->Value(), "%x", &character);
111 sscanf(GetAttribute(*jt, "char")->Value(), "%x", &character);
113 int32_t glyph_id = GetAttribute(*jt, "gid")->IntValue();
  /external/chromium_org/extensions/common/
update_manifest.cc 73 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
132 result->extension_id = GetAttribute(app_node, "appid");
151 if (GetAttribute(updatecheck, "status") == "noupdate") {
156 result->crx_url = GURL(GetAttribute(updatecheck, "codebase"));
165 result->version = GetAttribute(updatecheck, "version");
179 result->browser_min_version = GetAttribute(updatecheck, "prodversionmin");
192 result->package_hash = GetAttribute(updatecheck, "hash");
195 if (base::StringToInt(GetAttribute(updatecheck, "size"), &size)) {
201 result->package_fingerprint = GetAttribute(updatecheck, "fp");
204 result->diff_crx_url = GURL(GetAttribute(updatecheck, "codebasediff"))
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
node_breadcrumb.js 59 cvTag = currentNode.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG);
79 if (child.getAttribute &&
80 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG))) {
98 if (node.getAttribute &&
99 goog.isNull(node.getAttribute(cvox.NodeBreadcrumb.NEEDED_TAG_))) {
125 if (node.getAttribute && node.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG)) {
133 if (child.getAttribute &&
134 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.NEEDED_TAG_))) {
163 return currentNode.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG)
    [all...]
  /cts/suite/cts/utils/
get_csv_report.py 28 #print "parent " + parent.getAttribute("name") + " " + tagName +\
29 # " " + child.getAttribute("name")
61 cases.update(parseSuite(child, parentName + child.getAttribute("name")))
64 className = parentName + child.getAttribute("name")
66 methodName = test.getAttribute("name")
71 result = str(test.getAttribute("result"))
78 summary[sts[0].getAttribute("message")] = getText(sts[0])
83 details[d.getAttribute("message")] = values
101 buildId = buildInfo.getAttribute("buildID")
102 deviceId = buildInfo.getAttribute("deviceID"
    [all...]
  /cts/tools/utils/
rerun.py 26 #print "parent " + parent.getAttribute("name") + " " + tagName +\
27 # " " + child.getAttribute("name")
37 for failure in parseSuite(child, parentName + child.getAttribute("name")):
41 className = parentName + child.getAttribute("name")
43 if test.getAttribute("result") != "pass":
44 failureName = className + "#" + test.getAttribute("name")
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXProgressIndicator.cpp 50 return getAttribute(aria_valuenowAttr).toFloat();
61 return getAttribute(aria_valuemaxAttr).toFloat();
69 return getAttribute(aria_valueminAttr).toFloat();
  /external/chromium_org/chrome/common/extensions/docs/static/js/
platform_chooser.js 13 window.location.assign(button.getAttribute('data-href'));
tabs.js 41 tabGroup = tabs.getAttribute("data-group"),
42 tabValue = e.target.getAttribute("data-value");
61 var tabGroup = tab.getAttribute("data-group");
74 && tabGroupSelectedValue===headers[j].getAttribute("data-value");
  /external/chromium_org/components/component_updater/
update_response.cc 68 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
110 p.name = GetAttribute(package, "name");
116 p.namediff = GetAttribute(package, "namediff");
120 p.fingerprint = GetAttribute(package, "fp");
122 p.hash_sha256 = GetAttribute(package, "hash_sha256");
124 if (base::StringToInt(GetAttribute(package, "size"), &size)) {
128 p.hashdiff_sha256 = GetAttribute(package, "hashdiff_sha256");
130 if (base::StringToInt(GetAttribute(package, "sizediff"), &sizediff)) {
144 result->manifest.version = GetAttribute(manifest, "version");
159 GetAttribute(manifest, "prodversionmin")
    [all...]

Completed in 1112 milliseconds

1 2 3 4 5 6 7 8 91011>>