HomeSort by relevance Sort by last modified time
    Searched defs:ss (Results 1 - 25 of 334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
boolassign.c 4 int ss; local
5 if ((ss = ss && ss)) {}
x86_64-arguments-darwin.c 13 str ss; variable
16 func(ss);
  /development/tools/emulator/opengl/host/tools/emugen/
strUtils.h 27 std::stringstream ss; local
28 ss << t;
29 return ss.str();
  /libcore/luni/src/test/java/libcore/java/net/
ServerSocketTest.java 25 final ServerSocket ss = new ServerSocket(0); local
26 ss.setReuseAddress(true);
29 ss.setSoTimeout(1234);
34 result[0] = ss.accept();
42 new Socket(ss.getInetAddress(), ss.getLocalPort());
ConcurrentCloseTest.java 51 StuckServer ss = new StuckServer(); local
56 s.connect(ss.getLocalSocketAddress());
61 ss.close();
66 StuckServer ss = new StuckServer(); local
72 s.connect(ss.getLocalSocketAddress());
85 ss.close();
90 final ServerSocket ss = new ServerSocket(0); local
94 ss.accept();
101 s.connect(ss.getLocalSocketAddress());
110 ss.close()
114 final ServerSocket ss = new ServerSocket(0); local
178 final ServerSocket ss = new ServerSocket(0); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannel.cc 36 std::stringstream ss; local
37 ss << "Channel[" << name_ << "|" << READABLE_ABBREV[readable_]
39 return ss.str();
  /external/freetype/src/autofit/
afpic.c 56 FT_UInt ss; local
70 for ( ss = 0 ; ss < AF_SCRIPT_CLASSES_REC_COUNT ; ss++ )
72 container->af_script_classes[ss] =
73 &container->af_script_classes_rec[ss];
78 ss = 0;
80 &container->af_script_classes_rec[ss++] );
83 &container->af_script_classes_rec[ss++] );
86 &container->af_script_classes_rec[ss++] )
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXSource.java 191 StreamSource ss = (StreamSource) source; local
192 InputSource isource = new InputSource(ss.getSystemId());
194 isource.setByteStream(ss.getInputStream());
195 isource.setCharacterStream(ss.getReader());
196 isource.setPublicId(ss.getPublicId());
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 72 SpannableString ss = new SpannableString( local
75 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 30,
77 ss.setSpan(new URLSpan("tel:4155551212"), 31+6, 31+10,
81 t4.setText(ss);
  /bionic/libc/wchar/
wcsxfrm.c 39 char *mbsrc, *s, *ss; local
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 43 IdentityScope ss = null; field in class:SystemScopeTest
51 if (mode) ss = new SystemScope("SystemScope");
53 ss = IdentityScope.getSystemScope();
54 Enumeration e = ss.identities();
55 while (e.hasMoreElements()) ss.removeIdentity((Identity)e.nextElement());
72 //SystemScope ss = new SystemScope("SystemScope");
73 assertEquals(0, ss.size());
74 ss.addIdentity(new IdentityScopeStub("aaa"));
75 assertEquals(1, ss.size());
76 ss.addIdentity(new IdentityScopeStub("bbb"))
176 SystemScope ss = new SystemScope("SystemScope"); local
184 SystemScope ss = new SystemScope("SystemScope"); local
    [all...]
  /external/chromium/testing/gtest/test/
gtest-message_test.cc 156 ::std::stringstream ss; local
157 ss << msg;
158 EXPECT_STREQ("Hello", testing::internal::StringStreamToString(&ss).c_str());
  /external/chromium/third_party/libjingle/source/talk/base/
httprequest.cc 45 HttpMonitor::HttpMonitor(SocketServer *ss) {
47 ss_ = ss;
79 SocketServer * ss = &physical; local
81 ss = new FirewallSocketServer(ss, firewall_);
84 SslSocketFactory factory(ss, client_.agent());
107 HttpMonitor monitor(ss);
110 ss->Wait(timeout_, true);
  /external/gtest/test/
gtest-message_test.cc 147 StrStream ss; local
148 ss << msg;
149 EXPECT_STREQ("Hello", testing::internal::StrStreamToString(&ss).c_str());
  /external/libffi/testsuite/libffi.call/
negint.c 26 signed short ss; local
32 values[1] = &ss;
41 ss = -12;
44 checking (si, ss, sc);
48 printf ("%d vs %d\n", (int)rint, checking (si, ss, sc));
  /external/libffi/testsuite/libffi.special/
unwindtest_ffi_call.cc 24 signed short ss; local
30 values[1] = &ss;
39 ss = -12;
  /external/protobuf/gtest/test/
gtest-message_test.cc 147 StrStream ss; local
148 ss << msg;
149 EXPECT_STREQ("Hello", testing::internal::StrStreamToString(&ss).c_str());
  /external/valgrind/main/auxprogs/
aix5_VKI_info.c 311 stack_t ss; local
315 (int)sizeof(ss.ss_sp));
318 (int)sizeof(ss.ss_size));
321 (int)sizeof(ss.ss_flags));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 56 StuckServer ss = new StuckServer(); local
60 ss.unblockAfterMs(2000);
61 sc.connect(ss.getLocalSocketAddress());
68 ss.close();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PortManager.java 40 ServerSocket ss = new ServerSocket(0); local
41 int port = ss.getLocalPort();
43 ss.close();
Support_UnmodifiableCollectionTest.java 73 SortedSet<Integer> ss = new TreeSet<Integer>(); local
75 ss.add(it.next());
77 it = ss.iterator();
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 34 LocalServerSocket ss; local
38 ss = new LocalServerSocket("android.net.LocalSocketTest");
44 ls1 = ss.accept();
134 ss.close();
  /libcore/support/src/test/java/tests/support/
Support_PortManager.java 40 ServerSocket ss = new ServerSocket(0); local
41 int port = ss.getLocalPort();
43 ss.close();
  /external/astl/tests/
test_sstream.cpp 103 stringstream ss; local
105 ss << "This is: " << 10 << std::endl;
106 EXPECT_TRUE(ss.str() == "This is: 10\n");
  /external/chromium/chrome/browser/sync/
backend_migrator.cc 164 std::stringstream ss; local
166 std::ostream_iterator<syncable::ModelType>(ss, ","));
167 VLOG(1) << "BackendMigrator: Migration complete for: " << ss.str();

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>