HomeSort by relevance Sort by last modified time
    Searched full:role (Results 276 - 300 of 1058) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.cc 241 ui::AccessibilityTypes::Role role = state.role; local
242 if (role == ui::AccessibilityTypes::ROLE_MENUITEM ||
243 role == ui::AccessibilityTypes::ROLE_MENUPOPUP) {
  /external/chromium/chrome/common/extensions/docs/
a11y.html 439 The ARIA attribute <em>role</em>
442 It is expressed with the DOM attribute <code>role</code>,
443 with a value set to one of the pre-defined ARIA role strings.
445 the role attribute should not change its value.
449 The <a href="http://www.w3.org/WAI/PF/aria/roles">ARIA Role Specification</a>
450 holds detailed information on how to pick the correct role.
452 set the <code>role</code> attribute of the toolbar's DOM element as follows:
455 <pre>&lt;div role="toolbar"&gt;
460 the current state and properties of controls of a particular role.
462 For example, a control with the role "checkbox
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.html 186 // Set ARIA role indicating the feed element has a tree structure
187 feed.setAttribute("role", "tree");
243 // Set ARIA role role indicating that the title element is a node in the
245 title.setAttribute("role", "treeitem");
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed.js 89 // Set ARIA role indicating the feed element has a tree structure
90 feed.setAttribute('role', 'tree');
146 // Set ARIA role role indicating that the title element is a node in the
148 title.setAttribute('role', 'treeitem');
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothStressTest.java 199 * In this test, the local device plays the role of an A2DP sink, and initiates connections and
232 * In this test, the local device plays the role of an HFP audio gateway, and initiates
265 * In this test, the local device plays the role of a HID host, and initiates connections and
298 * In this test, the local device plays the role of a PANU, and initiates connections and
328 * In this test, the local device plays the role of a NAP which a remote PANU connects and
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_ble.c 275 ** Description This function returns the connection role.
277 ** Returns link role.
282 UINT8 role = HCI_ROLE_UNKNOWN; local
287 role = p_lcb->link_role;
289 return role;
482 void l2cble_conn_comp(UINT16 handle, UINT8 role, BD_ADDR bda, tBLE_ADDR_TYPE type,
485 if (role == HCI_ROLE_MASTER)
  /external/clang/include/clang/Lex/
ModuleMap.h 62 /// \brief Describes the role of a module header.
84 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { }
89 /// \brief The role of this header within the module.
331 /// \param Role The role of the header wrt the module.
333 ModuleHeaderRole Role);
  /external/libsepol/src/
hierarchy.c 50 * find_parent_(type|role|user)
85 /* Orphan type/role/user */ \
100 static find_parent_template(role)
398 /* The role hierarchy is defined as: a child role cannot have more types than it's parent.
417 ERR(a->handle, "Role hierarchy violation, %s exceeds %s",
424 /* The user hierarchy is defined as: a child user cannot have a role that
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmevent.h 190 #define WLC_E_AWDL_ROLE 97 /* AWDL Master/Slave/NE master role event */
211 #define WLC_E_AWDL_SYNC_STATE_CHANGED 116 /* AWDL sync role changed */
332 uint8 role; /* see I/F role */ member in struct:wl_event_data_if
338 #define WLC_E_IF_CHANGE 3 /* bsscfg role change */
340 /* I/F role code in WLC_E_IF event */
424 uint8 aw_role; /* AW role */
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win.cc 315 VARIANT var_id, VARIANT* role) {
319 if (!role)
327 role->vt = VT_BSTR;
328 role->bstrVal = SysAllocString(target->role_name_.c_str());
330 role->vt = VT_I4;
331 role->lVal = target->ia_role_;
403 STDMETHODIMP BrowserAccessibilityWin::role(LONG* role) { function in class:BrowserAccessibilityWin
407 if (!role)
410 *role = ia2_role_
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_acl.c 54 ** Description This function is to save remote device role
59 static void btm_save_remote_device_role(BD_ADDR bd_addr, UINT8 role)
62 if (role == BTM_ROLE_UNDEFINED) return;
92 btm_cb.previous_connected_role[btm_cb.front] = role;
374 /* if the disconnected channel has a pending role switch, clear it now */
553 ** Description This function is called to get the role of the local device
570 /* Get the current role */
580 ** Description This function is called to switch role between master and
581 ** slave. If role is already set it will do nothing. If the
585 ** Returns BTM_SUCCESS if already in specified role
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.cpp 88 // "option" isn't here because it may map to different roles depending on the parent element's role
181 AccessibilityRole role = roleValue(); local
183 return role == ButtonRole || role == PopUpButtonRole || role == ToggleButtonRole;
881 AccessibilityRole role = UnknownRole; local
885 role = roleMap->get(roleName);
886 if (role)
887 return role;
890 return role;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransportchannel_unittest.cc 90 void SetupChannels(int count, cricket::IceRole role) {
95 transport_->SetIceRole(role);
97 (role == cricket::ICEROLE_CONTROLLING) ? 1 : 2);
208 void CheckRole(talk_base::SSLRole role) {
209 if (role == talk_base::SSL_CLIENT) {
329 // Look at the handshake packets to see what role we played.
697 // Initial role for client1 is ACTPASS and client2 is ACTIVE.
714 // Initial role for client1 is ACTPASS and client2 is ACTIVE.
726 // Test that any change in role after the intial setup will result in failure.
742 // role as the initial negotiation will result in success
    [all...]
dtlstransportchannel.cc 186 bool DtlsTransportChannelWrapper::SetSslRole(talk_base::SSLRole role) {
188 if (ssl_role_ != role) {
189 LOG(LS_ERROR) << "SSL Role can't be reversed after the session is setup.";
195 ssl_role_ = role;
199 bool DtlsTransportChannelWrapper::GetSslRole(talk_base::SSLRole* role) const {
200 *role = ssl_role_;
fakesession.h 101 virtual void SetIceRole(IceRole role) { role_ = role; }
122 virtual bool SetSslRole(talk_base::SSLRole role) {
123 ssl_role_ = role;
126 virtual bool GetSslRole(talk_base::SSLRole* role) const {
127 *role = ssl_role_;
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 196 * <input-file role="principal-data">attribset01.xml</input-file>
197 * <input-file role="principal-stylesheet">attribset01.xsl</input-file>
198 * <output-file role="principal" compare="XML">attribset01.out</output-file>
223 String role = element.getAttribute("role"); local
224 if (role.equals("principal-data")) {
226 } else if (role.equals("principal-stylesheet")) {
228 } else if (role.equals("principal")) {
230 } else if (!role.equals("supplemental-stylesheet")
231 && !role.equals("supplemental-data"))
    [all...]
  /external/bluetooth/bluedroid/bta/ag/
bta_ag_act.c 226 /* set role */
227 p_scb->role = BTA_AG_INT;
382 p_scb->role = 0;
422 p_scb->role = 0;
550 /* set role */
551 p_scb->role = BTA_AG_ACP;
  /external/bluetooth/bluedroid/bta/pan/
bta_pan_act.c 337 status = PAN_SetRole(p_data->api_set_role.role, sec,
342 set_role.role = p_data->api_set_role.role;
345 if(p_data->api_set_role.role & PAN_ROLE_NAP_SERVER )
350 if(p_data->api_set_role.role & PAN_ROLE_GN_SERVER )
355 if(p_data->api_set_role.role & PAN_ROLE_CLIENT )
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.cc 76 role_ = src.role;
166 if (parent->role() == blink::WebAXRoleRootWebArea &&
171 if (parent->role() == blink::WebAXRoleWebArea ||
172 parent->role() == blink::WebAXRoleRootWebArea) {
207 DCHECK_EQ(child->role(), blink::WebAXRoleInlineTextBox);
572 // another element that has role=textbox set on it.
browser_accessibility_manager.cc 72 empty_document.role = blink::WebAXRoleRootWebArea;
348 if (src.role != blink::WebAXRoleRootWebArea)
362 // Update all of the node-specific data, like its role, state, name, etc.
415 if (src.role == blink::WebAXRoleRootWebArea &&
425 if (src.role != blink::WebAXRoleRootWebArea &&
426 src.role != blink::WebAXRoleWebArea &&
  /external/chromium_org/media/audio/win/
core_audio_util_win_unittest.cc 69 ERole role; member in struct:media::__anon11356
79 // Create default devices for all flow/role combinations above.
83 CoreAudioUtil::CreateDefaultDevice(data[i].flow, data[i].role);
124 ERole role; member in struct:media::__anon11357
132 // Get name and ID of default devices for all flow/role combinations above.
137 CoreAudioUtil::CreateDefaultDevice(data[i].flow, data[i].role);
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_api.c     [all...]
  /external/bluetooth/bluedroid/bta/sys/
bta_sys.h 139 #define BTA_SYS_ROLE_CHANGE 0x14 /* role change */
150 /* conn callback for role / low power manager*/
153 /* conn callback for role / low power manager*/
bta_sys_conn.c 35 ** Description Called by BTA DM to register role management callbacks
66 ** Description Called by BTA AV to register role change callbacks
96 ** Description Called by BTA AV to register role change callbacks
  /external/bluetooth/bluedroid/stack/pan/
pan_utils.c 335 PAN_TRACE_DEBUG3 ("PAN role %x, active role %d, num_conns %d",
336 pan_cb.role, pan_cb.active_role, pan_cb.num_conns);

Completed in 1050 milliseconds

<<11121314151617181920>>