Searched refs:Scope (Results 26 - 50 of 81) sorted by relevance

1234

/openjdk7/langtools/test/tools/javac/6402516/
H A DCheckClass.java47 protected boolean checkLocal(Scope s, String ref) {
H A DCheckMethod.java47 protected boolean checkLocal(Scope s, String ref) {
H A DChecker.java40 * boolean check(Scope s, String ref)
78 protected boolean check(Scope s, String ref) {
109 // override if using default check(Scope,String)
110 boolean checkLocal(Scope s, String ref) {
114 void error(Scope s, String ref, String msg) {
116 System.err.println("Scope: " + (s == null ? null : asList(s.getLocalElements())));
142 Scope s = trees.getScope(path);
H A DCheckIsAccessible.java49 protected boolean check(Scope s, String ref) {
H A DCheckLocalElements.java47 protected boolean checkLocal(Scope s, String ref) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageUpdatableContext.java89 public void setScope(String name, Scope scope) {
93 public Scope getScope(String name) {
H A DMessageContextImpl.java67 public void setScope(String name, Scope scope) {
70 if(scope == Scope.APPLICATION) {
78 public Scope getScope(String name) {
82 return Scope.HANDLER;
84 return Scope.APPLICATION;
120 //New property, default to Scope.HANDLER
128 //new property, default to Scope.HANDLER
167 //new property, default to Scope.HANDLER
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationTypeDocImpl.java32 import com.sun.tools.javac.code.Scope;
94 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
H A DSerializedForm.java32 import com.sun.tools.javac.code.Scope;
158 for (Scope.Entry e = def.members().lookup(names.fromString(SERIALIZABLE_FIELDS)); e.scope != null; e = e.next()) {
179 for (Scope.Entry e = def.members().elems; e != null; e = e.sibling) {
208 for (Scope.Entry e = def.members().lookup(names.fromString(methodName)); e.scope != null; e = e.next()) {
239 for (Scope.Entry e = def.members().lookup(fieldName); e.scope != null; e = e.next()) {
H A DMethodDocImpl.java131 for (Scope.Entry e = c.members().lookup(sym.name); e.scope != null; e = e.next()) {
163 for (Scope.Entry e = c.members().lookup(sym.name); e.scope != null; e = e.next()) {
H A DClassDocImpl.java45 import com.sun.tools.javac.code.Scope;
566 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
591 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
624 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
660 for (Scope.Entry e = tsym.members().elems; e != null;
688 for (Scope.Entry e = tsym.members().elems; e != null; e = e.sibling) {
783 Scope s = compenv.toplevel.namedImportScope;
784 for (Scope.Entry e = s.lookup(names.fromString(className)); e.scope != null; e = e.next()) {
792 for (Scope.Entry e = s.lookup(names.fromString(className)); e.scope != null; e = e.next()) {
893 Scope
[all...]
/openjdk7/langtools/test/tools/javac/scope/7017664/
H A DCompoundScopeTest.java35 import com.sun.tools.javac.code.Scope.*;
101 Scope[] scopes = { createScope(rgen.nextInt(MAX_SYMBOLS_COUNT)),
147 Scope createScope(int nelems) {
148 Scope s = new Scope(symtab.noSymbol);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DGrammarBuilderImpl.java54 import com.sun.xml.internal.rngom.ast.builder.Scope;
71 protected final Scope parent;
81 public GrammarBuilderImpl(DGrammarPattern p, Scope parent, DSchemaBuilderImpl sb) {
H A DDSchemaBuilderImpl.java54 import com.sun.xml.internal.rngom.ast.builder.Scope;
176 public Grammar makeGrammar(Scope parent) {
196 Scope<DPattern, ElementWrapper, LocatorImpl, Annotation, CommentListImpl> scope, LocatorImpl loc, Annotation anno) throws BuildException, IllegalSchemaException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DScope.java42 public final class Scope<BeanT,PropT,ItemT,PackT> { class
51 Scope(UnmarshallingContext context) { method in class:Scope
H A DUnmarshallingContext.java938 private Scope[] scopes = new Scope[16];
946 scopes[i] = new Scope(this);
953 * This method allocates a specified number of fresh {@link Scope} objects.
958 * A new scope will mask the currently active scope. Only one frame of {@link Scope}s
969 Scope[] s = new Scope[Math.max(scopeTop+1,scopes.length*2)];
972 s[i] = new Scope(this);
997 scopes[scopeTop--] = new Scope(this);
1002 * Gets the currently active {@link Scope}
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DSchemaBuilder.java122 Grammar<P,E,L,A,CL> makeGrammar(Scope<P,E,L,A,CL> parent);
161 * See {@link #makeGrammar(Scope)} for more details about
164 P makeExternalRef(Parseable current, String uri, String ns, Scope<P,E,L,A,CL> scope,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactParseable.java58 import com.sun.xml.internal.rngom.ast.builder.Scope;
90 public ParsedPattern parseExternal(String uri, SchemaBuilder sb, Scope scope, String inheritedNs)
H A DCompactSyntax.java71 import com.sun.xml.internal.rngom.ast.builder.Scope;
157 ParsedPattern parse(Scope scope) throws IllegalSchemaException {
462 final public ParsedPattern Input(Scope scope) throws ParseException {
766 final public ParsedPattern TopLevelGrammar(Scope scope) throws ParseException {
909 final public ParsedPattern AnnotatedPrimaryExpr(boolean topLevel, Scope scope, Token[] except) throws ParseException {
937 final public ParsedPattern PrimaryExpr(boolean topLevel, Scope scope, Annotations a, Token[] except) throws ParseException {
1015 final public ParsedPattern Expr(boolean topLevel, Scope scope, Token t, Annotations a) throws ParseException {
1099 final public ParsedPattern UnaryExpr(boolean topLevel, Scope scope, boolean[] hadOccur, Token[] except) throws ParseException {
1154 final public ParsedPattern ElementExpr(Scope scope, Annotations a) throws ParseException {
1168 final public ParsedPattern AttributeExpr(Scope scop
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSAXParseable.java53 import com.sun.xml.internal.rngom.ast.builder.Scope;
117 public ParsedPattern parseExternal(String uri, SchemaBuilder schemaBuilder, Scope s, String inheritedNs)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointMessageContextImpl.java140 public void setScope(String name, MessageContext.Scope scope) {
145 public MessageContext.Scope getScope(String name) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacScope.java39 * Provides an implementation of Scope.
48 public class JavacScope implements com.sun.source.tree.Scope {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnter.java33 import com.sun.tools.javac.code.Scope.*;
185 * which are nested in this scope via Scope.dup().
193 env.dup(tree, env.info.dup(new Scope(tree.sym)));
230 Scope enterScope(Env<AttrContext> env) {
329 c.members_field = new Scope(c);
343 Scope enclScope = enterScope(env);
397 c.members_field = new Scope(c);
H A DMemberEnter.java160 final Scope toScope = env.toplevel.starImportScope;
176 final Scope fromScope = tsym.members();
177 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
205 final Scope fromScope = tsym.members();
206 for (Scope.Entry e = fromScope.elems; e != null; e = e.sibling) {
253 final Scope toScope = env.toplevel.namedImportScope;
269 for (Scope.Entry e = tsym.members().lookup(name);
300 for (Scope.Entry e = tsym.members().lookup(name);
566 Scope enclScope = enter.enterScope(env);
645 Scope enclScop
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java788 ,BuilderHandlerMessageScope.Scope.InputMessageScope
804 ,BuilderHandlerMessageScope.Scope.InputMessageScope
818 ,BuilderHandlerMessageScope.Scope.InputMessageScope
835 ,BuilderHandlerMessageScope.Scope.OutputMessageScope
851 ,BuilderHandlerMessageScope.Scope.OutputMessageScope
865 ,BuilderHandlerMessageScope.Scope.OutputMessageScope
884 ,BuilderHandlerMessageScope.Scope.FaultMessageScope
897 ,BuilderHandlerMessageScope.Scope.FaultMessageScope
910 ,BuilderHandlerMessageScope.Scope.FaultMessageScope

Completed in 81 milliseconds

1234