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

1 2 3 4

  /external/javassist/sample/hotswap/
Test.java 6 HotSwapper hs = new HotSwapper(8000); local
14 hs.reload("HelloWorld", bytes);
22 hs.reload("HelloWorld", bytes);
  /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));
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));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
LinkedHashSetTest.java 29 LinkedHashSet hs; field in class:LinkedHashSetTest
86 assertTrue("LinkedHashSet does not contain correct elements", hs
97 int size = hs.size();
98 hs.add(new Integer(8));
99 assertTrue("Added element already contained by set", hs.size() == size);
100 hs.add(new Integer(-9));
102 hs.size() == size + 1);
103 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
111 Set orgSet = (Set) hs.clone();
112 hs.clear()
    [all...]
HashSetTest.java 35 HashSet hs; field in class:HashSetTest
92 assertTrue("HashSet does not contain correct elements", hs
103 int size = hs.size();
104 hs.add(new Integer(8));
105 assertTrue("Added element already contained by set", hs.size() == size);
106 hs.add(new Integer(-9));
108 hs.size() == size + 1);
109 assertTrue("Failed to add element to set", hs.contains(new Integer(-9)));
117 Set orgSet = (Set) hs.clone();
118 hs.clear()
216 HashSet<String> hs = new HashSet<String>(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/history/
history_apitest.cc 94 HistoryService* hs = HistoryServiceFactory::GetForProfile( local
102 hs->AddPage(google_url, google_time, NULL, 0, GURL(), history::RedirectList(),
104 hs->SetPageTitle(google_url, UTF8ToUTF16("Google"));
110 hs->AddPage(picasa_url, picasa_time, NULL, 0, GURL(), history::RedirectList(),
112 hs->SetPageTitle(picasa_url, UTF8ToUTF16("Picasa"));
  /libcore/luni/src/test/java/tests/api/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...]
  /external/chromium/chrome/browser/download/
download_history.cc 31 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
32 if (!hs) {
36 hs->QueryDownloads(&history_consumer_, callback);
39 hs->CleanUpInProgressEntries();
56 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
58 download_item->is_temporary() || !hs) {
65 hs->CreateDownload(info, &history_consumer_, callback);
75 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
76 if (!hs)
79 hs->UpdateDownload(download_item->received_bytes()
110 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
    [all...]
  /external/chromium/chrome/browser/
favicon_service.cc 23 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
24 if (hs)
25 hs->GetFavicon(request, icon_url, icon_type);
39 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
40 if (hs)
41 hs->UpdateFaviconMappingAndFetch(request, page_url, icon_url, icon_type);
60 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
61 if (hs)
62 hs->GetFaviconForURL(request, page_url, icon_types);
70 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS) local
77 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
86 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS); local
    [all...]
possible_url_model.cc 66 HistoryService* hs = local
68 if (hs) {
75 hs->QueryHistory(string16(), options, &consumer_,
  /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...]
  /external/dropbear/
dss.c 168 hash_state hs; local
189 sha1_init(&hs);
190 sha1_process(&hs, data, len);
191 sha1_done(&hs, msghash);
313 hash_state hs; local
319 sha1_init(&hs);
320 sha1_process(&hs, data, len);
321 sha1_done(&hs, msghash);
328 sha512_init(&hs);
329 sha512_process(&hs, "the quick brown fox jumped over the lazy dog", 44)
    [all...]
rsa.c 390 hash_state hs; local
410 sha1_init(&hs);
411 sha1_process(&hs, data, len);
412 sha1_done(&hs, buf_getwriteptr(rsa_EM, SHA1_HASH_SIZE));
random.c 134 hash_state hs; local
146 sha1_init(&hs);
147 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
148 sha1_process(&hs, (void*)readbuf, sizeof(readbuf));
149 sha1_done(&hs, hashpool);
161 hash_state hs; local
171 sha1_init(&hs);
172 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
173 sha1_process(&hs, (void*)&pid, sizeof(pid));
174 sha1_process(&hs, (void*)&tv, sizeof(tv))
181 hash_state hs; local
    [all...]
signkey.c 280 hash_state hs; local
285 md5_init(&hs);
288 md5_process(&hs, keyblob, keybloblen);
290 md5_done(&hs, hash);
315 hash_state hs; local
320 sha1_init(&hs);
323 sha1_process(&hs, keyblob, keybloblen);
325 sha1_done(&hs, hash);
  /external/chromium_org/chrome/browser/history/
history_tab_helper.cc 47 HistoryService* hs = GetHistoryService(); local
48 if (hs)
53 HistoryService* hs = GetHistoryService(); local
54 if (hs)
55 hs->SetPageTitle(entry.GetVirtualURL(),
169 HistoryService* hs = GetHistoryService(); local
170 if (hs)
171 hs->SetPageContents(url, contents);
197 HistoryService* hs =
199 if (hs) {
    [all...]
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper.cc 278 HistoryService* hs = p->GetHistoryService(Profile::IMPLICIT_ACCESS); local
279 if (hs)
280 hs->SetPageContents(url, contents);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.cpp 30 #include "d3d11spikysphere.hlsl.hs.h"
89 ID3D11HullShader* hs; member in struct:d3d11spikysphere
108 ensure(dev->CreateHullShader(g_hs, sizeof(g_hs), NULL, &hs));
212 ctx->HSSetShader(hs, NULL, 0);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.cpp 30 #include "d3d11spikysphere.hlsl.hs.h"
89 ID3D11HullShader* hs; member in struct:d3d11spikysphere
108 ensure(dev->CreateHullShader(g_hs, sizeof(g_hs), NULL, &hs));
212 ctx->HSSetShader(hs, NULL, 0);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 234 HeaderSet hs = new HeaderSet(); local
240 hs.setHeader(HeaderSet.TARGET, mnsTarget);
246 hsConnect = mClientSession.connect(hs);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 244 HeaderSet hs = new HeaderSet(); local
245 hs.setHeader(HeaderSet.COUNT, (long) numShares);
250 mCs.connect(hs);
  /external/aac/libSBRdec/src/
sbr_dec.cpp 739 HANDLE_SBR_DEC hs = &(hSbrChannel->SbrDec); local
742 hs->sbrScaleFactor.ov_lb_scale = 0;
743 hs->sbrScaleFactor.ov_hb_scale = 0;
744 hs->sbrScaleFactor.hb_scale = 0;
750 err = createSbrEnvelopeCalc (&hs->SbrCalculateEnvelope,
767 &hs->AnalysiscQMF,
768 hs->anaQmfStates,
779 if (hs->pSynQmfStates == NULL) {
780 hs->pSynQmfStates = GetRam_sbr_QmfStatesSynthesis(chan);
781 if (hs->pSynQmfStates == NULL
852 HANDLE_SBR_DEC hs = &hSbrChannel->SbrDec; local
    [all...]

Completed in 919 milliseconds

1 2 3 4