Searched refs:ss (Results 226 - 250 of 267) sorted by relevance

1234567891011

/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2391 for (SignatureStream ss(method->signature()); !ss.at_return_type(); ss.next()) {
2392 sig_bt[i++] = ss.type(); // Collect remaining bits of signature
2393 if (ss.type() == T_LONG || ss.type() == T_DOUBLE)
2598 SignatureStream ss(method->signature());
2599 for( ; !ss.at_return_type(); ss.next()) {
2600 sig_bt[i++] = ss
[all...]
H A Ddeoptimization.cpp1207 for (SignatureStream ss(symbol); !ss.is_done(); ss.next()) {
1208 if (ss.is_object()) {
1209 Symbol* class_name = ss.as_symbol(CHECK);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c926 deflate_state *ss;
934 ss = source->state;
941 zmemcpy(ds, ss, sizeof(deflate_state));
956 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
957 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
958 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
959 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
961 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp381 stringStream* ss() const { return _ss; } function in class:Compile::PrintInliningBuffer
399 return _print_inlining_list->at(_print_inlining).ss();
425 stringStream ss; local
426 CompileTask::print_inlining(&ss, method, inline_level, bci, msg);
427 print_inlining_stream()->print(ss.as_string());
H A DdoCall.cpp58 stringStream ss; local
59 prof_klass->name()->print_symbol_on(&ss);
60 out->print(ss.as_string());
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp2364 for (SignatureStream ss(signature); !ss.is_done(); ss.next()) {
2368 mirror = ss.as_java_mirror(class_loader, protection_domain,
2381 mirror = ss.as_java_mirror(class_loader, protection_domain,
2384 if (ss.at_return_type())
2390 if (ss.is_object() && accessing_klass.not_null()) {
2444 SignatureStream ss(signature, false);
2445 if (!ss.is_done()) {
2446 oop mirror = ss
[all...]
H A DstackMapTableFormat.hpp777 int ss = stack_slots(end_of_locals); local
778 for (int i = 0; i < ss; ++i) {
780 if (i != ss - 1) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DIntrospector.java471 String[] ss = new String[xx.length];
473 ss[i] = (String) annotationToField(xx[i]);
474 return ss;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.hpp221 static int thr_getstate(thread_t tid, int *flag, unsigned *lwp, stack_t *ss, gregset_t rs) argument
222 { return _thr_getstate(tid, flag, lwp, ss, rs); }
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DParserAdapter.java84 private static SecuritySupport ss = new SecuritySupport(); field in class:ParserAdapter
106 String driver = ss.getSystemProperty("org.xml.sax.parser");
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DCookieHandlerTest.java43 ServerSocket ss; field in class:CookieHandlerTest
H A DDNSIdentities.java408 ServerSocket ss; field in class:DNSIdentities
H A DIPAddressDNSIdentities.java408 ServerSocket ss; field in class:IPAddressDNSIdentities
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp443 for (SignatureStream ss(sig); !ss.is_done(); ss.next()) {
444 BasicType bt = ss.type();
446 if (ss.at_return_type()) {
450 buffer.write((char*) ss.raw_bytes(),
451 (int) ss.raw_length());
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp2589 for (SignatureStream ss(m->signature()); !ss.at_return_type(); ss.next()) {
2590 BasicType t = ss.type();
2607 for (SignatureStream ss(m->signature()); !ss.at_return_type(); ) {
2610 BasicType t = (at_this ? T_OBJECT : ss.type());
2638 if (!at_this && ss.is_object()) {
2639 Symbol* name = ss.as_symbol_or_null();
2655 if (!at_this) ss
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DPriorityBlockingQueue.java240 SortedSet<? extends E> ss = (SortedSet<? extends E>) c;
241 this.comparator = (Comparator<? super E>) ss.comparator();
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java335 * @param ss SynthContext indentifying requestor
338 public SynthPainter getPainter(SynthContext ss) { argument
356 * @param ss SynthContext indentifying requestor
359 public boolean isOpaque(SynthContext ss) { argument
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPTransport.java271 ServerSocket ss = server;
274 ss.close();
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java1104 int ss = up ? superscript : -superscript;
1106 while ((ss & 7) > n) {
1107 int newn = ss & 7;
1109 ss >>= 3;
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DSelectorTest.java139 private ServerSocket ss; field in class:SelectorTest.Server
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp339 StateSplit* ss = ins->as_StateSplit(); local
340 if (ss != NULL) return ss->state();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp2811 SizeStruct *ss = (SizeStruct *)param; local
2812 jobject self = ss->window;
2813 jint w = ss->w;
2814 jint h = ss->h;
2825 delete ss;
3388 SizeStruct *ss = new SizeStruct; local
3389 ss->window = env->NewGlobalRef(self);
3390 ss->w = w;
3391 ss->h = h;
3393 AwtToolkit::GetInstance().SyncCall(AwtWindow::_SetMinSize, ss);
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp2063 SignatureStream ss(method->signature());
2069 Symbol* atype = ss.as_symbol(CHECK_NULL);
2090 assert(in_sig_bt[i] == ss.type(), "must match");
2091 ss.next();
2794 SignatureStream ss(method->signature());
2795 for ( ; !ss.at_return_type(); ss.next()) {
2796 BasicType bt = ss.type();
2800 Symbol* s = ss.as_symbol_or_null();
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp1596 SignatureStream ss(method->signature());
1602 Symbol* atype = ss.as_symbol(CHECK_NULL);
1623 assert(in_sig_bt[i] == ss.type(), "must match");
1624 ss.next();
2464 SignatureStream ss(method->signature());
2465 for ( ; !ss.at_return_type(); ss.next()) {
2466 BasicType bt = ss.type();
2470 Symbol* s = ss.as_symbol_or_null(); // symbol is created
H A DsharedRuntime_x86_64.cpp1829 SignatureStream ss(method->signature());
1835 Symbol* atype = ss.as_symbol(CHECK_NULL);
1856 assert(in_sig_bt[i] == ss.type(), "must match");
1857 ss.next();
2724 SignatureStream ss(method->signature());
2725 for ( ; !ss.at_return_type(); ss.next()) {
2726 BasicType bt = ss.type();
2730 Symbol* s = ss.as_symbol_or_null(); // symbol is created

Completed in 168 milliseconds

1234567891011