HomeSort by relevance Sort by last modified time
    Searched refs:hs (Results 1 - 25 of 304) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashSetTest.java 35 HashSet hs; field in class:HashSetTest
87 assertTrue("HashSet does not contain correct elements", hs
105 int size = hs.size();
106 hs.add(new Integer(8));
107 assertTrue("Added element already contained by set", hs.size() == size);
108 hs.add(new Integer(-9));
110 hs.size() == size + 1);
111 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
119 Set orgSet = (Set) hs.clone();
120 hs.clear()
209 HashSet<String> hs = new HashSet<String>(); local
    [all...]
LinkedHashSetTest.java 32 LinkedHashSet hs; field in class:LinkedHashSetTest
97 assertTrue("LinkedHashSet does not contain correct elements", hs
115 int size = hs.size();
116 hs.add(new Integer(8));
117 assertTrue("Added element already contained by set", hs.size() == size);
118 hs.add(new Integer(-9));
120 hs.size() == size + 1);
121 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
129 Set orgSet = (Set) hs.clone();
130 hs.clear()
    [all...]
  /art/runtime/
intern_table_test.cc 32 StackHandleScope<4> hs(soa.Self());
33 Handle<mirror::String> foo_1(hs.NewHandle(intern_table.InternStrong(3, "foo")));
34 Handle<mirror::String> foo_2(hs.NewHandle(intern_table.InternStrong(3, "foo")));
36 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
37 Handle<mirror::String> bar(hs.NewHandle(intern_table.InternStrong(3, "bar")));
54 StackHandleScope<1> hs(soa.Self());
56 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo")));
102 StackHandleScope<5> hs(soa.Self());
104 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello")));
106 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "world")))
    [all...]
class_linker-inl.h 48 StackHandleScope<2> hs(Thread::Current());
49 Handle<mirror::ClassLoader> class_loader(hs.NewHandle((*element_class)->GetClassLoader()));
50 HandleWrapper<mirror::Class> h_element_class(hs.NewHandleWrapper(element_class));
64 StackHandleScope<1> hs(Thread::Current());
65 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
80 StackHandleScope<2> hs(Thread::Current());
81 Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache()));
82 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader()));
96 StackHandleScope<2> hs(Thread::Current());
97 Handle<mirror::DexCache> dex_cache(hs.NewHandle(dex_cache_ptr))
    [all...]
