Searched refs:role (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/external/libsepol/tests/policies/test-hooks/
H A Dmodule_add_role_allow_trans.conf5 role role_a_1;
6 role role_a_2;
7 role role_t_1;
8 role role_t_2;
/external/libsepol/tests/policies/test-expander/
H A Drole-module.conf5 role role_check_1;
9 role role_check_1 types role_check_1_2_t;
/external/libsepol/tests/policies/test-deps/
H A Dmodreq-role-global.conf4 role role_req_r, user_r;
11 # role role_req_r types a_t;
H A Dmodreq-role-opt.conf12 role role_req_r, user_r;
/external/libsepol/tests/policies/test-linker/
H A Dmodule1.conf6 role g_b_role_2;
21 #add role in module test
22 role g_m1_role_1;
23 role g_m1_role_1 types g_m1_type_1;
40 #add type to base role test
41 role g_b_role_2 types g_m1_type_1;
42 role g_b_role_3;
43 role g_b_role_3 types g_m1_type_2;
45 #add type to base optional role test
46 role o1_b_role_
[all...]
H A Dmodule2.conf15 role g_m2_role_1;
16 role g_m2_role_1 types g_m2_type_1;
21 #add types to role declared in base test
23 role g_b_role_3;
24 role g_b_role_3 types g_m2_type_2;
26 #optional base role w/ adds in 2 modules
27 role o4_b_role_1;
28 role o4_b_role_1 types g_m2_type_1;
51 role o1_m2_role_1;
52 role o1_m2_role_
[all...]
/external/guava/guava/src/com/google/common/math/
H A DMathPreconditions.java32 static int checkPositive(String role, int x) { argument
34 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
39 static long checkPositive(String role, long x) { argument
41 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
46 static BigInteger checkPositive(String role, BigInteger x) { argument
48 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
53 static int checkNonNegative(String role, int x) { argument
55 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0");
60 static long checkNonNegative(String role, long x) { argument
62 throw new IllegalArgumentException(role
67 checkNonNegative(String role, BigInteger x) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegClosePath.h30 static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role) argument
32 return adoptRef(new SVGPathSegClosePath(element, role));
36 SVGPathSegClosePath(SVGPathElement* element, SVGPathSegRole role) argument
37 : SVGPathSegWithContext(element, role)
H A DSVGPathSegCurvetoQuadraticSmoothAbs.h31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegCurvetoQuadraticSmoothRel.h31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegLinetoAbs.h31 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y));
37 SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegLinetoHorizontalAbs.h31 static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x) argument
33 return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x));
37 SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x) argument
38 : SVGPathSegLinetoHorizontal(element, role, x)
H A DSVGPathSegLinetoHorizontalRel.h31 static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x) argument
33 return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x));
37 SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x) argument
38 : SVGPathSegLinetoHorizontal(element, role, x)
H A DSVGPathSegLinetoRel.h31 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegLinetoRel(element, role, x, y));
37 SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegLinetoVerticalAbs.h31 static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y) argument
33 return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y));
37 SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y) argument
38 : SVGPathSegLinetoVertical(element, role, y)
H A DSVGPathSegLinetoVerticalRel.h31 static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y) argument
33 return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y));
37 SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y) argument
38 : SVGPathSegLinetoVertical(element, role, y)
H A DSVGPathSegMovetoAbs.h31 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y));
37 SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegMovetoRel.h31 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
33 return adoptRef(new SVGPathSegMovetoRel(element, role, x, y));
37 SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
38 : SVGPathSegSingleCoordinate(element, role, x, y)
H A DSVGPathSegLinetoHorizontal.h30 SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x) argument
31 : SVGPathSegWithContext(element, role)
H A DSVGPathSegLinetoVertical.h30 SVGPathSegLinetoVertical(SVGPathElement* element, SVGPathSegRole role, float y) argument
31 : SVGPathSegWithContext(element, role)
H A DSVGPathSegArcAbs.h31 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
33 return adoptRef(new SVGPathSegArcAbs(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
37 SVGPathSegArcAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
38 : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransportdescription.cc34 bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role) { argument
44 *role = static_cast<ConnectionRole>(CONNECTIONROLE_ACTIVE + i);
51 bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str) { argument
52 switch (role) {
/external/libsepol/include/sepol/
H A Droles.h5 const char *role, int *response);
/external/libsepol/tests/
H A Dtest-linker-roles.c33 * - role in appropriate symtab (global and decl)
38 * - role in base, no modules
39 * - role in base optional, no modules
40 * - role a in base, b in module
41 * - role a in base and module (additive)
42 * - role a in base and 2 module
43 * - role a in base optional, b in module
44 * - role a in base, b in module optional
45 * - role a in base optional, b in module optional
46 * - role
55 only_dominates_self(policydb_t * p, role_datum_t * role) argument
73 role_datum_t *role; local
102 role_datum_t *role; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Daria_util.js27 * A constant indicating no role name.
33 * A mapping from ARIA role names to their message ids.
231 var role = targetElement.getAttribute('role');
234 return (role == 'img' || role == 'progressbar' || hasArialLabel);
240 * with a particular role.
243 * @param {string} roleName The role to check for.
245 * role.
249 if (roleName && node && (node.getAttribute('role')
[all...]

Completed in 347 milliseconds

1234567891011>>