HomeSort by relevance Sort by last modified time
    Searched refs:role (Results 1 - 25 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libsepol/tests/policies/test-hooks/
module_add_role_allow_trans.conf 5 role role_a_1;
6 role role_a_2;
7 role role_t_1;
8 role role_t_2;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegClosePath.h 30 static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element, SVGPathSegRole role)
32 return adoptRef(new SVGPathSegClosePath(element, role));
36 SVGPathSegClosePath(SVGPathElement* element, SVGPathSegRole role)
37 : SVGPathSegWithContext(element, role)
SVGPathSegCurvetoQuadraticSmoothAbs.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegCurvetoQuadraticSmoothRel.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoAbs.h 31 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y));
37 SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoHorizontalAbs.h 31 static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x)
33 return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x));
37 SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x)
38 : SVGPathSegLinetoHorizontal(element, role, x)
SVGPathSegLinetoHorizontalRel.h 31 static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x)
33 return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x));
37 SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x)
38 : SVGPathSegLinetoHorizontal(element, role, x)
SVGPathSegLinetoRel.h 31 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegLinetoRel(element, role, x, y));
37 SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoVerticalAbs.h 31 static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y)
33 return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y));
37 SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y)
38 : SVGPathSegLinetoVertical(element, role, y)
SVGPathSegLinetoVerticalRel.h 31 static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y)
33 return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y));
37 SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y)
38 : SVGPathSegLinetoVertical(element, role, y)
SVGPathSegMovetoAbs.h 31 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y));
37 SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegMovetoRel.h 31 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegMovetoRel(element, role, x, y));
37 SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegCurvetoCubicAbs.h 31 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
SVGPathSegCurvetoCubicRel.h 31 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicRel(element, role, x, y, x1, y1, x2, y2));
37 SVGPathSegCurvetoCubicRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
38 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
SVGPathSegCurvetoCubicSmoothAbs.h 31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
SVGPathSegCurvetoCubicSmoothRel.h 31 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
33 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, role, x, y, x2, y2));
37 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x2, float y2)
38 : SVGPathSegCurvetoCubicSmooth(element, role, x, y, x2, y2)
SVGPathSegCurvetoQuadraticAbs.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
33 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, role, x, y, x1, y1));
37 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
38 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
SVGPathSegCurvetoQuadraticRel.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
33 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, role, x, y, x1, y1));
37 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1)
38 : SVGPathSegCurvetoQuadratic(element, role, x, y, x1, y1)
SVGPathSegLinetoHorizontal.h 30 SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x)
31 : SVGPathSegWithContext(element, role)
SVGPathSegLinetoVertical.h 30 SVGPathSegLinetoVertical(SVGPathElement* element, SVGPathSegRole role, float y)
31 : SVGPathSegWithContext(element, role)
  /external/libsepol/tests/policies/test-expander/
role-module.conf 5 role role_check_1;
9 role role_check_1 types role_check_1_2_t;
  /external/libsepol/tests/policies/test-deps/
modreq-role-global.conf 4 role role_req_r, user_r;
11 # role role_req_r types a_t;
  /external/guava/guava/src/com/google/common/math/
MathPreconditions.java 32 static int checkPositive(String role, int x) {
34 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
39 static long checkPositive(String role, long x) {
41 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
46 static BigInteger checkPositive(String role, BigInteger x) {
48 throw new IllegalArgumentException(role + " (" + x + ") must be > 0");
53 static int checkNonNegative(String role, int x) {
55 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0");
60 static long checkNonNegative(String role, long x) {
62 throw new IllegalArgumentException(role + " (" + x + ") must be >= 0")
    [all...]
  /external/chromium_org/ui/base/accessibility/
accessible_view_state.cc 10 : role(AccessibilityTypes::ROLE_CLIENT),
  /external/libsepol/include/sepol/
roles.h 5 const char *role, int *response);

Completed in 240 milliseconds

1 2 3 4 5 6 7 8 91011>>