Searched refs:getAttribute (Results 1 - 25 of 477) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dfocus_util.js76 if (activeElement.getAttribute('role') == 'textbox') {
80 if (activeElement.getAttribute('readOnly') == 'true') {
93 var activeType = activeElement.getAttribute('type').toLowerCase();
H A Daria_util.js163 if ((parent.getAttribute('aria-hidden') == 'true') &&
164 (parent.getAttribute('chromevoxignoreariahidden') != 'true')) {
185 if (targetNode.getAttribute) {
186 if ((targetNode.getAttribute('aria-hidden') == 'true') &&
187 (targetNode.getAttribute('chromevoxignoreariahidden') != 'true')) {
207 if (node.getAttribute) {
211 (node.getAttribute('chromevoxignoreariahidden') != 'true')) {
212 return node.getAttribute('aria-hidden') == 'false';
231 var role = targetElement.getAttribute('role');
233 (targetElement.getAttribute('ari
[all...]
H A Ddom_predicates.js22 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('rol
[all...]
H A Dtable_util.js42 ((cell.getAttribute('role') == 'rowheader') ||
43 (cell.getAttribute('role') == 'columnheader'))));
75 var span = parseInt(colElement.getAttribute('span'), 10);
87 var span = parseInt(currentColGroup.getAttribute('span'), 10);
/external/apache-http/src/org/apache/http/protocol/
H A DSyncBasicHttpContext.java54 public synchronized Object getAttribute(final String id) { method in class:SyncBasicHttpContext
55 return super.getAttribute(id);
H A DDefaultedHttpContext.java63 public Object getAttribute(final String id) { method in class:DefaultedHttpContext
64 Object obj = this.local.getAttribute(id);
66 return this.defaults.getAttribute(id);
H A DHttpContext.java57 Object getAttribute(String id); method in interface:HttpContext
H A DBasicHttpContext.java65 public Object getAttribute(final String id) { method in class:BasicHttpContext
74 obj = this.parentContext.getAttribute(id);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-key-import.js17 var id = this.getAttribute('importId');
H A Dkb-key-sequence.js21 var newKeys = this.getAttribute('keys');
22 var newHintTexts = this.getAttribute('hintTexts');
23 var keyCodes = this.getAttribute('hintCodes') || newKeys;
24 var invert = this.getAttribute('invert');
/external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
H A Dpopup.js58 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/chrome/common/extensions/docs/static/js/
H A Dplatform_chooser.js13 window.location.assign(button.getAttribute('data-href'));
/external/chromium_org/remoting/webapp/
H A Dformat_iq.js69 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('nam
[all...]
H A Dl10n.js61 var tag = element.getAttribute('i18n-content');
83 substitutions.push(element.getAttribute(value));
85 var name = element.getAttribute(valueName);
97 var titleTag = element.getAttribute('i18n-title');
H A Dwcs_adapter.js78 var type = iqNode.getAttribute('type');
80 var id = iqNode.getAttribute('id');
102 var type = parsed.getAttribute('type');
103 var id = parsed.getAttribute('id');
/external/smack/src/com/kenai/jbosh/
H A DCMSessionParams.java85 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(Attribute
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dnode_breadcrumb.js59 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(cvo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXProgressIndicator.cpp50 return getAttribute(aria_valuenowAttr).toFloat();
61 return getAttribute(aria_valuemaxAttr).toFloat();
69 return getAttribute(aria_valueminAttr).toFloat();
H A DAXImageMapLink.cpp77 const AtomicString& ariaRole = getAttribute(roleAttr);
104 const AtomicString& ariaLabel = getAttribute(aria_labelAttr);
107 const AtomicString& alt = getAttribute(altAttr);
116 const AtomicString& title = getAttribute(titleAttr);
119 const AtomicString& summary = getAttribute(summaryAttr);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dunittestresults.py45 testname = testcase.getAttribute('name')
46 classname = testcase.getAttribute('classname')
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DRuleLabelScope.java88 public Attribute getAttribute(String name) { method in class:RuleLabelScope
91 if ( rulePropertiesScope.getAttribute(name)!=null ) {
92 return rulePropertiesScope.getAttribute(name);
96 return referencedRule.returnScope.getAttribute(name);
/external/deqp/executor/
H A DxeTestResultParser.cpp382 const char* TestResultParser::getAttribute (const char* name) function in class:xe::TestResultParser
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("Descriptio
[all...]
/external/chromium_org/tools/metrics/histograms/
H A Dextract_histograms.py134 separator = histogram_suffixes_node.getAttribute('separator')
139 ordering = histogram_suffixes_node.getAttribute('ordering')
160 histogram_name, histogram_suffixes_node.getAttribute('name'))
176 if enum.getAttribute('type') != 'int':
177 logging.error('Unknown enum type %s', enum.getAttribute('type'))
181 name = enum.getAttribute('name')
200 int_value = int(int_tag.getAttribute('value'))
210 value_dict['label'] = int_tag.getAttribute('label')
241 name = histogram.getAttribute('name')
274 histogram_entry['units'] = histogram.getAttribute('unit
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DClientCookie.java68 String getAttribute(String name); method in interface:ClientCookie
/external/llvm/lib/Target/R600/
H A DAMDGPUMachineFunction.cpp17 Attribute A = Set.getAttribute(AttributeSet::FunctionIndex,

Completed in 386 milliseconds

1234567891011>>