Searched defs:scope (Results 51 - 75 of 108) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp33 ValueStack::ValueStack(IRScope* scope, ValueStack* caller_state) argument
34 : _scope(scope)
38 , _locals(scope->method()->max_locals(), NULL)
39 , _stack(scope->method()->max_stack())
47 : _scope(copy_from->scope())
65 _stack = Values(scope()->method()->max_stack());
80 if (scope() != s->scope()) return false;
165 scope()->set_min_number_of_locks(num_locks);
197 scope()
[all...]
H A Dc1_Compilation.cpp465 // insert a wildcard handler at scope depth 0 so that the
539 tty->print_cr(" added exception scope for pco %d", pco);
593 void Compilation::compile_only_this_scope(outputStream* st, IRScope* scope) { argument
595 scope->method()->holder()->name()->print_symbol_on(st);
597 scope->method()->name()->print_symbol_on(st);
H A Dc1_LIRAssembler.cpp64 Bytecodes::Code code = info->scope()->method()->java_code_at_bci(info->stack()->bci());
406 IRScope* scope = s->scope(); local
408 debug_info->describe_scope(pc_offset, scope->method(), s->bci(), false/*reexecute*/);
H A Dc1_ValueStack.hpp43 IRScope* _scope; // the enclosing scope
70 ValueStack(IRScope* scope, ValueStack* caller_state);
86 IRScope* scope() const { return _scope; } function in class:ValueStack
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.cpp192 AudioObjectPropertyScope scope = isSource ? kAudioDevicePropertyScopeOutput : kAudioDevicePropertyScopeInput; local
194 err = GetAudioObjectPropertySize(deviceID, scope, kAudioDevicePropertyStreamConfiguration, &size);
200 err = GetAudioObjectProperty(deviceID, scope, kAudioDevicePropertyStreamConfiguration, &size, pBufferList);
216 AudioObjectPropertyScope scope = isSource ? kAudioDevicePropertyScopeOutput : kAudioDevicePropertyScopeInput; local
217 OSStatus err = GetAudioObjectProperty(deviceID, scope, kAudioDevicePropertyActualSampleRate, sizeof(result), &result, 1);
221 err = GetAudioObjectProperty(deviceID, scope, kAudioDevicePropertyNominalSampleRate, sizeof(result), &result, 1);
231 OSStatus GetAudioObjectPropertySize(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size) argument
233 const AudioObjectPropertyAddress address = {prop, scope, kAudioObjectPropertyElementMaster};
241 OSStatus GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size, void *data) argument
243 const AudioObjectPropertyAddress address = {prop, scope, kAudioObjectPropertyElementMaste
251 GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data, int checkSize) argument
265 SetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp50 // Natives has no scope
51 if (scope() == NULL) return new StackValueCollection(0);
52 GrowableArray<ScopeValue*>* scv_list = scope()->locals();
166 // Natives has no scope
167 if (scope() == NULL) return new StackValueCollection(0);
168 GrowableArray<ScopeValue*>* scv_list = scope()->expressions();
196 // Natives has no scope
197 if (scope() == NULL) {
215 GrowableArray<MonitorValue*>* monitors = scope()->monitors();
245 // native wrappers have no scope dat
251 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLTableCellElement.java134 * Scope covered by header cells. See the scope attribute definition in
138 public void setScope(String scope); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DTypeInfoSetImpl.java262 public ElementInfoImpl<T,C,F,M> getElementInfo( C scope, QName name ) { argument
263 while(scope!=null) {
264 Map<QName,ElementInfoImpl<T,C,F,M>> m = elementMappings.get(scope);
269 scope = nav.getSuperClass(scope);
279 C scope = null;
281 scope = ei.getScope().getClazz();
283 Map<QName,ElementInfoImpl<T,C,F,M>> m = elementMappings.get(scope);
285 elementMappings.put(scope,m=new LinkedHashMap<QName,ElementInfoImpl<T,C,F,M>>());
298 public Map<QName,? extends ElementInfoImpl<T,C,F,M>> getElementMappings( C scope ) {
[all...]
H A DElementInfoImpl.java77 private final ClassInfo<T,C> scope; field in class:ElementInfoImpl
293 // scope
294 T s = reader().getClassValue(anno,"scope");
296 scope = null;
305 scope = (ClassInfo<T,C>)scp;
386 return scope;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DElementBeanInfoImpl.java70 private final Class scope; field in class:ElementBeanInfoImpl
85 scope = rei.getScope()==null ? JAXBElement.GlobalScope.class : rei.getScope().getClazz();
113 scope = null;
122 Class scope = e.getScope();
123 if(e.isGlobalScope()) scope = null;
125 ElementBeanInfoImpl bi = grammar.getElement(scope,n);
293 return new JAXBElement(tagName,expectedType,scope,o);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DSchemaBuilder.java112 * The parent scope. null if there's no parent scope.
159 * @param scope
160 * The parent scope. null if there's no parent scope.
164 P makeExternalRef(Parseable current, String uri, String ns, Scope<P,E,L,A,CL> scope, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDSchemaBuilderImpl.java196 Scope<DPattern, ElementWrapper, LocatorImpl, Annotation, CommentListImpl> scope, LocatorImpl loc, Annotation anno) throws BuildException, IllegalSchemaException {
195 makeExternalRef(Parseable current, String uri, String ns, Scope<DPattern, ElementWrapper, LocatorImpl, Annotation, CommentListImpl> scope, LocatorImpl loc, Annotation anno) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DComplexTypeImpl.java130 private XSElementDecl scope; field in class:ComplexTypeImpl
131 public XSElementDecl getScope() { return scope; }
132 public void setScope( XSElementDecl _scope ) { this.scope=_scope; }
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTaskImpl.java514 public Type parseType(String expr, TypeElement scope) { argument
525 return attr.attribType(tree, (Symbol.TypeSymbol)scope);
H A DJavacTrees.java244 public boolean isAccessible(Scope scope, TypeElement type) { argument
245 if (scope instanceof JavacScope && type instanceof ClassSymbol) {
246 Env<AttrContext> env = ((JavacScope) scope).env;
252 public boolean isAccessible(Scope scope, Element member, DeclaredType type) { argument
253 if (scope instanceof JavacScope
256 Env<AttrContext> env = ((JavacScope) scope).env;
/openjdk7/jdk/src/share/native/java/net/
H A Dnet_util.c169 jint scope; local
187 scope = getScopeID(him);
188 (*env)->SetIntField(env, iaObj, ia6_scopeidID, scope);
189 if (scope > 0)
245 int scope; local
251 scope = (*env)->GetIntField(env, iaObj, ia6_scopeidID);
253 if (NET_IsEqual(caddrNew, caddrCur) && cmpScopeID(scope, him)) {
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java84 * Write a message to stderr, and dump a scope.
208 * Create a star-import scope and a model therof, from the packages and
251 // log("star-import scope", starImportScope);
353 * Check the contents of a scope
355 void check(Scope scope) { argument
356 // First, check all entries in scope are in map
358 for (Scope.Entry se = scope.elems; se != null; se = se.sibling) {
360 if (sym.owner != se.scope.owner) {
380 // Second, check all entries in map are in scope
383 Scope.Entry se = scope
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DModel.java94 private final Map<NClass/*scope*/,Map<QName,CElementInfo>> elementMappings =
387 public CElementInfo getElementInfo(NClass scope,QName name) { argument
388 Map<QName,CElementInfo> m = elementMappings.get(scope);
396 public Map<QName,CElementInfo> getElementMappings(NClass scope) { argument
397 return elementMappings.get(scope);
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet6AddressImpl.c320 jint scope = 0; local
337 scope = ((struct sockaddr_in6*)iterator->ai_addr)->sin6_scope_id;
340 scope = ((struct sockaddr_in6*)iterator->ai_addr)->sin6_scope_id;
342 if (scope != 0) { /* zero is default value, no need to set */
343 (*env)->SetIntField(env, iaObj, ia6_scopeidID, scope);
562 jint scope,
599 if (scope > 0)
600 him6.sin6_scope_id = scope;
605 if (scope > 0)
606 him6.sin6_scope_id = scope;
560 Java_java_net_Inet6AddressImpl_isReachable0(JNIEnv *env, jobject this, jbyteArray addrArray, jint scope, jint timeout, jbyteArray ifArray, jint ttl, jint if_scope) argument
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DInet6AddressImpl.c245 jint scope = 0; local
259 scope = ((struct sockaddr_in6*)iterator->ai_addr)->sin6_scope_id;
260 if (scope != 0) { /* zero is default value, no need to set */
261 (*env)->SetIntField(env, iaObj, ia6_scopeidID, scope);
447 // Or trying to send a packet on a different scope.
503 jint scope,
541 if (scope > 0) {
542 him6.sin6_scope_id = scope;
501 Java_java_net_Inet6AddressImpl_isReachable0(JNIEnv *env, jobject this, jbyteArray addrArray, jint scope, jint timeout, jbyteArray ifArray, jint ttl, jint if_scope) argument
H A DNetworkInterface_winXP.c499 int scope; local
508 scope = addrs->addr.him6.sin6_scope_id;
509 if (scope != 0) { /* zero is default value, no need to set */
510 (*env)->SetIntField(env, iaObj, ia6_scopeidID, scope);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java618 * Generates a TH tag with style class and scope attributes and some content.
621 * @param scope scope of the tag
625 public static HtmlTree TH(HtmlStyle styleClass, String scope, Content body) { argument
629 htmltree.addAttr(HtmlAttr.SCOPE, nullCheck(scope));
634 * Generates a TH tag with scope attribute and some content.
636 * @param scope scope of the tag
640 public static HtmlTree TH(String scope, Content body) { argument
641 return TH(null, scope, bod
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java31 /** A scope represents an area of visibility in a Java program. The
35 * Scopes can be nested; the next field of a scope points
36 * to its next outer scope. Nested scopes can share their hash tables.
45 /** The number of scopes that share this scope's hash table.
49 /** Next enclosing scope (with whom this scope may share a hashtable)
53 /** The scope's owner.
57 /** A hash table for the scope's entries.
70 /** The number of elements in this scope.
75 /** A list of scopes to be notified if items are to be removed from this scope
229 makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) argument
475 public Scope scope; field in class:Scope.Entry
477 Entry(Symbol sym, Entry shadowed, Entry sibling, Scope scope) argument
514 makeEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) argument
521 ImportEntry(Symbol sym, Entry shadowed, Entry sibling, Scope scope, Scope origin) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java401 Scope scope = sym.members().dupUnshared();
404 addMembers(scope, t);
405 return new FilteredMemberList(scope);
408 private void addMembers(Scope scope, Type type) { argument
411 Scope.Entry overrider = scope.lookup(e.sym.getSimpleName());
412 while (overrider.scope != null) {
423 boolean derived = e.sym.getEnclosingElement() != scope.owner;
428 if (!derived || (!initializer && e.sym.isInheritedIn(scope.owner, types)))
429 scope.enter(e.sym);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_trace.c47 dtrace_scope scope; member in struct:dtrace_info
63 static dtrace_id DTrace_CreateTraceId(const char * file, int line, dtrace_scope scope) { argument
71 info->scope = scope;
102 static dtrace_id DTrace_GetTraceId(const char * file, int line, dtrace_scope scope) { argument
109 if ( info->scope == scope ) {
113 if ( (info->scope == DTRACE_FILE && sameFile) ||
114 (info->scope == DTRACE_LINE && sameFile && sameLine) ) {
121 tid = DTrace_CreateTraceId(file, line, scope);
[all...]

Completed in 102 milliseconds

12345