Searched refs:begin (Results 201 - 225 of 7357) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dsubsetter.cc59 for (TableMap::const_iterator i = font_->GetTableMap()->begin(),
65 std::set_difference(table_tags.begin(), table_tags.end(),
66 remove_tables_.begin(), remove_tables_.end(),
71 table_subsetter = table_subsetters_.begin(),
78 std::set_difference(table_tags.begin(), table_tags.end(),
79 handled_tags->begin(), handled_tags->end(),
84 for (IntegerSet::iterator tag = table_tags.begin(),
/external/elfutils/libdw/
H A Ddwarf_entry_breakpoints.c144 Dwarf_Addr begin; local
146 ptrdiff_t offset = INTUSE(dwarf_ranges) (die, 0, &base, &begin, &end);
152 return search_range (begin, end, true, true) ?: entrypc_bkpt ();
159 if (search_range (begin, end, true, false) < 0)
162 if (begin < lowpc)
164 lowpc = begin;
168 offset = INTUSE(dwarf_ranges) (die, offset, &base, &begin, &end);
/external/llvm/lib/Support/
H A DDeltaAlgorithm.cpp34 for (changeset_ty::const_iterator it = S.begin(),
60 for (changesetlist_ty::const_iterator it = Sets.begin(),
73 for (changesetlist_ty::const_iterator it = Sets.begin(),
89 Changes.begin(), Changes.end(), it->begin(), it->end(),
90 std::insert_iterator<changeset_ty>(Complement, Complement.begin()));
93 ComplementSets.insert(ComplementSets.end(), Sets.begin(), it);
/external/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp82 BasicBlock::iterator I = BBEntry->begin();
93 for (Function::iterator ibb = F.begin(), ibe = F.end();
95 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
105 for (std::list<Instruction*>::iterator ilb = WorkList.begin(),
112 for (Function::iterator ibb = F.begin(), ibe = F.end();
114 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
121 for (std::list<Instruction*>::iterator ilb = WorkList.begin(),
/external/llvm/unittests/ADT/
H A DilistTest.cpp51 List.splice(List.begin(), List, List.begin());
54 EXPECT_TRUE(llvm::next(List.begin()) == List.end());
59 List.splice(llvm::next(List.begin()), List, List.begin());
62 EXPECT_EQ(2, llvm::next(List.begin())->Value);
83 Node *N = List.begin();
H A DSmallVectorTest.cpp107 EXPECT_TRUE(v.begin() == v.end());
160 EXPECT_FALSE(this->theVector.begin() == this->theVector.end());
168 this->theVector.insert(this->theVector.begin(), this->theVector[1]);
266 typename TypeParam::iterator it = this->theVector.begin();
318 this->theVector.append(this->otherVector.begin(), this->otherVector.end());
346 this->theVector.erase(this->theVector.begin());
355 this->theVector.erase(this->theVector.begin(), this->theVector.begin() + 2);
365 this->theVector.insert(this->theVector.begin() + 1, Constructable(77));
366 EXPECT_EQ(this->theVector.begin()
[all...]
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dsubsetter.cc59 for (TableMap::const_iterator i = font_->GetTableMap()->begin(),
65 std::set_difference(table_tags.begin(), table_tags.end(),
66 remove_tables_.begin(), remove_tables_.end(),
71 table_subsetter = table_subsetters_.begin(),
78 std::set_difference(table_tags.begin(), table_tags.end(),
79 handled_tags->begin(), handled_tags->end(),
84 for (IntegerSet::iterator tag = table_tags.begin(),
/external/chromium_org/media/cast/net/rtp_sender/packet_storage/
H A Dpacket_storage.cc30 packet_.insert(packet_.begin(), packet->begin(), packet->end());
34 packets->push_back(Packet(packet_.begin(), packet_.end()));
51 PacketMapIterator store_it = stored_packets_.begin();
53 store_it = stored_packets_.begin()) {
62 TimeToPacketIterator time_it = time_to_packet_map_.begin();
76 time_it = time_to_packet_map_.begin();
95 time_it = time_to_packet_map_.begin();
132 missing_frames_and_packets.begin();
149 for (PacketIdSet::const_iterator set_it = packets_set.begin();
[all...]
/external/chromium_org/sync/notifier/
H A Dobject_id_invalidation_map.cc15 for (ObjectIdSet::const_iterator it = ids.begin(); it != ids.end(); ++it) {
27 for (IdToListMap::const_iterator it = map_.begin(); it != map_.end(); ++it) {
44 for (ObjectIdSet::const_iterator it = ids.begin(); it != ids.end(); ++it) {
63 for (IdToListMap::const_iterator it = map_.begin(); it != map_.end(); ++it) {
64 out->insert(out->begin(), it->second.begin(), it->second.end());
68 for (IdToListMap::const_iterator it1 = map_.begin();
70 for (SingleObjectInvalidationSet::const_iterator it2 = it1->second.begin();
84 for (IdToListMap::const_iterator it1 = map_.begin();
87 it1->second.begin(); it
[all...]
H A Dunacked_invalidation_set.cc47 invalidations_.insert(invalidations.begin(), invalidations.end());
55 for (SingleObjectInvalidationSet::const_iterator it = invalidations_.begin();
80 for (SingleObjectInvalidationSet::const_iterator it = invalidations_.begin();
99 for (it = invalidations_.begin(); it != invalidations_.end(); ++it) {
114 if (!invalidations_.empty() && invalidations_.begin()->is_unknown_version()) {
115 invalidations_.erase(*invalidations_.begin());
127 for (InvalidationsSet::const_iterator it = invalidations_.begin();
190 invalidations_.erase(*invalidations_.begin());
197 invalidation::ObjectId id = invalidations_.begin()->object_id();
198 invalidations_.erase(*invalidations_.begin());
[all...]
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.h24 Component() : begin(0), len(-1) {}
27 Component(int b, int l) : begin(b), len(l) {}
30 return begin + len;
46 begin = 0;
51 return begin == other.begin && len == other.len;
54 int begin; // Byte offset in the string of this component. member in struct:url_parse::Component
58 // Helper that returns a component created with the given begin and ending
60 inline Component MakeRange(int begin, int end) { argument
61 return Component(begin, en
[all...]
/external/stlport/test/unit/
H A Diter_test.cpp50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
114 __iota(v1.begin(), v1.end(), 0);
115 iter_swap( v1.begin(), v1.begin() + 3 );
131 vector<bool>::iterator i1 = boolVector.begin();
132 vector<bool>::iterator i2 = boolVector.begin();
152 iter_swap(vvints.begin(), lvints.begin());
157 //iter_swap(cvvints.begin(), lvints.begin());
[all...]
H A Dequal_test.cpp56 pair<IntVec::iterator, IntVec::iterator> range = equal_range(v.begin(), v.end(), 2);
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 );
62 range = equal_range(v.begin(), v.end(), 4);
113 it = upper_bound(tv.begin(), tv.end(), 5);
117 it = lower_bound(tv.begin(), tv.end(), 5);
121 p = equal_range(tv.begin(), tv.end(), 5);
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
147 copy(v1.begin(), v
[all...]
H A Dpartial_test.cpp83 partial_sort(v1.begin(), v1.begin() + v1.size() / 2, v1.end());
106 partial_sort(v1.begin(), v1.begin() + nameSize / 2, v1.end(), str_compare);
145 partial_sort_copy(v1.begin(), v1.end(), result.begin(), result.end());
162 partial_sort_copy(v1.begin(), v1.end(), result.begin(), result.end(), str_compare);
190 partial_sort_copy(numbers, numbers + s, result.begin(), result.end(), less_equal<int>());
219 __iota(v1.begin(), v
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas56 begin
63 begin
71 begin
74 begin
85 begin
89 begin
99 begin
104 begin
111 begin
121 begin
[all...]
/external/chromium/net/tools/flip_server/
H A Dstring_piece_utils.h20 for (base::StringPiece::const_iterator it = sp.begin();
31 base::StringPiece::const_iterator p1i = piece1.begin();
32 base::StringPiece::const_iterator p2i = piece2.begin();
38 while (p1i != piece1.end() && p2i != piece2.begin()) {
46 base::StringPiece::const_iterator c = piece1->begin();
/external/chromium_org/courgette/
H A Ddisassembler_elf_32_x86_unittest.cc50 std::set<courgette::RVA> abs(disassembler->Abs32Locations().begin(),
53 rel(disassembler->Rel32Locations().begin(),
56 rel32 = disassembler->Rel32Locations().begin();
63 disassembler->Abs32Locations().begin();
68 rel32 = disassembler->Rel32Locations().begin();
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h38 iterator begin() { return iterator(Decls.begin()); } function in class:clang::ASTUnresolvedSet
41 const_iterator begin() const { return const_iterator(Decls.begin()); } function in class:clang::ASTUnresolvedSet
52 for (DeclsTy::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) {
/external/chromium/googleurl/src/
H A Durl_canon_internal.h161 // Reads one character in UTF-8 starting at |*begin| in |str| and places
166 // |*begin| will be updated to point to the last character consumed so it
171 bool ReadUTFChar(const char* str, int* begin, int length,
238 // Reads one character in UTF-16 starting at |*begin| in |str| and places
243 // |*begin| will be updated to point to the last character consumed so it
248 bool ReadUTFChar(const char16* str, int* begin, int length,
267 // update the |*begin| pointer and add a placeholder character to the
270 // We will append the character starting at ch[begin] with the buffer ch
271 // being |length|. |*begin| will be updated to point to the last character
281 // Assumes that ch[begin] i
283 AppendUTF8EscapedChar(const char16* str, int* begin, int length, CanonOutput* output) argument
295 AppendUTF8EscapedChar(const char* str, int* begin, int length, CanonOutput* output) argument
323 DecodeEscaped(const CHAR* spec, int* begin, int end, unsigned char* unescaped_value) argument
[all...]
H A Durl_canon_fileurl.cc46 // spec is returned (after the colon when a drive spec is found, the begin
49 int FileDoDriveSpec(const CHAR* spec, int begin, int end, argument
53 int num_slashes = url_parse::CountConsecutiveSlashes(spec, begin, end);
54 int after_slashes = begin + num_slashes;
57 return begin; // Haven't consumed any characters
85 out_path->begin = output->length();
88 after_drive = FileDoDriveSpec(spec, path.begin, path.end(), output);
90 after_drive = path.begin;
109 out_path->len = output->length() - out_path->begin;
126 new_parsed->scheme.begin
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsessiondescription.cc36 for (ContentInfos::iterator content = contents.begin();
47 for (ContentInfos::const_iterator content = contents.begin();
58 for (ContentInfos::const_iterator content = contents.begin();
68 return (!content_names_.empty()) ? &(*content_names_.begin()) : NULL;
72 return (std::find(content_names_.begin(), content_names_.end(),
84 content_names_.begin(), content_names_.end(), content_name);
95 for (ContentInfos::iterator content = copy->contents_.begin();
138 return (contents_.empty()) ? NULL : &(*contents_.begin());
155 for (ContentInfos::iterator content = contents_.begin();
176 for (TransportInfos::iterator transport_info = transport_infos_.begin();
[all...]
/external/chromium_org/url/
H A Durl_canon_internal.h143 // Reads one character in UTF-8 starting at |*begin| in |str| and places
148 // |*begin| will be updated to point to the last character consumed so it
153 URL_EXPORT bool ReadUTFChar(const char* str, int* begin, int length,
220 // Reads one character in UTF-16 starting at |*begin| in |str| and places
225 // |*begin| will be updated to point to the last character consumed so it
230 URL_EXPORT bool ReadUTFChar(const base::char16* str, int* begin, int length,
249 // update the |*begin| pointer and add a placeholder character to the
252 // We will append the character starting at ch[begin] with the buffer ch
253 // being |length|. |*begin| will be updated to point to the last character
263 // Assumes that ch[begin] i
265 AppendUTF8EscapedChar(const base::char16* str, int* begin, int length, CanonOutput* output) argument
277 AppendUTF8EscapedChar(const char* str, int* begin, int length, CanonOutput* output) argument
305 DecodeEscaped(const CHAR* spec, int* begin, int end, unsigned char* unescaped_value) argument
[all...]
/external/chromium/chrome/browser/profiles/
H A Dprofile_dependency_manager.cc25 all_components_.erase(std::remove(all_components_.begin(),
31 EdgeMap::iterator it = edges_.begin();
54 destruction_order_.begin(); it != destruction_order_.end(); ++it) {
59 destruction_order_.begin(); it != destruction_order_.end(); ++it) {
76 std::copy(all_components_.begin(),
81 for (EdgeMap::const_iterator it = edges_.begin();
83 queue_end = std::remove(queue.begin(), queue_end, it->second);
105 for (EdgeMap::iterator jt = edges.begin(); jt != edges.end(); ++jt) {
121 std::reverse(output.begin(), output.end());
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_transaction_coordinator.cc62 for (TransactionSet::const_iterator it = started_transactions_.begin();
67 for (TransactionSet::const_iterator it = queued_transactions_.begin();
81 (*started_transactions_.begin())->mode() !=
91 for (TransactionSet::const_iterator it = started_transactions_.begin();
98 locked_scope.insert(transaction->scope().begin(),
103 TransactionSet::const_iterator it = queued_transactions_.begin();
118 locked_scope.insert(transaction->scope().begin(),
127 typename std::set<T>::const_iterator it1 = set1.begin();
128 typename std::set<T>::const_iterator it2 = set2.begin();
/external/llvm/include/llvm/Analysis/
H A DDominanceFrontier.h59 iterator begin() { return Frontiers.begin(); } function in class:llvm::DominanceFrontierBase
60 const_iterator begin() const { return Frontiers.begin(); } function in class:llvm::DominanceFrontierBase
74 for (iterator I = begin(), E = end(); I != E; ++I)
94 for (DomSetType::const_iterator I = DS2.begin(),
98 for (DomSetType::const_iterator I = DS1.begin(),
119 for (DomSetMapType::const_iterator I = Other.begin(),
123 for (DomSetMapType::iterator I = tmpFrontiers.begin(),

Completed in 863 milliseconds

1234567891011>>