HomeSort by relevance Sort by last modified time
    Searched refs:second (Results 1001 - 1025 of 5944) sorted by null

<<41424344454647484950>>

  /external/chromium_org/ui/events/gestures/
gesture_recognizer_impl.cc 42 if (i->second == consumer) {
58 if (i->second == old_consumer)
59 i->second = new_consumer;
106 const GesturePoint* points = i->second->points();
136 const MotionEventAura& pointer_state = i->second->pointer_state();
171 if (i->second && i->second != new_consumer &&
172 (i->second != current_consumer || new_consumer == NULL) &&
173 i->second) {
174 ids.push_back(std::make_pair(i->first, i->second));
    [all...]
  /external/clang/lib/Edit/
EditedSource.cpp 45 if (I != ExpansionToArgMap.end() && I->second != DefArgLoc)
98 FileEdit &FA = I->second;
115 FileEdit &FA = I->second;
152 FileEdit &FA = I->second;
166 NewI->second.RemoveLen = Len;
170 FileEdit &FA = I->second;
178 TopFA = &NewI->second;
183 TopFA = &I->second;
195 FileEdit &FA = I->second;
340 StrVec = I->second.Text
    [all...]
  /libcore/luni/src/main/java/java/util/
Date.java 119 * @param second
120 * the second of the minute, 0 - 59.
126 public Date(int year, int month, int day, int hour, int minute, int second) {
128 cal.set(1900 + year, month, day, hour, minute, second);
295 * Returns the gregorian calendar second of the minute for this {@code Date} object.
299 * @deprecated Use {@code Calendar.get(Calendar.SECOND)} instead.
303 return new GregorianCalendar(milliseconds).get(Calendar.SECOND);
388 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0; local
467 } else if (minute != -1 && second == -1) {
468 second = digit
    [all...]
  /external/llvm/include/llvm/ADT/
DenseMap.h 93 P->second.~ValueT();
147 return TheBucket->second;
161 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket);
176 std::move(KV.second),
194 TheBucket->second.~ValueT();
202 TheBucket->second.~ValueT();
217 return FindAndConstruct(Key).second;
229 return FindAndConstruct(std::move(Key)).second;
255 P->second.~ValueT();
290 new (&DestBucket->second) ValueT(std::move(B->second))
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 239 result = it->second;
264 return &(Res->second);
312 CurReg = ItCurRegId->second;
331 unsigned Reg = Entry.second;
358 BBKillSet.set(ItRegId->second);
359 BBGen[ItRegId->second] = &MI;
361 BBGen[ItCurRegId->second] = &MI;
431 delete[] IT.second;
433 delete[] IT.second;
435 delete[] IT.second;
    [all...]
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 304 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) {
314 if (!TLI->isOperationExpand(ISD, LT.second)) {
340 // 0 of first vector, index 1 of second vector,index 2 of first vector and
341 // finally index 3 of second vector and insert them at index <0,1,2,3> of
369 SrcLT.second.getSizeInBits() == DstLT.second.getSizeInBits()) {
377 TLI->isTruncateFree(SrcLT.second, DstLT.second))
381 TLI->isZExtFree(SrcLT.second, DstLT.second))
    [all...]
  /external/stlport/test/unit/
map_test.cpp 65 CPPUNIT_ASSERT( p.second );
68 CPPUNIT_ASSERT( (*p.first).second == 100 );
71 CPPUNIT_ASSERT( !p.second ); // already existing pair
74 CPPUNIT_ASSERT( (*p.first).second == 100 );
97 CPPUNIT_ASSERT((*i).second == 10);
100 CPPUNIT_ASSERT((*i).second == 20);
103 CPPUNIT_ASSERT((*i).second == 32);
136 CPPUNIT_ASSERT((*i).second=='c');
140 CPPUNIT_ASSERT((*i).second=='f');
214 CPPUNIT_ASSERT( (*ri++).second == 'f' )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 65 CPPUNIT_ASSERT( p.second );
68 CPPUNIT_ASSERT( (*p.first).second == 100 );
71 CPPUNIT_ASSERT( !p.second ); // already existing pair
74 CPPUNIT_ASSERT( (*p.first).second == 100 );
97 CPPUNIT_ASSERT((*i).second == 10);
100 CPPUNIT_ASSERT((*i).second == 20);
103 CPPUNIT_ASSERT((*i).second == 32);
136 CPPUNIT_ASSERT((*i).second=='c');
140 CPPUNIT_ASSERT((*i).second=='f');
214 CPPUNIT_ASSERT( (*ri++).second == 'f' )
    [all...]
  /ndk/tests/device/test-stlport/unit/
map_test.cpp 65 CPPUNIT_ASSERT( p.second );
68 CPPUNIT_ASSERT( (*p.first).second == 100 );
71 CPPUNIT_ASSERT( !p.second ); // already existing pair
74 CPPUNIT_ASSERT( (*p.first).second == 100 );
97 CPPUNIT_ASSERT((*i).second == 10);
100 CPPUNIT_ASSERT((*i).second == 20);
103 CPPUNIT_ASSERT((*i).second == 32);
136 CPPUNIT_ASSERT((*i).second=='c');
140 CPPUNIT_ASSERT((*i).second=='f');
214 CPPUNIT_ASSERT( (*ri++).second == 'f' )
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 95 #define PB_DS_V2S(X) (X).second
388 return (p_e->m_value.second);
392 return insert_new_imp(value_type(r_key, mapped_type()), pos)->second;
403 !hash_eq_fn_base::operator()(p_e->m_value.first, p_e->m_hash, r_key, pos_hash_pair.second))
413 return p_e->m_value.second;
418 pos_hash_pair)->second;
457 p_e->m_hash = r_pos_hash_pair.second;
498 r_key, pos_hash_pair.second))
545 for (++r_pos.second; r_pos.second < m_num_e; ++r_pos.second
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/automation_internal/
automation_util.cc 47 ToString(attr.first), attr.second);
58 ToString(attr.first), attr.second);
68 attr.first, attr.second);
78 ToString(attr.first), attr.second);
89 for (size_t j = 0; j < attr.second.size(); ++j)
90 intlist->AppendInteger(attr.second[j]);
103 ToString(attr.first), attr.second);
  /external/chromium_org/chrome/browser/guest_view/web_view/
