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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/Bindings/
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/chromium/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.html 44 return "http://farm" + photo.getAttribute("farm") +
45 ".static.flickr.com/" + photo.getAttribute("server") +
46 "/" + photo.getAttribute("id") +
47 "_" + photo.getAttribute("secret") +
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 82 s.getAttribute(null);
87 assertNull("getAttribute(aaa) failed", s.getAttribute("aaa"));
96 assertNull("getAttribute(bbb) failed", s.getAttribute("bbb"));
97 assertEquals("getAttribute(attribute) failed", "value", s
98 .getAttribute("attribute"));
99 assertEquals("getAttribute(KeySize) failed", "1024", s
100 .getAttribute("KeySize"));
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRegionElementImpl.java 62 String fit = getAttribute(FIT_ATTRIBUTE_NAME);
78 return parseRegionLength(getAttribute(LEFT_ATTRIBUTE_NAME), true);
86 int right = parseRegionLength(getAttribute(RIGHT_ATTRIBUTE_NAME), true);
87 int width = parseRegionLength(getAttribute(WIDTH_ATTRIBUTE_NAME), true);
99 return parseRegionLength(getAttribute(TOP_ATTRIBUTE_NAME), false);
107 int bottom = parseRegionLength(getAttribute(BOTTOM_ATTRIBUTE_NAME), false);
108 int height = parseRegionLength(getAttribute(HEIGHT_ATTRIBUTE_NAME), false);
120 return Integer.parseInt(this.getAttribute(Z_INDEX_ATTRIBUTE_NAME));
154 return this.getAttribute(BACKGROUND_COLOR_ATTRIBUTE_NAME);
159 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 136 return this.getAttribute("abstract");
140 return this.getAttribute("alt");
144 return this.getAttribute("author");
148 return this.getAttribute("clipBegin");
152 return this.getAttribute("clipEnd");
156 return this.getAttribute("copyright");
160 return this.getAttribute("longdesc");
164 return this.getAttribute("port");
168 return this.getAttribute("readIndex");
172 return this.getAttribute("rtpformat")
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityImageMapLink.cpp 70 const AtomicString& ariaRole = getAttribute(roleAttr);
101 const AtomicString& titleText = getAttribute(titleAttr);
105 const AtomicString& summary = getAttribute(summaryAttr);
112 const AtomicString& ariaLabel = getAttribute(aria_labelAttr);
115 const AtomicString& alt = getAttribute(altAttr);
124 const AtomicString& title = getAttribute(titleAttr);
127 const AtomicString& summary = getAttribute(summaryAttr);
  /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/chrome/common/extensions/
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/tools/metrics/histograms/
extract_histograms.py 120 separator = fieldtrial.getAttribute('separator')
125 ordering = fieldtrial.getAttribute('ordering')
146 (histogram_name, fieldtrial.getAttribute('name')))
182 if enum.getAttribute('type') != 'int':
183 logging.error('Unknown enum type %s' % enum.getAttribute('type'))
187 name = enum.getAttribute('name')
206 int_value = int(int_tag.getAttribute('value'))
216 value_dict['label'] = int_tag.getAttribute('label')
229 name = histogram.getAttribute('name')
256 histograms[name]['units'] = histogram.getAttribute('units'
    [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/html/
HTMLScriptElement.cpp 125 return getAttribute(srcAttr).string();
130 return getAttribute(charsetAttr).string();
135 return getAttribute(typeAttr).string();
140 return getAttribute(languageAttr).string();
145 return getAttribute(forAttr).string();
150 return getAttribute(eventAttr).string();
  /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/llvm/lib/Target/R600/
AMDGPUMachineFunction.cpp 14 Attribute A = Set.getAttribute(AttributeSet::FunctionIndex,
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 92 s.getAttribute(null);
97 if (s.getAttribute("aaa") != null) {
98 fail("getAttribute(aaa) failed");
107 if (s.getAttribute("bbb") != null) {
108 fail("getAttribute(bbb) failed");
110 if (!s.getAttribute("attribute").equals("value")) {
111 fail("getAttribute(attribute) failed");
113 if (!s.getAttribute("KeySize").equals("1024")) {
114 fail("getAttribute(KeySize) failed");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchConfiguration.java 103 mLaunchAction = config.getAttribute(LaunchConfigDelegate.ATTR_LAUNCH_ACTION,
112 mAvdName = config.getAttribute(LaunchConfigDelegate.ATTR_AVD_NAME, mAvdName);
119 index = config.getAttribute(LaunchConfigDelegate.ATTR_SPEED, index);
127 index = config.getAttribute(LaunchConfigDelegate.ATTR_DELAY, index);
134 mEmulatorCommandLine = config.getAttribute(
141 mWipeData = config.getAttribute(LaunchConfigDelegate.ATTR_WIPE_DATA, mWipeData);
147 mNoBootAnim = config.getAttribute(LaunchConfigDelegate.ATTR_NO_BOOT_ANIM,
160 String value = config.getAttribute(LaunchConfigDelegate.ATTR_TARGET_MODE,
167 boolean value = config.getAttribute(LaunchConfigDelegate.ATTR_TARGET_MODE, true);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 167 String geoURL = shape.getAttribute("url").substring(1);
179 String meshIndexName = materialRef.getAttribute("symbol");
180 String materialName = materialRef.getAttribute("target");
206 String lightURL = shape.getAttribute("url");
217 String camURL = shape.getAttribute("url");
228 String name = node.getAttribute("name");
229 String id = node.getAttribute("id");
248 String description = field.getAttribute("sid");
334 String samplerName = typeElem.getAttribute("texture");
350 String id = mat.getAttribute("id");
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMInputCapsule.java 74 String version = currentElem.getAttribute("format_version");
126 String tmpString = currentElem.getAttribute(name);
152 String sizeString = tmpEl.getAttribute("size");
153 String[] strings = parseTokens(tmpEl.getAttribute("data"));
192 String sizeString = tmpEl.getAttribute("size");
227 String tmpString = currentElem.getAttribute(name);
253 String sizeString = tmpEl.getAttribute("size");
254 String[] strings = parseTokens(tmpEl.getAttribute("data"));
291 String sizeString = tmpEl.getAttribute("size");
330 String tmpString = currentElem.getAttribute(name)
    [all...]
  /external/chromium/chrome/common/extensions/
update_manifest.cc 71 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
130 result->extension_id = GetAttribute(app_node, "appid");
149 if (GetAttribute(updatecheck, "status") == "noupdate") {
154 result->crx_url = GURL(GetAttribute(updatecheck, "codebase"));
157 *error_detail += GetAttribute(updatecheck, "codebase");
163 result->version = GetAttribute(updatecheck, "version");
177 result->browser_min_version = GetAttribute(updatecheck, "prodversionmin");
191 result->package_hash = GetAttribute(updatecheck, "hash");
237 if (GetAttribute(root, "protocol") != kExpectedGupdateProtocol) {
247 std::string elapsed_seconds = GetAttribute(first, "elapsed_seconds")
    [all...]

Completed in 1156 milliseconds

1 2 3 4 5 6 7 8 91011>>