| /external/chromium_org/content/browser/indexed_db/ |
| indexed_db_factory.cc | 36 IndexedDBDatabase* database = it->second; 41 DCHECK(range.first != range.second); 42 for (OriginDBMap::iterator it2 = range.first; it2 != range.second; ++it2) { 43 if (it2->second == database) { 54 DCHECK(!database_map_.find(identifier)->second->backing_store()); 70 it->second->active_blob_registry()->ForceShutdown(); 108 it->second->close_timer()->Stop(); 120 ptr = it->second.get(); 129 while (range.first != range.second) { 130 IndexedDBDatabase* db = range.first->second; [all...] |
| indexed_db_index_writer.cc | 42 for (size_t i = 0; i < index_keys_.second.size(); ++i) { 48 (index_keys_.second)[i], 75 for (size_t i = 0; i < index_keys_.second.size(); ++i) { 81 index_keys_.second[i], 142 const IndexedDBIndexMetadata& index = found->second; 148 keys.second.push_back(primary_key);
|
| /external/chromium_org/mojo/system/ |
| channel.cc | 89 if (it->second.state == EndpointInfo::STATE_NORMAL) { 90 it->second.message_pipe->OnRemove(it->second.port); 93 DCHECK(!it->second.message_pipe); 139 it->second.message_pipe.get() == message_pipe.get() && 140 it->second.port == port) { 141 DCHECK_EQ(it->second.state, EndpointInfo::STATE_NORMAL); 164 endpoint_info = it->second; 236 switch (it->second.state) { 238 it->second.state = EndpointInfo::STATE_WAIT_REMOTE_REMOVE_ACK [all...] |
| /external/easymock/src/org/easymock/ |
| EasyMock.java | 700 * @param second
701 * placeholder for the second expectation.
704 public static boolean and(boolean first, boolean second) {
714 * @param second
715 * placeholder for the second expectation.
718 public static byte and(byte first, byte second) {
728 * @param second
729 * placeholder for the second expectation.
732 public static char and(char first, char second) {
742 * @param second
[all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
| SignatureSpi.java | 332 byte[] second = makeUnsigned(s); 335 if (first.length > second.length) 341 res = new byte[second.length * 2]; 345 System.arraycopy(second, 0, res, res.length - second.length, second.length); 374 byte[] second = new byte[encoding.length / 2]; 377 System.arraycopy(encoding, first.length, second, 0, second.length); 380 sig[1] = new BigInteger(1, second); [all...] |
| /external/chromium_org/chromeos/dbus/ |
| nfc_client_helpers.cc | 53 ObjectPropertyPair pair = iter->second; 66 return GetObjectPropertyPair(object_path).second; 134 ObjectPropertyPair pair = iter->second; 169 return iter->second; 178 NfcPropertySet* properties = pair.second; 188 DBusObjectMap* object_map = iter->second; 212 DBusObjectMap* object_map = iter->second; 223 return iter->second; 230 DBusObjectMap* object_map = iter->second; 243 DBusObjectMap* object_map = iter->second; [all...] |
| /external/chromium_org/ppapi/shared_impl/ |
| var_tracker.cc | 53 return result->second.var.get(); 75 VarInfo& info = found->second; 106 VarInfo& info = found->second; 150 DCHECK(was_inserted.second); 165 return found->second.ref_count; 175 return found->second.track_with_no_reference_count; 246 var_vector.push_back(iter->second.var->GetPPVar()); 261 if (iter->second.ref_count != 0 || 262 iter->second.track_with_no_reference_count != 0) 264 iter->second.var->ResetVarID() [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/events/ |
| EventListenerMap.cpp | 82 const EventListenerVector* vector = m_entries[i].second.get(); 127 return addListenerToVector(m_entries[i].second.get(), listener, useCapture); 131 return addListenerToVector(m_entries.last().second.get(), listener, useCapture); 150 bool wasRemoved = removeListenerFromVector(m_entries[i].second.get(), listener, useCapture, indexOfRemovedListener); 151 if (m_entries[i].second->isEmpty()) 166 return m_entries[i].second.get(); 193 removeFirstListenerCreatedFromMarkup(m_entries[i].second.get()); 194 if (m_entries[i].second->isEmpty()) 216 copyListenersNotCreatedFromMarkupToTarget(m_entries[i].first, m_entries[i].second.get(), target); 263 EventListenerVector& listeners = *m_map->m_entries[m_entryIndex].second; [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGTransformDistance.cpp | 117 RefPtr<SVGTransform> second = passSecond; local 118 ASSERT(first->transformType() == second->transformType()); 128 transform->setRotate(first->angle() + second->angle() * repeatCount, first->rotationCenter().x() + second->rotationCenter().x() * repeatCount, first->rotationCenter().y() + second->rotationCenter().y() * repeatCount); 132 float dx = first->translate().x() + second->translate().x() * repeatCount; 133 float dy = first->translate().y() + second->translate().y() * repeatCount; 138 FloatSize scale = second->scale(); 145 transform->setSkewX(first->angle() + second->angle() * repeatCount); 148 transform->setSkewY(first->angle() + second->angle() * repeatCount) [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/base/ |
| socketpool.cc | 50 delete it->second; 54 delete it->second; 64 it->second->SignalEvent.disconnect(this); 71 return active_.front().second; 78 return active_.front().second; 86 if (stream == it->second) { 91 pool_->ReturnConnectedStream(it->second); 113 if (stream == it->second) { 116 it->second->SignalEvent.disconnect(this); 118 pool_->ReturnConnectedStream(it->second); [all...] |
| /external/chromium_org/third_party/webrtc/base/ |
| socketpool.cc | 33 delete it->second; 37 delete it->second; 47 it->second->SignalEvent.disconnect(this); 54 return active_.front().second; 61 return active_.front().second; 69 if (stream == it->second) { 74 pool_->ReturnConnectedStream(it->second); 96 if (stream == it->second) { 99 it->second->SignalEvent.disconnect(this); 101 pool_->ReturnConnectedStream(it->second); [all...] |
| /external/lldb/source/Target/ |
| UnixSignals.cpp | 128 return pos->second.m_name.GetCString (); 147 if ((const_name == pos->second.m_name) || (const_name == pos->second.m_short_name)) 197 const Signal &signal = pos->second; 210 return pos->second.m_suppress; 220 pos->second.m_suppress = value; 240 return pos->second.m_stop; 250 pos->second.m_stop = value; 270 return pos->second.m_notify; 280 pos->second.m_notify = value [all...] |
| /external/stlport/test/unit/ |
| equal_test.cpp | 46 CPPUNIT_ASSERT( (range.second - numbers) == 8 ); 58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 ); 59 for (; range.first != range.second; ++range.first) 63 CPPUNIT_ASSERT( range.first == range.second ); 97 CPPUNIT_ASSERT( (range.second - chars) == 22 ); 98 for (; range.first != range.second; ++range.first) 102 CPPUNIT_ASSERT( (range.second - range.first) == 1 ); 122 CPPUNIT_ASSERT( p.first != p.second ); 124 CPPUNIT_ASSERT( p.second != tv.end() ); 126 CPPUNIT_ASSERT( *p.second == 6 ) [all...] |
| /ndk/tests/device/test-gnustl-full/unit/ |
| equal_test.cpp | 46 CPPUNIT_ASSERT( (range.second - numbers) == 8 ); 58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 ); 59 for (; range.first != range.second; ++range.first) 63 CPPUNIT_ASSERT( range.first == range.second ); 97 CPPUNIT_ASSERT( (range.second - chars) == 22 ); 98 for (; range.first != range.second; ++range.first) 102 CPPUNIT_ASSERT( (range.second - range.first) == 1 ); 122 CPPUNIT_ASSERT( p.first != p.second ); 124 CPPUNIT_ASSERT( p.second != tv.end() ); 126 CPPUNIT_ASSERT( *p.second == 6 ) [all...] |
| /ndk/tests/device/test-stlport/unit/ |
| equal_test.cpp | 46 CPPUNIT_ASSERT( (range.second - numbers) == 8 ); 58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 ); 59 for (; range.first != range.second; ++range.first) 63 CPPUNIT_ASSERT( range.first == range.second ); 97 CPPUNIT_ASSERT( (range.second - chars) == 22 ); 98 for (; range.first != range.second; ++range.first) 102 CPPUNIT_ASSERT( (range.second - range.first) == 1 ); 122 CPPUNIT_ASSERT( p.first != p.second ); 124 CPPUNIT_ASSERT( p.second != tv.end() ); 126 CPPUNIT_ASSERT( *p.second == 6 ) [all...] |
| /external/chromium_org/extensions/browser/ |
| event_listener_map.cc | 110 return it != listeners_.end() && !it->second.empty(); 120 for (ListenerList::iterator it2 = it->second.begin(); 121 it2 != it->second.end(); it2++) { 132 for (ListenerList::iterator it2 = it->second.begin(); 133 it2 != it->second.end(); it2++) { 145 for (ListenerList::iterator it2 = it->second.begin(); 146 it2 != it->second.end(); it2++) { 159 for (ListenerList::iterator it2 = it->second.begin(); 160 it2 != it->second.end();) { 163 it2 = it->second.erase(it2) [all...] |
| /external/chromium_org/third_party/flot/ |
| jquery.flot.selection.min.js | 65 true as the second parameter. If you are using multiple axes, you can 79 */(function(e){function t(t){function s(e){n.active&&(h(e),t.getPlaceholder().trigger("plotselecting",[a()]))}function o(t){if(t.which!=1)return;document.body.focus(),document.onselectstart!==undefined&&r.onselectstart==null&&(r.onselectstart=document.onselectstart,document.onselectstart=function(){return!1}),document.ondrag!==undefined&&r.ondrag==null&&(r.ondrag=document.ondrag,document.ondrag=function(){return!1}),c(n.first,t),n.active=!0,i=function(e){u(e)},e(document).one("mouseup",i)}function u(e){return i=null,document.onselectstart!==undefined&&(document.onselectstart=r.onselectstart),document.ondrag!==undefined&&(document.ondrag=r.ondrag),n.active=!1,h(e),m()?f():(t.getPlaceholder().trigger("plotunselected",[]),t.getPlaceholder().trigger("plotselecting",[null])),!1}function a(){if(!m())return null;if(!n.show)return null;var r={},i=n.first,s=n.second;return e.each(t.getAxes(),function(e,t){if(t.used){var n=t.c2p(i[t.direction]),o=t.c2p(s[t.direction]);r[e]={from:Math.min(n,o),to:Math.max(n,o)}}}),r}function f(){var e=a();t.getPlaceholder().trigger("plotselected",[e]),e.xaxis&&e.yaxis&&t.getPlaceholder().trigger("selected",[{x1:e.xaxis.from,y1:e.yaxis.from,x2:e.xaxis.to,y2:e.yaxis.to}])}function l(e,t,n){return t<e?e:t>n?n:t}function c(e,r){var i=t.getOptions(),s=t.getPlaceholder().offset(),o=t.getPlotOffset();e.x=l(0,r.pageX-s.left-o.left,t.width()),e.y=l(0,r.pageY-s.top-o.top,t.height()),i.selection.mode=="y"&&(e.x=e==n.first?0:t.width()),i.selection.mode=="x"&&(e.y=e==n.first?0:t.height())}function h(e){if(e.pageX==null)return;c(n.second,e),m()?(n.show=!0,t.triggerRedrawOverlay()):p(!0)}function p(e){n.show&&(n.show=!1,t.triggerRedrawOverlay(),e||t.getPlaceholder().trigger("plotunselected",[]))}function d(e,n){var r,i,s,o,u=t.getAxes();for(var a in u){r=u[a];if(r.direction==n){o=n+r.n+"axis",!e[o]&&r.n==1&&(o=n+"axis");if(e[o]){i=e[o].from,s=e[o].to;break}}}e[o]||(r=n=="x"?t.getXAxes()[0]:t.getYAxes()[0],i=e[n+"1"],s=e[n+"2"]);if(i!=null&&s!=null&&i>s){var f=i;i=s,s=f}return{from:i,to:s,axis:r}}function v(e,r){var i,s,o=t.getOptions();o.selection.mode=="y"?(n.first.x=0,n.second.x=t.width()):(s=d(e,"x"),n.first.x=s.axis.p2c(s.from),n.second.x=s.axis.p2c(s.to)),o.selection.mode=="x"?(n.first.y=0,n.second.y=t.height()):(s=d(e,"y"),n.first.y=s.axis.p2c(s.from),n.second.y=s.axis.p2c(s.to)),n.show=!0,t.triggerRedrawOverlay(),!r&&m()&&f()}function m(){var e=t.getOptions().selection.minSize;return Math.abs(n.second.x-n.first.x)>=e&&Math.abs(n.second.y-n.first.y)>=e}var n={first:{x:-1,y:-1},second:{x:-1,y:-1},show:!1,active:!1},r={},i=null;t.clearSelection=p,t.setSelection=v,t.getSelection=a,t. (…) [all...] |
| /system/extras/memtrack/ |
| memtrack.cpp | 172 it->second.pids.clear(); 211 if (it->second.pids.size() > all_[it->first].max_num_pids) { 212 all_[it->first].max_num_pids = it->second.pids.size(); 215 all_[it->first].pids = it->second.pids; 217 if (it->second.pss_kb > all_[it->first].max_pss_kb) { 218 all_[it->first].max_pss_kb = it->second.pss_kb; 222 it->second.pss_kb < all_[it->first].min_pss_kb) { 223 all_[it->first].min_pss_kb = it->second.pss_kb; 226 all_[it->first].last_pss_kb = it->second.pss_kb; 228 computeAvg(&all_[it->first].avg_pss_kb, it->second.pss_kb [all...] |
| /development/ndk/samples/two-libs/jni/ |
| Android.mk | 32 # second lib, which will depend on and include the first one 36 LOCAL_MODULE := libtwolib-second 37 LOCAL_SRC_FILES := second.c
|
| /external/chromium_org/base/containers/ |
| small_map_unittest.cc | 41 EXPECT_EQ(iter->second, 5); 45 EXPECT_EQ((*iter).second, 2); 146 if (it_in_b == b.end() || it_in_b->second != it->second) 214 EXPECT_TRUE(ret.second); 217 EXPECT_EQ(ret.first->second, 100*i); 222 EXPECT_FALSE(ret.second); 225 EXPECT_EQ(ret.first->second, 100*i); 232 EXPECT_EQ(it->second, j * 100); 255 EXPECT_EQ(sm.find(i)->second, 100*i) [all...] |
| /external/chromium_org/cc/debug/ |
| picture_record_benchmark.cc | 67 base::TimeDelta total_time = it->second.first; 68 unsigned total_count = it->second.second; 76 result->SetInteger("height", dimensions.second); 103 int height = dimensions.second; 120 total_time.second++;
|
| /external/chromium_org/chrome/browser/ui/app_list/search/ |
| history_data_store_unittest.cc | 139 EXPECT_EQ("p:primary;s:secondary1,secondary2", GetDataContent(it->second)); 157 EXPECT_EQ("primary", it->second.primary); 158 EXPECT_EQ(0u, it->second.secondary.size()); 159 EXPECT_EQ(now, it->second.update_time); 170 EXPECT_EQ("p:primary;s:s1,s2", GetDataContent(it->second)); 171 EXPECT_EQ(now, it->second.update_time);
|
| /external/chromium_org/components/policy/core/common/ |
| preg_parser_win_unittest.cc | 33 testing::AssertionResult result = RegistryDictEquals(*iter_key_a->second, 34 *iter_key_b->second); 44 !base::Value::Equals(iter_value_a->second, iter_value_b->second)) { 47 << iter_value_a->first << "=" << *iter_value_a->second 48 << " vs. " << iter_value_b->first << "=" << *iter_value_b->second;
|
| /external/chromium_org/content/browser/android/java/ |
| java_bridge_dispatcher_host_manager.cc | 36 blink::WebBindings::releaseObject(iter->second); 52 iter->second->AddNamedObject(name, object); 63 blink::WebBindings::releaseObject(iter->second); 68 iter->second->RemoveNamedObject(name); 81 instance->AddNamedObject(iter->first, iter->second); 109 JavaBoundObject::GetJavaObject(it->second));
|
| /external/chromium_org/content/browser/service_worker/ |
| service_worker_process_manager.cc | 57 RenderProcessHost* rph = RenderProcessHost::FromID(it->second.process_id); 167 if (info->second.site_instance) { 168 rph = info->second.site_instance->GetProcess(); 169 DCHECK_EQ(info->second.process_id, rph->GetID()) 173 rph = RenderProcessHost::FromID(info->second.process_id); 175 << "Process " << info->second.process_id
|