web_view_find_helper.cc 23 find_info_map_.begin()->second->SendResponse(true /* canceled */);
47 FindInfo* find_info = session_iterator->second.get();
104 DCHECK(insert_result.second);
107 blink::WebFindOptions* full_options = insert_result.first->second->options();
125 insert_result.first->second->AsWeakPtr());
130 current_find_session_ = insert_result.first->second;
150 WebviewFindHelper::FindInfo* find_info = find_iterator->second.get();
  /external/chromium_org/chrome/browser/sync_file_system/
fake_remote_change_processor.cc 39 local_metadata = found_metadata->second;
44 DCHECK(!found->second.empty());
45 const FileChange& applied_change = found->second.back();
57 change_list = found_list->second;
81 const FileChange& local_change = found_list->second.back();
153 const std::vector<FileChange>& applied = itr->second;
154 const std::vector<FileChange>& expected = found->second;
  /external/chromium_org/components/gcm_driver/
gcm_driver.cc 106 RegisterCallback callback = callback_iter->second;
118 UnregisterCallback callback = callback_iter->second;
134 SendCallback callback = callback_iter->second;
142 iter->second->ShutdownHandler();
164 return iter->second;
168 if (iter->second->CanHandle(app_id))
169 return iter->second;
  /external/chromium_org/components/google/core/browser/
google_url_tracker.cc 200 GoogleURLTrackerMapEntry* map_entry = i->second;
260 map_entry = i->second;
316 GoogleURLTrackerMapEntry* map_entry = i->second;
345 if (i->second->navigation_helper() == nav_helper) {
346 i->second->Close(false);
361 entry_map_.begin()->second->Close(redo_searches);
390 if (i->second->navigation_helper()->IsListeningForNavigationCommit()) {
  /external/chromium_org/components/keyed_service/core/
dependency_graph.cc 30 if (temp->first == node || temp->second == node)
71 queue_end = std::remove(queue.begin(), queue_end, it->second);
86 while (it != range.second) {
87 DependencyNode* dest = it->second;
94 if (jt->second == dest) {
124 // State all dependencies and remove |second| so we don't generate an
130 result.append(node_name_callback.Run(it->second));
135 nodes_end = std::remove(nodes.begin(), nodes_end, it->second);
  /external/chromium_org/content/browser/renderer_host/pepper/
browser_ppapi_host_impl.cc 102 *render_process_id = found->second.render_process_id;
103 *render_frame_id = found->second.render_frame_id;
123 return found->second.document_url;
130 return found->second.plugin_url;
212 instance_data[i].render_process_id = instance->second.render_process_id;
213 instance_data[i].render_frame_id = instance->second.render_frame_id;
214 instance_data[i].document_url = instance->second.document_url;
  /external/chromium_org/content/public/test/
mock_storage_client.cc 57 find->second += delta;
58 DCHECK_GE(find->second, 0);
70 id(), itr->first.first, itr->first.second, 0, IncrementMockTime());
138 callback.Run(find->second);
147 if (type == iter->first.second)
160 if (type == iter->first.second && host == host_or_spec)
180 int64 delta = itr->second;
  /external/chromium_org/extensions/common/
manifest_handler.cc 135 ManifestHandler* handler = iter->second.get();
144 if (!(iter->second)->Parse(extension, error))
157 ManifestHandler* handler = iter->second.get();
177 return it->second->CreatePermission();
185 it->second->CreateInitialRequiredPermission(extension);
207 unsorted_handlers.insert(iter->second.get());
228 if (ContainsKey(priority_map_, prereq_iter->second.get()))

Completed in 1277 milliseconds

<<41424344454647484950>>