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

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.mm 32 WebAccessibility::Role value;
123 return [self role] == NSAccessibilityUnknownRole;
134 // Returns a string indicating the role of this object.
135 - (NSString*)role {
136 WebAccessibility::Role value =
137 static_cast<WebAccessibility::Role>( browserAccessibility_->role());
145 NSString* role = NSAccessibilityUnknownRole;
149 role = roles[i].string;
154 return role;
    [all...]
browser_accessibility_manager_unittest.cc 63 button.role = WebAccessibility::ROLE_BUTTON;
69 checkbox.role = WebAccessibility::ROLE_CHECKBOX;
75 root.role = WebAccessibility::ROLE_DOCUMENT;
141 tree1_child1.role = WebAccessibility::ROLE_BUTTON;
147 tree1_child2.role = WebAccessibility::ROLE_BUTTON;
153 tree1_child3.role = WebAccessibility::ROLE_BUTTON;
159 tree1_root.role = WebAccessibility::ROLE_DOCUMENT;
176 tree2_child0.role = WebAccessibility::ROLE_BUTTON;
182 tree2_child1.role = WebAccessibility::ROLE_BUTTON;
188 tree2_child2.role = WebAccessibility::ROLE_BUTTON
    [all...]
renderer_accessibility_browsertest.cc 116 EXPECT_EQ(WebAccessibility::ROLE_WEB_AREA, tree.role);
121 EXPECT_EQ(WebAccessibility::ROLE_GROUP, body.role);
129 EXPECT_EQ(WebAccessibility::ROLE_BUTTON, button.role);
142 EXPECT_EQ(WebAccessibility::ROLE_CHECKBOX, checkbox.role);
172 EXPECT_EQ(WebAccessibility::ROLE_TEXT_FIELD, text.role);
203 EXPECT_EQ(WebAccessibility::ROLE_TEXT_FIELD, text.role);
230 EXPECT_EQ(WebAccessibility::ROLE_TABLE, table.role);
232 EXPECT_EQ(WebAccessibility::ROLE_ROW, row.role);
234 EXPECT_EQ(WebAccessibility::ROLE_CELL, cell1.role);
236 EXPECT_EQ(WebAccessibility::ROLE_CELL, cell2.role);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_wps.c 25 int role; /* 0 - not set, 1 - enrollee, 2 - registrar */ member in struct:wps_start_params
44 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Wrong Role type, "
47 "Role must be a string");
52 params->role = 1;
54 params->role = 2;
56 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Uknown role %s", val);
188 if (os_strcmp(key, "Role") == 0)
219 * information about role (enrollee or registrar), authorization method
252 if (params.role == 0) {
253 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Role not specified")
    [all...]
  /external/libsepol/src/
user_record.c 18 /* The role array */
171 sepol_user_t * user, const char *role)
177 if (sepol_user_has_role(user, role))
180 role_cp = strdup(role);
194 ERR(handle, "out of memory, could not add role %s", role);
202 int sepol_user_has_role(const sepol_user_t * user, const char *role)
208 if (!strcmp(user->roles[i], role))
287 void sepol_user_del_role(sepol_user_t * user, const char *role)
292 if (!strcmp(user->roles[i], role)) {
    [all...]
  /external/libsepol/tests/policies/test-deps/
base-metreq.conf 429 role system_r;
430 role system_r types sys_foo_t;
433 role user_r;
434 role user_r types user_t;
437 role sysadm_r;
438 role sysadm_r types sysadm_t;
441 role system_r;
442 role system_r types { system_t sys_foo_t };
455 role role_req_r;
468 # Role Allo
    [all...]
base-notmetreq.conf 424 role system_r;
425 role system_r types sys_foo_t;
428 role user_r;
429 role user_r types user_t;
432 role sysadm_r;
433 role sysadm_r types sysadm_t;
436 role system_r;
437 role system_r types { system_t sys_foo_t };
455 # Role Allow
  /external/libsepol/tests/policies/test-expander/
user-base.conf 419 role user_check_1_1_r;
420 role user_check_1_2_r;
421 role user_check_1_1_r types user_check_1_1_t;
422 role user_check_1_2_r types user_check_1_2_t;
428 role system_r;
429 role user_r;
430 role sysadm_r;
431 role system_r types system_t;
432 role user_r types user_t;
433 role sysadm_r types system_t
    [all...]
role-base.conf 416 # Role mapping test
418 role role_check_1;
419 role role_check_1 types role_check_1_1_t;
425 role system_r;
426 role user_r;
427 role sysadm_r;
428 role system_r types system_t;
429 role user_r types user_t;
430 role sysadm_r types system_t;
  /external/chromium_org/content/browser/accessibility/
accessibility_win_browsertest.cc 75 // IAccessible node and return true if we find one with the given role
86 base::win::ScopedVariant role; local
87 node->get_accRole(childid_self, role.Receive());
88 ASSERT_EQ(VT_I4, role.type());
94 printf("role=%d name=%s\n", V_I4(&role), WideToUTF8(name).c_str());
96 if (expected_role == V_I4(&role) && expected_name == name) {
191 // This constructor can be used if the IA2 role will be the same as the MSAA
192 // role.
209 // Check that the name and role of the given IAccessible instance and it
322 base::win::ScopedVariant role; local
347 base::win::ScopedVariant role; local
    [all...]
cross_platform_accessibility_browsertest.cc 155 EXPECT_EQ(blink::WebAXRoleRootWebArea, tree.role);
160 EXPECT_EQ(blink::WebAXRoleGroup, body.role);
170 EXPECT_EQ(blink::WebAXRoleButton, button.role);
186 EXPECT_EQ(blink::WebAXRoleCheckBox, checkbox.role);
214 EXPECT_EQ(blink::WebAXRoleTextField, text.role);
245 EXPECT_EQ(blink::WebAXRoleTextField, text.role);
272 EXPECT_EQ(blink::WebAXRoleTable, table.role);
274 EXPECT_EQ(blink::WebAXRoleRow, row.role);
276 EXPECT_EQ(blink::WebAXRoleCell, cell1.role);
278 EXPECT_EQ(blink::WebAXRoleCell, cell2.role);
    [all...]
  /external/bluetooth/bluedroid/bta/pan/
bta_pan_api.c 109 void BTA_PanSetRole(tBTA_PAN_ROLE role, tBTA_PAN_ROLE_INFO *p_user_info, tBTA_PAN_ROLE_INFO *p_gn_info,
118 p_buf->role = role;
120 if(p_user_info && (role & BTA_PAN_ROLE_PANU))
132 if(p_gn_info && (role & BTA_PAN_ROLE_GN))
145 if(p_nap_info && (role & BTA_PAN_ROLE_NAP))
  /external/bluetooth/bluedroid/stack/include/
pan_api.h 48 #define PAN_ROLE_CLIENT 0x01 /* PANU role */
49 #define PAN_ROLE_GN_SERVER 0x02 /* GN role */
50 #define PAN_ROLE_NAP_SERVER 0x04 /* NAP role */
210 char *user_service_name; /* Service name for PANU role */
211 char *gn_service_name; /* Service name for GN role */
212 char *nap_service_name; /* Service name for NAP role */
231 ** should set the PAN role explicitly.
261 ** profile role. This should be called after PAN_Register.
262 ** This can be called any time to change the PAN role
264 ** Parameters: role - is bit map of roles to be activ
    [all...]
  /external/chromium_org/media/audio/win/
audio_device_listener_win.cc 24 static std::string RoleToString(ERole role) {
25 switch (role) {
128 EDataFlow flow, ERole role, LPCWSTR new_default_device_id) {
130 if (flow != eConsole && role != eRender)
143 << ", role: " << RoleToString(role);
  /external/libsepol/include/sepol/policydb/
constraint.h 10 * beyond the type-based rules in `te' or the role-based
13 * identity or role unless it is in a privileged type.
39 #define CEXPR_ROLE 2 /* role */
  /hardware/libhardware/include/hardware/
bt_pan.h 59 * enable the pan service by specified role. The result state of
65 * get current pan local role
69 * start bluetooth pan connection to the remote device by specified pan role. The result state will be
  /packages/apps/Email/tests/src/com/android/email/
MessagingControllerUnitTests.java 53 * MockFolder allows setting and retrieving role & name
59 public MyMockFolder(FolderRole role, String name) {
60 mRole = role;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/
popup.html 10 <div role="main">
  /external/chromium_org/content/test/data/accessibility/
contenteditable-descendants-expected-win.txt 22 ROLE_SYSTEM_TEXT name='Keep the role, just change the state' IA2_STATE_EDITABLE
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGTransformListPropertyTearOff.h 36 static PassRefPtr<SVGListPropertyTearOff<SVGTransformList> > create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, SVGTransformList& values, ListWrapperCache& wrappers)
39 return adoptRef(new SVGTransformListPropertyTearOff(animatedProperty, role, values, wrappers));
74 SVGTransformListPropertyTearOff(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, SVGTransformList& values, ListWrapperCache& wrappers)
75 : SVGListPropertyTearOff<SVGTransformList>(animatedProperty, role, values, wrappers)
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescription.cc 34 bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role) {
44 *role = static_cast<ConnectionRole>(CONNECTIONROLE_ACTIVE + i);
51 bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str) {
52 switch (role) {
  /external/chromium_org/ui/base/
README.chromium 1 The best description for the role of this component I can come up with is:
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 27 QVariant EventListModel::data(const QModelIndex &index, int role) const
32 if (role == Qt::DisplayRole)
48 int role) const
50 if (role != Qt::DisplayRole)
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava-parent/14.0/
guava-parent-14.0.pom 49 <role>owner</role>
50 <role>developer</role>
  /prebuilts/tools/common/m2/repository/com/google/guava/guava-parent/13.0.1/
guava-parent-13.0.1.pom 49 <role>owner</role>
50 <role>developer</role>

Completed in 1049 milliseconds

1 2 3 45 6 7 8 91011>>