| /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
| CharStream.pm | 6 use Moose::Role; 20 no Moose::Role;
|
| /external/chromium_org/content/test/data/accessibility/ |
| address-expected-win.txt | 2 - role:address not set. http://crbug.com/169568> 4 IA2_ROLE_PARAGRAPH READONLY role:address
|
| address.html | 4 @WIN-ALLOW:role:* 5 @WIN-ALLOW:xml-role*
|
| input-image-button-in-menu.html | 6 <div role="menu"> 7 <input type="image" src="bullet.png" alt="Bullet" value="Image button in element with menu role">
|
| aria-valuemax.html | 10 <div role="progressbar" aria-valuenow="51" aria-valuemin="1" aria-valuemax="101">Progress</div> 11 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div> 12 <div role="slider" aria-valuenow="53" aria-valuemin="3" aria-valuemax="103">Slider</div> 13 <div role="spinbutton" aria-valuenow="54" aria-valuemin="4" aria-valuemax="104">Spin</div>
|
| aria-valuemin.html | 11 <div role="progressbar" aria-valuenow="51" aria-valuemin="1" aria-valuemax="101">Progress</div> 12 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div> 13 <div role="slider" aria-valuenow="53" aria-valuemin="3" aria-valuemax="103">Slider</div> 14 <div role="spinbutton" aria-valuenow="54" aria-valuemin="4" aria-valuemax="104">Spin</div>
|
| dl.html | 11 <div role="definition">Definition</div>
|
| spinbutton.html | 6 <div tabindex=0 role="spinbutton" aria-valuenow="5">Inner text</div>
|
| toolbar.html | 7 <div role="toolbar">A toolbar</div>
|
| wbr-expected-mac.txt | 1 # The spec states that <wbr> should have a role of AXGroup, but that seems
|
| aria-menuitemradio-expected-mac.txt | 1 #<skip - role should be AXMenuItem. http://crbug.com/169578 2 - role description should be 'menu item'. http://crbug.com/169580
|
| aria-progressbar.html | 13 @WIN-DENY:role-name='' 18 <div role="progressbar" aria-valuenow="3" aria-valuemin="1" aria-valuemax="37"></div> 19 <div role="progressbar" aria-valuetext="three" aria-value="3" aria-valuemin="1" aria-valuemax="96"></div>
|
| /external/libsepol/tests/policies/test-deps/ |
| module.conf | 7 role system_r; 13 role system_r types new_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/libsepol/tests/policies/test-expander/ |
| base-base-only.conf | 37 role myrole_r; 38 role myrole_r types mytype_t;
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGPathElement.cpp | 115 PassRefPtr<SVGPathSegClosePath> SVGPathElement::createSVGPathSegClosePath(SVGPathSegRole role) 117 return SVGPathSegClosePath::create(this, role); 120 PassRefPtr<SVGPathSegMovetoAbs> SVGPathElement::createSVGPathSegMovetoAbs(float x, float y, SVGPathSegRole role) 122 return SVGPathSegMovetoAbs::create(this, role, x, y); 125 PassRefPtr<SVGPathSegMovetoRel> SVGPathElement::createSVGPathSegMovetoRel(float x, float y, SVGPathSegRole role) 127 return SVGPathSegMovetoRel::create(this, role, x, y); 130 PassRefPtr<SVGPathSegLinetoAbs> SVGPathElement::createSVGPathSegLinetoAbs(float x, float y, SVGPathSegRole role) 132 return SVGPathSegLinetoAbs::create(this, role, x, y); 135 PassRefPtr<SVGPathSegLinetoRel> SVGPathElement::createSVGPathSegLinetoRel(float x, float y, SVGPathSegRole role) 137 return SVGPathSegLinetoRel::create(this, role, x, y) [all...] |
| SVGPathSegWithContext.h | 29 SVGPathSegWithContext(SVGPathElement* element, SVGPathSegRole role) 30 : m_role(role) 51 SVGPathSegRole role() const { return m_role; } function in class:WebCore::SVGPathSegWithContext 53 void setContextAndRole(SVGPathElement* element, SVGPathSegRole role) 55 m_role = role; 92 SVGPathSegSingleCoordinate(SVGPathElement* element, SVGPathSegRole role, float x, float y) 93 : SVGPathSegWithContext(element, role)
|
| SVGPathElement.h | 64 PassRefPtr<SVGPathSegClosePath> createSVGPathSegClosePath(SVGPathSegRole role = PathSegUndefinedRole); 65 PassRefPtr<SVGPathSegMovetoAbs> createSVGPathSegMovetoAbs(float x, float y, SVGPathSegRole role = PathSegUndefinedRole); 66 PassRefPtr<SVGPathSegMovetoRel> createSVGPathSegMovetoRel(float x, float y, SVGPathSegRole role = PathSegUndefinedRole); 67 PassRefPtr<SVGPathSegLinetoAbs> createSVGPathSegLinetoAbs(float x, float y, SVGPathSegRole role = PathSegUndefinedRole); 68 PassRefPtr<SVGPathSegLinetoRel> createSVGPathSegLinetoRel(float x, float y, SVGPathSegRole role = PathSegUndefinedRole); 69 PassRefPtr<SVGPathSegCurvetoCubicAbs> createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role = PathSegUndefinedRole); 70 PassRefPtr<SVGPathSegCurvetoCubicRel> createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role = PathSegUndefinedRole); 71 PassRefPtr<SVGPathSegCurvetoQuadraticAbs> createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1, SVGPathSegRole role = PathSegUndefinedRole); 72 PassRefPtr<SVGPathSegCurvetoQuadraticRel> createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1, SVGPathSegRole role = PathSegUndefinedRole); 73 PassRefPtr<SVGPathSegArcAbs> createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, SVGPathSegRole role = PathSegUndefinedRole) [all...] |
| /external/libsepol/src/ |
| context.c | 37 role_datum_t *role; local 44 if (!c->role || c->role > p->p_roles.nprim) 53 if (c->role != OBJECT_R_VAL) { 55 * Role must be authorized for the type. 57 role = p->role_val_to_struct[c->role - 1]; 58 if (!ebitmap_get_bit(&role->cache, c->type - 1)) 59 /* role may not be associated with type */ 63 * User must be authorized for the role 156 char *role = strdup(sepol_context_get_role(record)); local [all...] |
| context_record.c | 14 /* Selinux role */ 15 char *role; member in struct:sepol_context 51 /* Role */ 55 return con->role; 61 sepol_context_t * con, const char *role) 64 char *tmp_role = strdup(role); 67 "context role to %s", role); 70 free(con->role); 71 con->role = tmp_role [all...] |
| /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/ |
| commons-codec-1.4.pom | 106 <role>hex</role>
107 <role>md5</role>
108 <role>architecture</role>
113 <roles><role>Representing xml-rpc</role></roles>
117 <roles><role>Representing http-client</role></roles> [all...] |
| /external/chromium_org/content/browser/accessibility/ |
| browser_accessibility_android.cc | 65 role() == blink::WebAXRoleRootWebArea || 66 role() == blink::WebAXRoleWebArea) { 76 if (role() == blink::WebAXRoleHeading && !name.empty()) 95 if (role() == blink::WebAXRoleCheckBox || 96 role() == blink::WebAXRoleRadioButton || 114 return (role() == blink::WebAXRoleGrid || 115 role() == blink::WebAXRoleList || 116 role() == blink::WebAXRoleListBox || 117 role() == blink::WebAXRoleTable || 118 role() == blink::WebAXRoleTree) [all...] |
| /external/antlr/antlr-3.4/runtime/Java/ |
| pom.xml | 31 <role>Project Leader</role> 32 <role>Developer - Java Target</role> 42 <role>Developer - Maven stuff</role> 43 <role>Developer - C Target</role>
|
| /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/ |
| commons-io-1.3.2.pom | 26 <role>Java Developer</role> 35 <role>Java Developer</role> 44 <role>Java Developer</role> 53 <role>Java Developer</role> 61 <role>Java Developer</role> [all...] |
| /external/chromium_org/ui/accessibility/ |
| ax_tree_unittest.cc | 18 root.role = AX_ROLE_ROOT_WEB_AREA; 24 button.role = AX_ROLE_BUTTON; 29 checkbox.role = AX_ROLE_CHECK_BOX; 49 EXPECT_EQ(root.role, root_node->data().role); 55 EXPECT_EQ(button.role, button_node->data().role); 59 EXPECT_EQ(checkbox.role, checkbox_node->data().role); 65 root.role = AX_ROLE_ROOT_WEB_AREA [all...] |