Searched refs:it (Results 26 - 50 of 4721) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/Windows/
H A Dcrt_initializers.cc18 for (FPTR* it = &__xi_a; it < &__xi_z; ++it) {
19 if (*it)
/external/libcxx/test/re/re.alg/re.alg.search/
H A Dbackup.pass.cpp31 std::sregex_iterator it{s.begin(), s.end(), re};
34 assert(it->position(0) == 0);
35 assert(it->length(0) == 1);
37 ++it;
38 assert(it->position(0) == 5);
39 assert(it->length(0) == 1);
41 ++it;
42 assert(it == end);
50 std::regex_iterator<std::list<char>::iterator> it{l.begin(), l.end(), re};
53 assert(it
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_static_table.cc22 for (const HpackStaticEntry* it = static_entry_table;
23 it != static_entry_table + static_entry_count; ++it) {
24 static_entries_.push_back(HpackEntry(StringPiece(it->name, it->name_len),
25 StringPiece(it->value, it->value_len),
/external/chromium_org/tools/android/forwarder2/
H A Dutil.h13 // from the map before deleting it in case its destructor would access the map.
19 const typename Map::iterator it = map->find(key); local
20 if (it == map->end())
22 DeleteRefCountedValueInMapFromIterator(it, map);
28 void DeleteRefCountedValueInMapFromIterator(Iterator it, Map* map) { argument
29 DCHECK(it != map->end());
30 const typename Map::value_type::second_type shared_ptr_copy = it->second;
31 map->erase(it);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Denable_disable_test.cc51 for (syncer::ModelTypeSet::Iterator it = registered_types.First();
52 it.Good(); it.Inc()) {
53 ASSERT_TRUE(GetClient(0)->EnableSyncForDatatype(it.Get()));
60 if (it.Get() == syncer::AUTOFILL_PROFILE || it.Get() == syncer::SESSIONS) {
64 if (!syncer::ProxyTypes().Has(it.Get())) {
65 ASSERT_TRUE(DoesTopLevelNodeExist(user_share, it.Get()) ||
66 IsUnready(data_type_status_table, it.Get()))
67 << syncer::ModelTypeToString(it
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dfile_growth.cc24 for (FileSizeMap::const_iterator it = file_sizes.begin();
25 it != file_sizes.end();
26 ++it)
27 file_growths[it->first] = FileGrowth(it->second, 0);
34 for (FileGrowthMap::const_iterator it = file_growths.begin();
35 it != file_growths.end();
36 ++it)
37 file_sizes[it->first] = it
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
H A Dvec4-spec.js30 it("should return a 4 element array initialized to 0s", function() { expect(result).toBeEqualish([0, 0, 0, 0]); });
35 it("should return a 4 element array initialized to the values in vecA", function() { expect(result).toBeEqualish(vecA); });
40 it("should return a 4 element array initialized to the values passed", function() { expect(result).toBeEqualish([1, 2, 3, 4]); });
45 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
46 it("should return out", function() { expect(result).toBe(out); });
51 it("should place values into out", function() { expect(out).toBeEqualish([1, 2, 3, 4]); });
52 it("should return out", function() { expect(result).toBe(out); });
59 it("should place values into out", function() { expect(out).toBeEqualish([6, 8, 10, 12]); });
60 it("should return out", function() { expect(result).toBe(out); });
61 it("shoul
[all...]
H A Dmat2d-spec.js54 it("should return a 6 element array initialized to a 2x3 identity matrix", function() { expect(result).toBeEqualish(identity); });
59 it("should return a 6 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
64 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
65 it("should return out", function() { expect(result).toBe(out); });
70 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
71 it("should return out", function() { expect(result).toBe(out); });
78 it("should place values into out", function() { expect(out).toBeEqualish([ -2, 1, 1.5, -0.5, 1, -2 ]); });
79 it("should return out", function() { expect(result).toBe(out); });
80 it("should not modify matA", function() { expect(matA).toBeEqualish(oldA); });
86 it("shoul
[all...]
H A Dmat4-spec.js51 it("should return a 16 element array initialized to a 4x4 identity matrix", function() { expect(result).toBeEqualish(identity); });
56 it("should return a 16 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
61 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
62 it("should return out", function() { expect(result).toBe(out); });
67 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
68 it("should return out", function() { expect(result).toBe(out); });
75 it("should place values into out", function() {
83 it("should return out", function() { expect(result).toBe(out); });
84 it("should not modify matA", function() {
97 it("shoul
[all...]
H A Dmat3-spec.js51 it("should return out", function() { expect(result).toBe(out); });
53 it("should calculate proper mat3", function() {
62 it("should return a 9 element array initialized to a 3x3 identity matrix", function() { expect(result).toBeEqualish(identity); });
67 it("should return a 9 element array initialized to the values in matA", function() { expect(result).toBeEqualish(matA); });
72 it("should place values into out", function() { expect(out).toBeEqualish(matA); });
73 it("should return out", function() { expect(result).toBe(out); });
78 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
79 it("should return out", function() { expect(result).toBe(out); });
86 it("should place values into out", function() {
93 it("shoul
[all...]
/external/chromium_org/components/sync_driver/
H A Dnon_blocking_data_type_manager.cc36 NonBlockingDataTypeControllerMap::iterator it = local
38 DCHECK(it != non_blocking_data_type_controllers_.end());
39 it->second->InitializeType(task_runner, proxy_impl);
44 for (NonBlockingDataTypeControllerMap::iterator it =
46 it != non_blocking_data_type_controllers_.end(); ++it) {
47 it->second->InitializeSyncContext(proxy->Clone());
52 for (NonBlockingDataTypeControllerMap::iterator it =
54 it != non_blocking_data_type_controllers_.end(); ++it) {
[all...]
/external/chromium_org/sync/internal_api/public/base/
H A Dprogress_marker_map.cc16 for (ProgressMarkerMap::const_iterator it = marker_map.begin();
17 it != marker_map.end(); ++it) {
20 it->second, false /* put_in_quotes */, &printable_payload);
21 value->SetString(ModelTypeToString(it->first), printable_payload);
/external/webrtc/src/system_wrappers/source/
H A Dmap.cc56 // associated with it (i.e. using std::map::clear would introduce a
76 std::map<int, MapItem*>::const_iterator it = map_.begin(); local
77 if (it != map_.end())
79 return it->second;
86 std::map<int, MapItem*>::const_reverse_iterator it = map_.rbegin(); local
87 if (it != map_.rend())
89 return it->second;
100 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_); local
101 if (it != map_.end())
103 it
119 std::map<int, MapItem*>::const_iterator it = map_.find(item->item_id_); local
131 std::map<int, MapItem*>::const_iterator it = map_.find(id); local
145 std::map<int, MapItem*>::iterator it = map_.find(item->item_id_); local
157 std::map<int, MapItem*>::iterator it = map_.find(id); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.cpp59 for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
60 if (equalIgnoringCase(*it, "stylesheet")) {
63 } else if (equalIgnoringCase(*it, "import")) {
66 } else if (equalIgnoringCase(*it, "alternate")) {
68 } else if (equalIgnoringCase(*it, "icon")) {
73 } else if (equalIgnoringCase(*it, "prefetch")) {
75 } else if (equalIgnoringCase(*it, "dns-prefetch")) {
77 } else if (equalIgnoringCase(*it, "subresourc
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dtasn_fre.c10 * apply to all code found in this distribution, be it the RC4, RSA,
63 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
67 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it) argument
69 asn1_item_combine_free(&val, it, 0);
72 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
74 asn1_item_combine_free(pval, it, 0);
77 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
82 const ASN1_AUX *aux = it->funcs;
87 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
94 switch(it
202 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
/external/openssl/crypto/asn1/
H A Dtasn_fre.c65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
69 void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it) argument
71 asn1_item_combine_free(&val, it, 0);
74 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
76 asn1_item_combine_free(pval, it, 0);
79 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
84 const ASN1_AUX *aux = it->funcs;
89 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
96 switch(it->itype)
100 if (it
204 ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
[all...]
/external/chromium_org/components/autofill/core/common/
H A Dautofill_data_validation.cc52 for (std::vector<FormFieldData>::const_iterator it = form.fields.begin();
53 it != form.fields.end(); ++it) {
54 if (!IsValidFormFieldData(*it))
66 for (PasswordFormFillData::LoginCollection::const_iterator it =
68 it != form.additional_logins.end(); ++it) {
69 if (!IsValidString16(it->first) ||
70 !IsValidString16(it->second.password) ||
71 !IsValidString(it
[all...]
/external/chromium_org/net/server/
H A Dhttp_server_request_info.cc18 HttpServerRequestInfo::HeadersMap::const_iterator it = local
20 if (it != headers.end())
21 return it->second;
33 for (std::vector<std::string>::iterator it = value_items.begin();
34 it != value_items.end(); ++it) {
35 base::TrimString(*it, " \t", &*it);
36 if (*it == header_value)
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dnotifier.h51 for (std::list<ObserverInterface*>::iterator it = observers_.begin();
52 it != observers_.end(); it++) {
53 if (*it == observer) {
54 observers_.erase(it);
65 for (std::list<ObserverInterface*>::iterator it = observers.begin();
66 it != observers.end(); ++it) {
67 (*it)->OnChanged();
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddtmf_buffer.cc17 // longer required, this #define should be removed (and the code that it
76 // bit stream using the ParseEvent method above before inserting it in the
79 // is not known when the first packet describing it is sent. To deal with that,
81 // event as it is being created (typically, as the user is pressing the key).
93 DtmfList::iterator it = buffer_.begin(); local
94 while (it != buffer_.end()) {
95 if (MergeEvents(it, event)) {
99 ++it;
108 DtmfList::iterator it = buffer_.begin(); local
109 while (it !
197 MergeEvents(DtmfList::iterator it, const DtmfEvent& event) argument
[all...]
/external/chromium_org/cc/surfaces/
H A Dsurface_resource_holder.cc24 for (TransferableResourceArray::const_iterator it = resources.begin();
25 it != resources.end();
26 ++it) {
27 ResourceRefs& ref = resource_id_use_count_map_[it->id];
35 for (TransferableResourceArray::const_iterator it = resources.begin();
36 it != resources.end();
37 ++it) {
39 resource_id_use_count_map_.find(it->id);
49 for (ReturnedResourceArray::const_iterator it = resources.begin();
50 it !
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dstats.cc30 for (TableMap::const_iterator it = table_map->begin(),
31 e = table_map->end(); it != e; ++it) {
32 size += it->second->DataLength();
45 for (TableMap::const_iterator it = tables->begin(),
46 e = tables->end(); it != e; ++it) {
47 char *name = TagToString(it->first);
48 int32_t size = it->second->DataLength();
50 TableSizePercent(font, it
[all...]
/external/sfntly/cpp/src/sample/subtly/
H A Dstats.cc30 for (TableMap::const_iterator it = table_map->begin(),
31 e = table_map->end(); it != e; ++it) {
32 size += it->second->DataLength();
45 for (TableMap::const_iterator it = tables->begin(),
46 e = tables->end(); it != e; ++it) {
47 char *name = TagToString(it->first);
48 int32_t size = it->second->DataLength();
50 TableSizePercent(font, it
[all...]
/external/ceres-solver/include/ceres/
H A Dordered_groups.h66 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
67 if (it != element_to_group_.end()) {
68 if (it->second == group) {
73 group_to_elements_[it->second].erase(element);
74 if (group_to_elements_[it->second].size() == 0) {
75 group_to_elements_.erase(it->second);
89 // Remove the element, no matter what group it is in. Return value
100 // If the group is empty, then get rid of it.
124 typename map<int, set<T> >::reverse_iterator it = local
127 new_group_to_elements[it
146 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
154 typename map<T, int>::const_iterator it = element_to_group_.find(element); local
161 typename map<int, set<T> >::const_iterator it = local
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_sparse_matrix.cc67 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
68 it != block_pairs.end();
69 ++it) {
70 const int row_block_size = blocks_[it->first];
71 const int col_block_size = blocks_[it->second];
86 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
87 it != block_pairs.end();
88 ++it) {
89 const int row_block_size = blocks_[it->first];
90 const int col_block_size = blocks_[it
134 const LayoutType::iterator it = local
[all...]

Completed in 1633 milliseconds

1234567891011>>