HomeSort by relevance Sort by last modified time
    Searched defs:iter (Results 426 - 450 of 1420) sorted by null

<<11121314151617181920>>

  /external/chromium_org/media/filters/
vpx_video_decoder.cc 274 vpx_codec_iter_t iter = NULL; local
275 const vpx_image_t* vpx_image = vpx_codec_get_frame(vpx_codec_, &iter);
  /external/chromium_org/net/proxy/
proxy_list.cc 56 std::vector<ProxyServer>::const_iterator iter = proxies_.begin(); local
57 for (; iter != proxies_.end(); ++iter) {
59 proxy_retry_info.find(iter->ToURI());
64 bad_proxies.push_back(*iter);
68 good_proxies.push_back(*iter);
78 std::vector<ProxyServer>::const_iterator iter = proxies_.begin(); local
79 for (; iter != proxies_.end(); ++iter) {
81 proxy_retry_info.find(iter->ToURI())
151 std::vector<ProxyServer>::const_iterator iter = proxies_.begin(); local
201 ProxyRetryInfoMap::iterator iter = proxy_retry_info->find(proxy_key); local
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util.cc 191 RuleMap::const_iterator iter = extra_rules.find(extra_rule_domain); local
195 if (iter == extra_rules.end()) {
205 extra_rule.is_private = is_private && iter->second.is_private;
222 for (RuleMap::const_iterator iter = extra_rules.begin();
223 iter != extra_rules.end();
224 ++iter) {
225 if (rules->find(iter->first) == rules->end()) {
226 (*rules)[iter->first] = iter->second;
  /external/chromium_org/net/url_request/
view_cache_helper.cc 313 void* iter = NULL; local
315 while (response.headers->EnumerateHeaderLines(&iter, &name, &value)) {
  /external/chromium_org/ppapi/proxy/
flash_resource.cc 112 LocalTimeZoneOffsetCache::iterator iter = cache.Get(t_minute_base); local
114 if (iter != cache.end() && now < iter->second.expiration)
115 return iter->second.offset;
  /external/chromium_org/ppapi/tests/
test_case.cc 190 std::map<std::string, bool>::iterator iter = filter_tests_.find(test_name); local
191 if (iter == filter_tests_.end()) {
198 return iter->second;
testing_instance.cc 204 std::set<std::string>::const_iterator iter =
206 for (; iter != current_case_->skipped_tests().end(); ++iter) {
207 errors_.append(*iter);
217 std::map<std::string, bool>::const_iterator iter = local
219 for (; iter != current_case_->remaining_tests().end(); ++iter) {
220 errors_.append(iter->first);
239 TestCaseFactory* iter = TestCaseFactory::head_; local
240 while (iter != NULL)
263 TestCaseFactory* iter = TestCaseFactory::head_; local
    [all...]
  /external/chromium_org/remoting/codec/
video_decoder_vpx.cc 109 vpx_codec_iter_t iter = NULL; local
110 vpx_image_t* image = vpx_codec_get_frame(codec_.get(), &iter);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
trap.cc 244 TrapIds::const_iterator iter = trap_ids_.find(key); local
255 if (iter != trap_ids_.end()) {
258 id = iter->second;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLViewSourceDocument.cpp 138 HTMLToken::AttributeList::const_iterator iter = token.attributes().begin(); local
140 if (iter == token.attributes().end()) {
147 AtomicString name(iter->name);
148 String value = StringImpl::create8BitIfPossible(iter->value);
150 index = addRange(source, index, iter->nameRange.start - token.startIndex(), "");
151 index = addRange(source, index, iter->nameRange.end - token.startIndex(), "webkit-html-attribute-name");
156 index = addRange(source, index, iter->valueRange.start - token.startIndex(), "");
159 index = addRange(source, index, iter->valueRange.end - token.startIndex(), "webkit-html-attribute-value", isLink, tagName == aTag, value);
161 ++iter;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 207 JSONArrayBase::iterator iter; local
208 for (iter = touchPoints->begin(); iter != touchPoints->end(); ++iter) {
213 (*iter)->asObject(&pointObj);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
MacroExpander.cpp 78 MacroSet::const_iterator iter = mMacroSet->find(token->text); local
79 if (iter == mMacroSet->end())
82 const Macro& macro = iter->second;
347 Macro::Parameters::const_iterator iter = std::find( local
349 if (iter == macro.parameters.end())
355 std::size_t iArg = std::distance(macro.parameters.begin(), iter);
  /external/chromium_org/third_party/leveldatabase/src/table/
two_level_iterator.cc 49 } else if (data_iter_.iter() != NULL && !data_iter_.status().ok()) {
94 if (data_iter_.iter() != NULL) data_iter_.Seek(target);
101 if (data_iter_.iter() != NULL) data_iter_.SeekToFirst();
108 if (data_iter_.iter() != NULL) data_iter_.SeekToLast();
126 while (data_iter_.iter() == NULL || !data_iter_.Valid()) {
134 if (data_iter_.iter() != NULL) data_iter_.SeekToFirst();
139 while (data_iter_.iter() == NULL || !data_iter_.Valid()) {
147 if (data_iter_.iter() != NULL) data_iter_.SeekToLast();
152 if (data_iter_.iter() != NULL) SaveError(data_iter_.status());
161 if (data_iter_.iter() != NULL && handle.compare(data_block_handle_) == 0)
165 Iterator* iter = (*block_function_)(arg_, options_, handle); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
linux.cc 167 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); local
168 if (iter == sections_[section_num].end()) {
171 *result = iter->second;
181 ConfigParser::SimpleMap::iterator iter = sections_[section_num].find(key); local
182 if (iter == sections_[section_num].end()) {
185 return FromString(iter->second, result);
  /external/chromium_org/third_party/libjingle/source/talk/examples/chat/
chatapp.cc 112 for (RosterList::iterator iter = roster_list_.begin();
113 iter != roster_list_.end(); ++iter) {
114 const buzz::Jid& jid = iter->second.jid();
135 for (RosterList::iterator iter = roster_list_.begin();
136 iter != roster_list_.end() && found_index <= index; ++iter) {
138 *status = iter->second;
224 RosterList::iterator iter = roster_list_.find(status.jid().Str()); local
225 if (iter != roster_list_.end())
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.cc 73 std::vector<DataCodec>::const_iterator iter; local
74 for (iter = codecs.begin(); iter != codecs.end(); ++iter) {
75 if (iter->id == id) {
76 *codec_out = *iter;
85 std::vector<DataCodec>::const_iterator iter; local
86 for (iter = codecs.begin(); iter != codecs.end(); ++iter) {
112 std::map<uint32, RtpClock*>::const_iterator iter; local
128 std::vector<DataCodec>::const_iterator iter; local
139 std::vector<DataCodec>::const_iterator iter; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portallocatorsessionproxy.cc 136 std::vector<PortAllocatorSessionProxy*>::iterator iter = local
138 if (iter != session_proxies_.end()) {
145 std::vector<PortAllocatorSessionProxy*>::iterator iter = local
147 if (iter != session_proxies_.end()) {
sessionmanager.cc 70 ClientMap::iterator iter = client_map_.find(content_type); local
71 ASSERT(iter != client_map_.end());
72 client_map_.erase(iter);
76 ClientMap::iterator iter = client_map_.find(content_type); local
77 return (iter != client_map_.end()) ? iter->second : NULL;
147 SessionMap::iterator iter = session_map_.find(sid); local
148 if (iter == session_map_.end())
151 Session* session = iter->second;
  /external/chromium_org/third_party/libwebp/webp/
demux.h 24 // WebPIterator iter;
25 // if (WebPDemuxGetFrame(demux, 1, &iter)) {
27 // // ... (Consume 'iter'; e.g. Decode 'iter.fragment' with WebPDecode(),
30 // } while (WebPDemuxNextFrame(&iter));
31 // WebPDemuxReleaseIterator(&iter);
147 // 'iter->fragment' points to the first fragment on return from this function.
152 // NOTE: 'dmux' must persist for the lifetime of 'iter'.
154 const WebPDemuxer* dmux, int frame_number, WebPIterator* iter);
156 // Sets 'iter->fragment' to point to the next ('iter->frame_num' + 1) o
159 WEBP_EXTERN(int) WebPDemuxNextFrame(WebPIterator* iter); variable
160 WEBP_EXTERN(int) WebPDemuxPrevFrame(WebPIterator* iter); variable
170 WEBP_EXTERN(void) WebPDemuxReleaseIterator(WebPIterator* iter); variable
202 WEBP_EXTERN(int) WebPDemuxNextChunk(WebPChunkIterator* iter); variable
203 WEBP_EXTERN(int) WebPDemuxPrevChunk(WebPChunkIterator* iter); variable
208 WEBP_EXTERN(void) WebPDemuxReleaseChunkIterator(WebPChunkIterator* iter); variable
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_cache.c 178 struct cso_hash_iter iter = cso_hash_first_node(hash); local
179 void *cso = cso_hash_take(hash, cso_hash_iter_key(iter));
211 struct cso_hash_iter iter = cso_hash_find(hash, hash_key); local
212 while (!cso_hash_iter_is_null(iter)) {
213 void *iter_data = cso_hash_iter_data(iter);
219 iter = cso_hash_iter_next(iter);
229 struct cso_hash_iter iter = cso_find_state(sc, hash_key, type); local
230 while (!cso_hash_iter_is_null(iter)) {
231 void *iter_data = cso_hash_iter_data(iter);
267 struct cso_hash_iter iter; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
text.c 85 struct cso_hash_iter iter; local
87 iter = cso_hash_find(font->glyphs, (unsigned) glyphIndex);
88 return (struct vg_glyph *) cso_hash_iter_data(iter);
149 struct cso_hash_iter iter; local
153 iter = cso_hash_first_node(font->glyphs);
154 while (!cso_hash_iter_is_null(iter)) {
155 struct vg_glyph *glyph = (struct vg_glyph *) cso_hash_iter_data(iter);
157 iter = cso_hash_iter_next(iter);
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_controls.cpp 99 ir_constant *iter = div->constant_expression_value(); local
101 if (iter == NULL)
104 if (!iter->type->is_integer()) {
106 new(mem_ctx) ir_expression(ir_unop_f2i, glsl_type::int_type, iter,
109 iter = cast->constant_expression_value();
112 int iter_value = iter->get_int_component(0);
126 iter = (increment->type->is_integer())
131 new(mem_ctx) ir_expression(ir_binop_mul, increment->type, iter,
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 208 struct _mesa_symbol_table_iterator *iter = calloc(1, sizeof(*iter)); local
211 iter->name_space = name_space;
220 iter->curr = sym;
226 return iter;
231 _mesa_symbol_table_iterator_dtor(struct _mesa_symbol_table_iterator *iter)
233 free(iter);
238 _mesa_symbol_table_iterator_get(struct _mesa_symbol_table_iterator *iter)
240 return (iter->curr == NULL) ? NULL : iter->curr->data
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
pkcs8.c 79 int iter = PKCS12_DEFAULT_ITER; local
159 iter = 1;
313 NULL, 0, iter, p8inf)))
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
p5_crpt2.c 81 const unsigned char *salt, int saltlen, int iter,
123 for(j = 1; j < iter; j++)
140 fprintf(stderr, "Iteration count %d\n", iter);
148 const unsigned char *salt, int saltlen, int iter,
151 return PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, EVP_sha1(),
236 int saltlen, iter, plen; local
304 iter = ASN1_INTEGER_get(kdf->iter);
305 if(!PKCS5_PBKDF2_HMAC(pass, passlen, salt, saltlen, iter, prfmd,

Completed in 461 milliseconds

<<11121314151617181920>>