HomeSort by relevance Sort by last modified time
    Searched refs:SCOPE (Results 26 - 50 of 70) sorted by null

12 3

  /test/framework/harnesses/host_controller/build/
build_provider_pab.py 70 SCOPE: string, URL for which to request access via oauth2.
104 SCOPE = ' '.join(scopes)
130 flow = flow_from_clientsecrets(self.CLIENT_SECRETS, scope=self.SCOPE)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
FieldAccessExpr.java 45 * <br/>In <code>person.name</code> "name" is the name and "person" is the scope.
51 private Expression scope; field in class:FieldAccessExpr
62 public FieldAccessExpr(final Expression scope, final String name) {
63 this(null, scope, new NodeList<>(), new SimpleName(name));
67 public FieldAccessExpr(final Expression scope, final NodeList<Type> typeArguments, final SimpleName name) {
68 this(null, scope, typeArguments, name);
75 public FieldAccessExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name) {
77 setScope(scope);
124 return scope;
145 * Sets the scope
    [all...]
MethodReferenceExpr.java 50 * <br/>In <code>System.out::println;</code> the scope is System.out and the identifier is "println"
52 * <br/>In <code>Bar&lt;String>::&lt;Integer>new</code> the String type argument is on the scope,
59 private Expression scope; field in class:MethodReferenceExpr
72 public MethodReferenceExpr(Expression scope, NodeList<Type> typeArguments, String identifier) {
73 this(null, scope, typeArguments, identifier);
80 public MethodReferenceExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, String identifier) {
82 setScope(scope);
102 return scope;
106 public MethodReferenceExpr setScope(final Expression scope) {
107 assertNotNull(scope);
    [all...]
MethodCallExpr.java 48 * is the scope, String is a type argument, bb is the name and 15 is an argument.
55 private Expression scope; field in class:MethodCallExpr
72 public MethodCallExpr(final Expression scope, final String name) {
73 this(null, scope, new NodeList<>(), new SimpleName(name), new NodeList<>());
76 public MethodCallExpr(final Expression scope, final SimpleName name) {
77 this(null, scope, new NodeList<>(), name, new NodeList<>());
80 public MethodCallExpr(final Expression scope, final String name, final NodeList<Expression> arguments) {
81 this(null, scope, new NodeList<>(), new SimpleName(name), arguments);
84 public MethodCallExpr(final Expression scope, final SimpleName name, final NodeList<Expression> arguments) {
85 this(null, scope, new NodeList<>(), name, arguments)
    [all...]
ObjectCreationExpr.java 52 * <p/>In <code>class B { class C { public void a() { new B().new C(); } } }</code> the scope is <code>new B()</code>
60 private Expression scope; field in class:ObjectCreationExpr
79 * @param scope may be null
83 public ObjectCreationExpr(final Expression scope, final ClassOrInterfaceType type, final NodeList<Expression> arguments) {
84 this(null, scope, type, new NodeList<>(), arguments, null);
88 public ObjectCreationExpr(final Expression scope, final ClassOrInterfaceType type, final NodeList<Type> typeArguments, final NodeList<Expression> arguments, final NodeList<BodyDeclaration<?>> anonymousClassBody) {
89 this(null, scope, type, typeArguments, arguments, anonymousClassBody);
96 public ObjectCreationExpr(TokenRange tokenRange, Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody) {
98 setScope(scope);
136 return Optional.ofNullable(scope);
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ClassOrInterfaceType.java 53 * cases like <code>Map.Entry</code> where Map is the scope of Entry. In <code>java.util.Punchcard</code>, it will not
54 * recognize that java and util are parts of the package name. Instead, it will set util as the scope of Punchcard, as a
55 * ClassOrInterfaceType (which it is not.) In turn, util will have java as its scope, also as a
63 private ClassOrInterfaceType scope; field in class:ClassOrInterfaceType
81 public ClassOrInterfaceType(final ClassOrInterfaceType scope, final String name) {
82 this(null, scope, new SimpleName(name), null, new NodeList<>());
85 public ClassOrInterfaceType(final ClassOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArguments) {
86 this(null, scope, name, typeArguments, new NodeList<>());
90 public ClassOrInterfaceType(final ClassOrInterfaceType scope, final SimpleName name, final NodeList<Type> typeArguments, final NodeList<AnnotationExpr> annotations) {
91 this(null, scope, name, typeArguments, annotations)
    [all...]
  /tools/acloud/internal/lib/
base_cloud_client.py 45 SCOPE = ""
gcompute_client.py 42 """Represents operation scope enum."""
54 SCOPE = " ".join(["https://www.googleapis.com/auth/compute",
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 101 SCOPE='scope';
388 * ^(RULE[block,"rule"] ID["name"] {modifier} ARG["ARG"] RET["RET"] SCOPE["scope"] {block} EOR[EOBAST,"<end-of-rule>"])
397 adaptor.addChild( rule, adaptor.create( SCOPE, "scope" ) );
487 /** Sometimes the scope names will collide with keywords; allow them as
547 : 'scope'^ id ruleActions? ACTION
622 : ( 'scope' ruleActions? ACTION )?
623 ( 'scope' idList SEMI )
    [all...]
ANTLRv3.g 63 SCOPE='scope';
120 : 'scope' id ACTION -> ^('scope' id ACTION)
128 /** Sometimes the scope names will collide with keywords; allow them as
154 scope {
184 : 'scope' ACTION -> ^('scope' ACTION)
185 | 'scope' id (',' id)* ';' -> ^('scope' id+
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
ObservableProperty.java 96 SCOPE(Type.SINGLE_REFERENCE),
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 65 SCOPE='scope';
122 : 'scope' id ACTION -> ^('scope' id ACTION)
130 /** Sometimes the scope names will collide with keywords; allow them as
156 scope {
189 : 'scope' ACTION -> ^('scope' ACTION)
190 | 'scope' id (',' id)* ';' -> ^('scope' id+
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.equinox.preferences_3.5.300.v20150408-1437.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.preferences_3.5.100.v20130422-1538.jar 
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cpplib.h 109 OP(SCOPE, "::") \
    [all...]
  /external/libnl/lib/route/
addr.c 46 * // In case you want to have the address have a scope other than global
47 * // it may be overwritten using rtnl_addr_set_scope(). The scope currently
360 nl_dump(p, "scope %s",
443 diff |= ADDR_DIFF(SCOPE, a->a_scope != b->a_scope);
467 __ADD(ADDR_ATTR_SCOPE, scope)
643 * The scope will default to universe except for loopback addresses in
644 * which case a host scope is used if not specified otherwise.
875 void rtnl_addr_set_scope(struct rtnl_addr *addr, int scope)
877 addr->a_scope = scope;
route_obj.c 21 * scope RT_SCOPE_NOWHERE
224 nl_dump(p, "scope %s ",
360 diff |= ROUTE_DIFF(SCOPE, a->rt_scope != b->rt_scope);
551 __ADD(ROUTE_ATTR_SCOPE, scope)
611 void rtnl_route_set_scope(struct rtnl_route *route, uint8_t scope)
613 route->rt_scope = scope;
901 * Guess scope of a route object.
904 * Guesses the scope of a route object, based on the following rules:
906 * 1) Local route -> local scope
907 * 2) At least one nexthop not directly connected -> universe scope
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 

Completed in 283 milliseconds

12 3