/external/chromium_org/third_party/skia/include/core/ |
SkTDArray.h | 225 const T* iter = fArray; 228 for (; iter < stop; iter++) { 229 if (*iter == elem) { 230 return (int) (iter - fArray); 237 const T* iter = fArray + fCount; 240 while (iter > stop) { 241 if (*--iter == elem) { 242 return iter - stop; 283 T* iter = fArray local 293 T* iter = fArray; local 303 T* iter = fArray; local 313 T* iter = fArray; local [all...] |
SkTemplates.h | 257 T* iter = start + fCount; local 258 while (iter > start) { 259 (--iter)->~T(); 280 iter = fArray; 282 while (iter < stop) { 283 SkNEW_PLACEMENT(iter++, T);
|
/external/chromium_org/third_party/skia/src/fonts/ |
SkFontMgr_fontconfig.cpp | 85 FcPattern** iter = font_set->fonts; local 86 FcPattern** stop = iter + font_set->nfont; 88 for (; iter < stop; ++iter) { 89 if (valid_pattern(*iter)) { 94 if (iter == stop || !match_name(*iter, post_config_family)) { 98 FcPattern** firstIter = iter++; 99 for (; iter < stop; ++iter) { [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrResourceCache.cpp | 74 EntryList::Iter iter; local 342 EntryList::Iter iter; local 350 GrResourceEntry* entry = iter.init(fList, EntryList::Iter::kTail_IterStart); 361 GrResourceEntry* prev = iter.prev(); 407 EntryList::Iter iter; local 409 const GrResourceEntry* entry = iter.init(const_cast<EntryList&>(list) 434 EntryList::Iter iter; local 472 EntryList::Iter iter; local [all...] |
/external/chromium_org/third_party/skia/src/views/ |
SkEventSink.cpp | 170 const SkEventSinkID* iter = sinkList->fIDs; local 171 const SkEventSinkID* stop = iter + sinkList->countListners(); 172 while (iter < stop) 173 addListenerID(*iter++); 211 const SkEventSinkID* iter = list->fIDs; local 212 const SkEventSinkID* stop = iter + list->countListners(); 213 while (iter < stop) { 215 copy->setTargetID(*iter++)->postDelay(delay);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/ |
cpp-preproc.c | 191 void * iter; local 204 iter = NULL; 205 while ((inc_dir = yasm_get_include_dir(&iter)) != NULL) {
|
/external/chromium_org/ui/accessibility/ |
ax_tree_serializer.h | 271 base::hash_map<int32, ClientTreeNode*>::iterator iter = local 273 if (iter != client_id_map_.end()) 274 return iter->second;
|
/external/chromium_org/ui/message_center/ |
notification_list_unittest.cc | 86 NotificationList::Notifications::iterator iter = local 88 if (iter == notification_list()->notifications_.end()) 90 return *iter; 112 for (NotificationList::Notifications::const_iterator iter = 113 notifications.begin(); iter != notifications.end(); ++iter) { 114 if ((*iter)->id() == id) 316 NotificationList::PopupNotifications::const_reverse_iterator iter = local 318 for (size_t i = 0; i < kMaxVisiblePopupNotifications; ++i, ++iter) { 319 EXPECT_EQ(ids[i], (*iter)->id()) << i 550 NotificationList::PopupNotifications::const_iterator iter = popups.begin(); local 562 NotificationList::Notifications::const_iterator iter = local 594 NotificationList::Notifications::const_iterator iter = notifications.begin(); local [all...] |
/external/chromium_org/ui/shell_dialogs/gtk/ |
select_file_dialog_impl_gtk.cc | 463 std::map<GtkWidget*, void*>::iterator iter = params_map_.find(dialog); local 464 DCHECK(iter != params_map_.end()); 465 void* params = iter->second; 466 params_map_.erase(iter); 481 std::set<GtkWindow*>::iterator iter = parents_.find(parent); 482 if (iter != parents_.end()) 483 parents_.erase(iter); 550 for (GSList* iter = filenames; iter != NULL; iter = g_slist_next(iter)) [all...] |
select_file_dialog_impl_kde.cc | 266 std::set<GtkWindow*>::iterator iter = parents_.find(params.parent); local 267 if (iter != parents_.end()) 268 parents_.erase(iter); 444 for (std::vector<std::string>::iterator iter = filenames.begin(); 445 iter != filenames.end(); ++iter) { 446 base::FilePath path(*iter);
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_storage.h | 266 DelegateReferenceMap::iterator iter = local 268 if (iter != delegate_references_.end()) 269 return iter->second; 282 PendingResponseInfoLoads::iterator iter = local 284 if (iter != pending_info_loads_.end()) 285 return iter->second;
|
/external/clang/test/SemaCXX/ |
for-range-examples.cpp | 113 typedef map_iter<F, decltype(t.begin())> iter; typedef 114 return iter_pair<iter>(iter(f, t.begin()), iter(f, t.end()));
|
/external/e2fsprogs/e2fsck/ |
dirinfo.c | 316 struct dir_info_iter *iter; local 319 iter = e2fsck_allocate_memory(ctx, sizeof(struct dir_info_iter), 321 memset(iter, 0, sizeof(iter)); 324 iter->tdb_iter = tdb_firstkey(db->tdb); 326 return iter; 330 struct dir_info_iter *iter) struct 332 free(iter->tdb_iter.dptr); 333 ext2fs_free_mem(&iter); member in struct:iter 339 struct dir_info *e2fsck_dir_info_iter(e2fsck_t ctx, struct dir_info_iter *iter) [all...] |
pass3.c | 55 struct dir_info_iter *iter; local 99 iter = e2fsck_dir_info_iter_begin(ctx); 100 while ((dir = e2fsck_dir_info_iter(ctx, iter)) != 0) { 109 e2fsck_dir_info_iter_end(ctx, iter);
|
/external/e2fsprogs/lib/blkid/ |
tag.c | 283 blkid_tag_iterate iter; local 285 iter = malloc(sizeof(struct blkid_struct_tag_iterate)); 286 if (iter) { 287 iter->magic = TAG_ITERATE_MAGIC; 288 iter->dev = dev; 289 iter->p = dev->bid_tags.next; 291 return (iter); 297 extern int blkid_tag_next(blkid_tag_iterate iter, 304 if (!iter || iter->magic != TAG_ITERATE_MAGIC | 403 blkid_tag_iterate iter; local [all...] |
/external/e2fsprogs/misc/ |
blkid.c | 170 blkid_tag_iterate iter; local 191 iter = blkid_tag_iterate_begin(dev); 192 while (blkid_tag_next(iter, &type, &value) == 0) { 200 blkid_tag_iterate_end(iter); 221 blkid_tag_iterate iter; local 238 iter = blkid_tag_iterate_begin(dev); 239 while (blkid_tag_next(iter, &type, &value) == 0) { 261 blkid_tag_iterate_end(iter); 391 blkid_dev_iterate iter; local 396 iter = blkid_dev_iterate_begin(cache) [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
SVD.h | 244 int iter = 0; local 432 iter = iter + 1; 461 iter = 0;
|
/external/eigen/Eigen/src/Eigenvalues/ |
ComplexSchur.h | 211 ComplexScalar computeShift(Index iu, Index iter); 235 typename ComplexSchur<MatrixType>::ComplexScalar ComplexSchur<MatrixType>::computeShift(Index iu, Index iter) 237 if (iter == 10 || iter == 20) 338 Index iter = 0; // number of iterations we are working on the (iu,iu) element local 346 iter = 0; 354 iter++; 355 if(iter > m_maxIterations * m_matT.cols()) break; 368 ComplexScalar shift = computeShift(iu, iter); 385 if(iter <= m_maxIterations * m_matT.cols()) [all...] |
RealSchur.h | 197 void computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo); 223 Index iter = 0; // iteration count local 240 iter = 0; 246 iter = 0; 252 computeShift(iu, iter, exshift, shiftInfo); 253 iter = iter + 1; 254 if (iter > m_maxIterations * m_matT.cols()) break; 261 if(iter <= m_maxIterations * m_matT.cols()) 337 inline void RealSchur<MatrixType>::computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
IteratorsTest.java | 1051 Iterator<Integer> iter = Iterators.forEnumeration(enumer); local 1063 Iterator<Integer> iter = Iterators.forEnumeration(enumer); local 1083 Iterator<Integer> iter = Iterators.forEnumeration(enumer); local 1095 Iterator<Integer> iter = Iterators.emptyIterator(); local 1107 Iterator<Integer> iter = ImmutableList.of(1).iterator(); local 1122 Iterator<Integer> iter = ImmutableList.of(1, 2, 3).iterator(); local [all...] |
/external/icu4c/common/ |
unorm_it.c | 35 UCharIterator *iter; member in struct:UNormIterator 55 /* the current iter->getState(), saved to avoid unnecessary setState() calls; may not correspond to api->index! */ 68 initIndexes(UNormIterator *uni, UCharIterator *iter) { 72 if(!iter->hasPrevious(iter)) { 76 uni->hasNext=iter->hasNext(iter); 77 } else if(!iter->hasNext(iter)) { 81 uni->hasPrevious=iter->hasPrevious(iter) 351 UCharIterator *iter=uni->iter; local 498 UCharIterator *iter=((UNormIterator *)api)->iter; local [all...] |
/external/icu4c/i18n/ |
csrmbcs.cpp | 154 IteratedChar iter; local 156 while (nextChar(&iter, det)) { 159 if (iter.error) { 162 if (iter.charValue <= 0xFF) { 168 if (binarySearch(commonChars, commonCharsLen, iter.charValue) >= 0){
|
/external/icu4c/test/cintltst/ |
cstrcase.c | 875 const UBreakIterator *iter; local [all...] |
/external/icu4c/test/intltest/ |
itercoll.cpp | 50 CollationElementIterator *iter; local 71 iter = en_us->createCollationElementIterator(source); 73 backAndForth(*iter); 74 delete iter; 87 CollationElementIterator *iter = en_us->createCollationElementIterator(test1); local 90 backAndForth(*iter); 91 delete iter; 107 iter = c1->createCollationElementIterator(source); 108 backAndForth(*iter); 109 delete iter; 175 CollationElementIterator *iter = en_us->createCollationElementIterator(test1); local 302 CollationElementIterator *iter = coll->createCollationElementIterator(str); local 552 CollationElementIterator *iter = local [all...] |
/external/icu4c/test/thaitest/ |
thaitest.cpp | 499 UCharCharacterIterator *iter = new UCharCharacterIterator(text, count); local 505 fBreakIter->adoptText(iter);
|