Searched defs:it (Results 126 - 150 of 1744) sorted by relevance

1234567891011>>

/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} argument
41 for (MyIter it = my_begin; it != my_end; ++it) {
43 if (it->get())
44 item = it->get();
H A Dtest12-original.cc22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} argument
41 for (MyIter it = my_begin; it != my_end; ++it) {
43 if (*it)
44 item = *it;
/external/chromium_org/tools/ipc_fuzzer/message_lib/
H A Dmessage_names.h35 TypeToNameMap::iterator it = name_map_.find(type); local
36 CHECK(it != name_map_.end());
37 return it->second;
41 NameToTypeMap::iterator it = type_map_.find(name); local
42 CHECK(it != type_map_.end());
43 return it->second;
/external/chromium_org/ui/base/ime/chromeos/
H A Dime_keymap.cc168 std::map<std::string, KeyboardCode>::const_iterator it = local
170 return (it == map_dom_key_.end()) ? VKEY_UNKNOWN : it->second;
174 std::map<KeyboardCode, std::string>::const_iterator it = local
176 return (it == map_key_dom_.end()) ? "" : it->second;
/external/chromium_org/ui/gfx/
H A Dbreak_list_unittest.cc160 BreakList<bool>::const_iterator it = breaks.GetBreak(cases[i].position); local
161 EXPECT_EQ(breaks.breaks()[cases[i].break_index], *it);
162 EXPECT_EQ(breaks.GetRange(it), cases[i].range);
/external/chromium_org/ui/gfx/x/
H A Dx11_atom_cache.cc36 std::map<std::string, Atom>::const_iterator it = cached_atoms_.find(name); local
38 if (uncached_atoms_allowed_ && it == cached_atoms_.end()) {
44 CHECK(it != cached_atoms_.end()) << " Atom " << name << " not found";
45 return it->second;
/external/chromium_org/ui/ozone/platform/dri/
H A Ddri_window_delegate_manager.cc36 WidgetToDelegateMap::iterator it = delegate_map_.find(widget); local
37 if (it != delegate_map_.end())
38 return it->second;
/external/chromium_org/v8/src/arm64/
H A Ddecoder-arm64.cc33 std::list<DecoderVisitor*>::iterator it; local
34 for (it = visitors_.begin(); it != visitors_.end(); it++) {
35 if (*it == registered_visitor) {
36 visitors_.insert(it, new_visitor);
42 DCHECK(*it == registered_visitor);
43 visitors_.insert(it, new_visitor);
50 std::list<DecoderVisitor*>::iterator it; local
51 for (it
[all...]
/external/gtest/src/
H A Dgtest-typed-test.cc71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-typed-test.cc71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dformat.cpp139 auto it = formats.find(format); local
141 if (it == formats.end())
144 return it->second;
H A Dgeometry.hpp40 auto it = std::copy(v.begin(), v.end(), a.begin()); local
41 std::fill(it, a.end(), 0);
H A Dmodule.cpp151 auto it = std::find_if(syms.begin(), syms.end(), [&](const symbol &x) { local
155 if (it == syms.end())
158 return *it;
163 auto it = std::find_if(secs.begin(), secs.end(), [&](const section &x) { local
167 if (it == secs.end())
170 return *it;
/external/mesa3d/src/gtest/src/
H A Dgtest-typed-test.cc71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
/external/openssl/crypto/asn1/
H A Da_digest.c11 * apply to all code found in this distribution, be it the RC4, RSA,
99 int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *asn, argument
105 i=ASN1_item_i2d(asn,&str, it);
H A Da_dup.c11 * apply to all code found in this distribution, be it the RC4, RSA,
93 void *ASN1_item_dup(const ASN1_ITEM *it, void *x) argument
102 i=ASN1_item_i2d(x,&b,it);
106 ret=ASN1_item_d2i(NULL,&p,i, it);
H A Da_i2d_fp.c11 * apply to all code found in this distribution, be it the RC4, RSA,
120 int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) argument
131 ret=ASN1_item_i2d_bio(it,b,x);
137 int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) argument
142 n = ASN1_item_i2d(x, &b, it);
H A Dasn_pack.c160 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct) argument
177 if (!(octmp->length = ASN1_item_i2d(obj, &octmp->data, it))) {
190 void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it) argument
196 if(!(ret = ASN1_item_d2i(NULL, &p, oct->length, it)))
H A Dx_bignum.c65 * BIGNUM directly. Currently it ignores the sign which isn't a problem since all
72 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
95 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
102 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it) argument
105 if(it->size & BN_SENSITIVE) BN_clear_free((BIGNUM *)*pval);
110 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) argument
127 int utype, char *free_cont, const ASN1_ITEM *it)
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
/external/oprofile/libpp/
H A Dimage_errors.cpp82 list<inverted_profile>::const_iterator it = plist.begin(); local
85 for (; it != end; ++it)
86 report_image_error(*it, false, extra);
H A Dpopulate.cpp36 list<profile_sample_files>::const_iterator it = files.begin(); local
41 for (; it != end; ++it) {
45 if (!it->sample_filename.empty()) {
46 profile.add_sample_file(it->sample_filename);
81 list<image_set>::const_iterator it local
87 // image_set's files - this is because it->app_image
90 for (; it != end; ++it) {
92 if (populate_from_files(profile, abfd, it
[all...]
/external/oprofile/libutil++/
H A Dsparse_array.h29 typename container_type::const_iterator it = container.find(index); local
30 if (it != container.end())
31 return it->second;
50 typename container_type::const_iterator it = rhs.container.begin(); local
52 for ( ; it != it_end; it++)
53 container[it->first] += it->second;
64 typename container_type::const_iterator it = rhs.container.begin(); local
66 for ( ; it !
88 typename container_type::const_iterator it = container.begin(); local
[all...]
/external/protobuf/gtest/src/
H A Dgtest-typed-test.cc59 for (DefinedTestIter it = defined_test_names_.begin();
60 it != defined_test_names_.end();
61 ++it) {
62 if (name == *it) {
76 for (DefinedTestIter it = defined_test_names_.begin();
77 it != defined_test_names_.end();
78 ++it) {
79 if (tests.count(*it) == 0) {
80 errors << "You forgot to list test " << *it << ".\n"; local
/external/protobuf/src/google/protobuf/stubs/
H A Dmap-util.h50 typename Collection::const_iterator it = collection.find(key); local
51 if (it == collection.end()) {
54 return it->second;
64 typename Collection::const_iterator it = collection.find(key); local
65 if (it == collection.end()) {
68 return &it->second;
80 typename Collection::const_iterator it = collection.find(key); local
81 if (it == collection.end()) {
84 return it->second;
/external/regex-re2/util/
H A Darena.cc108 // it separately to avoid wasting too much space in leftover bytes
110 // then it gets its own block in the arena
145 // pointer you pass in was actually allocated by us, or that it
159 vector<AllocatedBlock>::iterator it; local
160 for (it = overflow_blocks_->begin(); it != overflow_blocks_->end(); ++it) {
161 free(it->mem);

Completed in 480 milliseconds

1234567891011>>