proxy_test.cc 112 StackHandleScope<4> hs(soa.Self());
114 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
116 Handle<mirror::Class> I(hs.NewHandle(
118 Handle<mirror::Class> J(hs.NewHandle(
126 Handle<mirror::Class> proxy_class(hs.NewHandle(
146 StackHandleScope<9> hs(soa.Self());
148 hs.NewHandle(soa.Decode<mirror::ClassLoader*>(jclass_loader)));
150 Handle<mirror::Class> I(hs.NewHandle(
152 Handle<mirror::Class> J(hs.NewHandle(
162 proxyClass = hs.NewHandle(GenerateProxyClass(soa, jclass_loader, "$Proxy1234", interfaces))
    [all...]
  /external/javassist/sample/hotswap/
Test.java 6 HotSwapper hs = new HotSwapper(8000); local
14 hs.reload("HelloWorld", bytes);
22 hs.reload("HelloWorld", bytes);
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.cc 31 HistoryService* hs = local
33 if (hs) {
34 hs->Schedule(HistoryService::PRIORITY_NORMAL,
52 HistoryService* hs = local
54 if (hs) {
55 hs->Schedule(HistoryService::PRIORITY_NORMAL,
72 HistoryService* hs = local
74 if (hs) {
75 hs->Schedule(HistoryService::PRIORITY_NORMAL,
91 HistoryService* hs local
110 HistoryService* hs = local
131 HistoryService* hs = local
145 HistoryService* hs = local
162 HistoryService* hs = local
182 HistoryService* hs = local
202 HistoryService* hs = local
224 HistoryService* hs = local
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java 53 HeaderSet hs = null; local
59 hs = session.setPath(mHeaderSet, false, false);
62 hs = session.setPath(mHeaderSet, true, false);
66 mResponseCode = hs.getResponseCode();
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequestSetPath.java 55 HeaderSet hs = null; local
61 hs = session.setPath(mHeaderSet, false, false);
64 hs = session.setPath(mHeaderSet, true, false);
68 mResponseCode = hs.getResponseCode();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
Constants.java 312 public static void logHeader(HeaderSet hs) {
313 Log.v(TAG, "Dumping HeaderSet " + hs.toString());
316 Log.v(TAG, "COUNT : " + hs.getHeader(HeaderSet.COUNT));
317 Log.v(TAG, "NAME : " + hs.getHeader(HeaderSet.NAME));
318 Log.v(TAG, "TYPE : " + hs.getHeader(HeaderSet.TYPE));
319 Log.v(TAG, "LENGTH : " + hs.getHeader(HeaderSet.LENGTH));
320 Log.v(TAG, "TIME_ISO_8601 : " + hs.getHeader(HeaderSet.TIME_ISO_8601));
321 Log.v(TAG, "TIME_4_BYTE : " + hs.getHeader(HeaderSet.TIME_4_BYTE));
322 Log.v(TAG, "DESCRIPTION : " + hs.getHeader(HeaderSet.DESCRIPTION));
323 Log.v(TAG, "TARGET : " + hs.getHeader(HeaderSet.TARGET))
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
Support_UnmodifiableMapTest.java 113 HashSet<String> hs = new HashSet<String>(); local
114 hs.add("0");
115 hs.add("25");
116 hs.add("99");
119 keySet.containsAll(hs));
120 hs.add("100");
123 !keySet.containsAll(hs));
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 55 HashSet<Integer> hs = new HashSet<Integer>(); local
56 hs.add(new Integer(0));
57 hs.add(new Integer(25));
58 hs.add(new Integer(99));
61 col.containsAll(hs));
62 hs.add(new Integer(100));
65 !col.containsAll(hs));
  /external/chromium_org/chrome/browser/history/
history_tab_helper.cc 42 HistoryService* hs = GetHistoryService(); local
43 if (hs)
48 HistoryService* hs = GetHistoryService(); local
49 if (hs)
50 hs->SetPageTitle(entry.GetVirtualURL(),
152 HistoryService* hs =
154 if (hs) {
157 hs->UpdateWithPageEndTime(tab, entry->GetPageID(), tab->GetURL(),
  /external/chromium_org/net/third_party/nss/ssl/
dtlscon.c 247 if ((message_seq == ss->ssl3.hs.recvMessageSeq)
251 ss->ssl3.hs.msg_type = (SSL3HandshakeType)type;
252 ss->ssl3.hs.msg_len = message_length;
256 dtls_FreeHandshakeMessages(&ss->ssl3.hs.lastMessageFlight);
257 ss->ssl3.hs.recvdHighWater = -1;
262 if (ss->ssl3.hs.rtRetries == 0) {
263 ss->ssl3.hs.rtTimeoutMs = INITIAL_DTLS_TIMEOUT_MS;
266 rv = ssl3_HandleHandshakeMessage(ss, buf.buf, ss->ssl3.hs.msg_len);
272 if (message_seq < ss->ssl3.hs.recvMessageSeq) {
275 if (ss->ssl3.hs.rtTimerCb == NULL)
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZ/
BinTree.java 97 int hs = kBT2HashSize; local
101 hs = historySize - 1;
102 hs |= (hs >> 1);
103 hs |= (hs >> 2);
104 hs |= (hs >> 4);
105 hs |= (hs >> 8);
    [all...]
  /art/compiler/dex/
mir_field_info.cc 46 StackHandleScope<3> hs(soa.Self());
47 Handle<mirror::DexCache> dex_cache(hs.NewHandle(compiler_driver->GetDexCache(mUnit)));
49 hs.NewHandle(compiler_driver->GetClassLoader(soa, mUnit)));
50 Handle<mirror::Class> referrer_class(hs.NewHandle(
93 StackHandleScope<3> hs(soa.Self());
94 Handle<mirror::DexCache> dex_cache(hs.NewHandle(compiler_driver->GetDexCache(mUnit)));
96 hs.NewHandle(compiler_driver->GetClassLoader(soa, mUnit)));
97 Handle<mirror::Class> referrer_class(hs.NewHandle(
  /art/runtime/gc/
heap_test.cc 47 StackHandleScope<1> hs(soa.Self());
49 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;")));
51 StackHandleScope<1> hs(soa.Self());
52 Handle<mirror::ObjectArray<mirror::Object>> array(hs.NewHandle(
  /art/runtime/native/
java_lang_Class.cc 63 StackHandleScope<2> hs(soa.Self());
64 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(soa.Decode<mirror::ClassLoader*>(javaLoader)));
67 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor.c_str(), class_loader)));
88 StackHandleScope<1> hs(soa.Self());
90 return soa.AddLocalReference<jstring>(mirror::Class::ComputeName(hs.NewHandle(c)));
  /art/runtime/mirror/
object_test.cc 61 StackHandleScope<1> hs(self);
63 hs.NewHandle(String::AllocFromModifiedUtf8(self, expected_utf16_length, utf8_in)));
111 StackHandleScope<2> hs(soa.Self());
113 hs.NewHandle(class_linker_->AllocObjectArray<Object>(soa.Self(), 256)));
122 StackHandleScope<2> hs(soa.Self());
124 hs.NewHandle(class_linker_->AllocObjectArray<Object>(soa.Self(), 2)));
149 Handle<mirror::Class> klass(hs.NewHandle(oa->GetClass()));
160 StackHandleScope<1> hs(soa.Self());
162 hs.NewHandle(Array::Alloc<true>(soa.Self(), c, 1, c->GetComponentSize(),
183 StackHandleScope<1> hs(soa.Self())
    [all...]
array.cc 48 StackHandleScope<1> hs(self);
50 hs.NewHandle(
60 StackHandleScope<1> hs(self);
61 Handle<mirror::Class> h_component_type(hs.NewHandle(array_class->GetComponentType()));
96 StackHandleScope<1> hs(self);
98 hs.NewHandle(class_linker->FindArrayClass(self, &element_class_ptr)));
  /external/lzma/CS/7zip/Compress/LZ/
LzBinTree.cs 97 UInt32 hs = kBT2HashSize;
101 hs = historySize - 1;
102 hs |= (hs >> 1);
103 hs |= (hs >> 2);
104 hs |= (hs >> 4);
105 hs |= (hs >> 8);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
onyx.h 68 static void Scale2Ratio(int mode, int *hr, int *hs)
74 *hs = 1;
78 *hs = 5;
82 *hs = 5;
86 *hs = 2;
90 *hs = 1;
  /external/libvpx/libvpx/vp8/common/
onyx.h 68 static void Scale2Ratio(int mode, int *hr, int *hs)
74 *hs = 1;
78 *hs = 5;
82 *hs = 5;
86 *hs = 2;
90 *hs = 1;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyx.h 68 static void Scale2Ratio(int mode, int *hr, int *hs)
74 *hs = 1;
78 *hs = 5;
82 *hs = 5;
86 *hs = 2;
90 *hs = 1;

Completed in 1478 milliseconds

1 2 3 4 5 6 7 8 91011>>