Searched defs:scopes (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleScriptContext.java312 return scopes;
315 private static List<Integer> scopes; field in class:SimpleScriptContext
317 scopes = new ArrayList<Integer>(2);
318 scopes.add(ENGINE_SCOPE);
319 scopes.add(GLOBAL_SCOPE);
320 scopes = Collections.unmodifiableList(scopes);
/openjdk7/jdk/test/javax/script/
H A DMyContext.java211 return scopes;
214 private static List<Integer> scopes; field in class:MyContext
216 scopes = new ArrayList<Integer>(3);
217 scopes.add(ENGINE_SCOPE);
218 scopes.add(APP_SCOPE);
219 scopes.add(GLOBAL_SCOPE);
220 scopes = Collections.unmodifiableList(scopes);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java144 private Stack<CallSite> scopes = new Stack<CallSite>(); field in class:LogParser
340 scopes.peek().add(site);
344 scopes.peek().last().setReason(search(atts, "reason"));
400 if (scopes.size() == 0) {
402 scopes.push(site);
405 scopes.push(site);
406 } else if (scopes.peek().getCalls().size() > 2 && m == scopes.peek().last(-2).getMethod()) {
407 scopes.push(scopes
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java109 private Scope[] scopes = new Scope[8]; field in class:DOMStreamReader
113 * Also used as the index to {@link #scopes}.
233 scopes[0] = new Scope(null);
294 Scope scope = scopes[depth];
319 if(scopes.length==++depth) {
320 Scope[] newBuf = new Scope[scopes.length*2];
321 System.arraycopy(scopes,0,newBuf,0,scopes.length);
322 scopes = newBuf;
324 Scope scope = scopes[dept
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java938 private Scope[] scopes = new Scope[16]; field in class:UnmarshallingContext
945 for( int i=0; i<scopes.length; i++ )
946 scopes[i] = new Scope(this);
968 if(scopeTop>=scopes.length) {
969 Scope[] s = new Scope[Math.max(scopeTop+1,scopes.length*2)];
970 System.arraycopy(scopes,0,s,0,scopes.length);
971 for( int i=scopes.length; i<s.length; i++ )
973 scopes = s;
990 scopes[scopeTo
[all...]

Completed in 36 milliseconds