Searched defs:it (Results 76 - 100 of 609) sorted by relevance

1234567891011>>

/external/chromium/net/spdy/
H A Dspdy_http_utils.cc28 spdy::SpdyHeaderBlock::const_iterator it; local
29 it = headers.find("status");
30 if (it == headers.end())
32 status = it->second;
35 it = headers.find("version");
36 if (it == headers.end())
38 version = it->second;
46 for (it = headers.begin(); it != headers.end(); ++it) {
[all...]
H A Dspdy_protocol_test.cc219 SpdySettings::const_iterator it = parsed_settings.begin(); local
221 while (it != parsed_settings.end()) {
222 SettingsFlagsAndId parsed = it->first;
223 uint32 value = it->second;
227 ++it;
235 // so we comment it out.
273 // Set the version to various values, and make sure it does not affect the
/external/chromium/net/tools/flip_server/
H A Dbalsa_headers_token_utils.cc29 BalsaHeaders::HeaderLines::iterator it = local
31 if (it == headers->header_lines_.end()) {
40 header_line = it;
41 it = headers->GetHeaderLinesIterator(key, it + 1);
43 while (it != headers->header_lines_.end());
70 BalsaHeaders::const_header_lines_key_iterator it = local
72 if (it == headers.header_lines_key_end())
76 BalsaHeaders::const_header_lines_key_iterator header_line = it;
78 header_line = it;
[all...]
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dplainsaslhandler.h52 std::vector<std::string>::const_iterator it = std::find(mechanisms.begin(), mechanisms.end(), "PLAIN"); local
53 if (it == mechanisms.end()) {
61 // Creates a SaslMechanism for the given mechanism name (you own it
62 // once you get it). If not handled, return NULL.
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp98 StringRef::iterator it = functionName.begin(); local
99 StringRef::iterator start = it;
104 for ( ; it != endI ; ++it) {
106 char ch = *it;
109 if (ch == 'c' && it != start && isalpha(*(it - 1)))
112 ++it;
118 if (it == endI)
123 StringRef suffix = functionName.substr(it
[all...]
/external/guava/guava/src/com/google/common/io/
H A DMultiInputStream.java32 private Iterator<? extends InputSupplier<? extends InputStream>> it; field in class:MultiInputStream
38 * @param it an iterator of I/O suppliers that will provide each substream
41 Iterator<? extends InputSupplier<? extends InputStream>> it)
43 this.it = it;
62 if (it.hasNext()) {
63 in = it.next().getInput();
40 MultiInputStream( Iterator<? extends InputSupplier<? extends InputStream>> it) argument
H A DMultiReader.java32 private final Iterator<? extends InputSupplier<? extends Reader>> it; field in class:MultiReader
37 this.it = readers;
46 if (it.hasNext()) {
47 current = it.next().getInput();
/external/javassist/src/main/javassist/convert/
H A DTransformer.java50 public abstract int transform(CtClass clazz, int pos, CodeIterator it, argument
/external/openssl/crypto/asn1/
H A Da_verify.c11 * apply to all code found in this distribution, be it the RC4, RSA,
134 int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, argument
158 ret = pkey->ameth->item_verify(&ctx, it, asn, a,
194 inl = ASN1_item_i2d(asn, &buf_in, it);
/external/oprofile/libpp/
H A Dsymbol_container.cpp51 typedef symbols_by_loc_t::const_iterator it; typedef
52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol);
69 typedef symbols_by_loc_t::const_iterator it; typedef
70 it first = symbols_by_loc.lower_bound(&symbol);
72 it last = symbols_by_loc.upper_bound(&symbol);
98 symbols_t::const_iterator it; local
99 for (it = symbols.begin(); it != symbols.end(); ++it) {
122 symbols_t::const_iterator it = symbols.find(symbol); local
[all...]
/external/webkit/Source/WebCore/inspector/
H A DInspectorState.cpp79 InspectorObject::iterator it = m_properties->find(propertyName); local
81 if (it != m_properties->end())
82 it->second->asBoolean(&value);
88 InspectorObject::iterator it = m_properties->find(propertyName); local
90 if (it != m_properties->end())
91 it->second->asString(&value);
97 InspectorObject::iterator it = m_properties->find(propertyName); local
99 if (it != m_properties->end())
100 it->second->asNumber(&value);
106 InspectorObject::iterator it local
[all...]
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBIterator.cpp42 LevelDBIterator::LevelDBIterator(leveldb::Iterator* it) argument
43 : m_iterator(it)
/external/webkit/Source/WebCore/platform/text/
H A DTextBoundaries.cpp67 TextBreakIterator* it = wordBreakIterator(chars, len); local
70 position = textBreakFollowing(it, position);
77 position = textBreakFollowing(it, position);
82 position = textBreakPreceding(it, position);
89 position = textBreakPreceding(it, position);
98 TextBreakIterator* it = wordBreakIterator(chars, len); local
99 *end = textBreakFollowing(it, position);
101 *end = textBreakLast(it);
102 *start = textBreakPrevious(it);
/external/webkit/Source/WebCore/storage/
H A DIDBFactoryBackendImpl.cpp77 IDBDatabaseBackendMap::iterator it = m_databaseBackendMap.find(uniqueIdentifier); local
78 if (it != m_databaseBackendMap.end()) {
79 callbacks->onSuccess(it->second);
/external/webkit/Source/WebCore/wml/
H A DWMLTaskElement.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
96 Vector<WMLSetvarElement*>::iterator it = m_variableSetterElements.begin(); local
99 for (; it != end; ++it) {
100 WMLSetvarElement* setterElement = (*it);
H A DWMLTemplateElement.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
110 HashSet<WMLCardElement*>::iterator it = cards.begin(); local
113 for (; it != end; ++it)
114 (*it)->setTemplateElement(temp);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DWebGeolocationManager.cpp86 HashSet<WebPage*>::const_iterator it = m_pageSet.begin(); local
88 for (; it != end; ++it) {
89 WebPage* page = *it;
102 HashSet<WebPage*>::const_iterator it = m_pageSet.begin(); local
104 for (; it != end; ++it) {
105 WebPage* page = *it;
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
111 WpaMsgList::iterator it; local
112 for (it = msgs.begin(); it != msgs.end(); it++)
113 addEvent(*it);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp105 WpaMsgList::iterator it; local
106 for (it = msgs.begin(); it != msgs.end(); it++)
107 addEvent(*it);
/external/clang/lib/Driver/
H A DArg.cpp70 it = ASL.begin(), ie = ASL.end(); it != ie; ++it) {
71 if (it != ASL.begin())
73 OS << *it; local
/external/chromium/base/
H A Dobserver_list_threadsafe.h25 // This is similar to the observer_list (see observer_list.h), but it
65 // define our own templated traits class so we can friend it.
113 return; // On shutdown, it is possible that current() is already null.
131 // when it finishes iterating.
160 typename ObserversListMap::const_iterator it; local
161 for (it = observer_lists_.begin(); it != observer_lists_.end(); ++it)
162 delete (*it).second;
169 typename ObserversListMap::iterator it; local
191 typename ObserversListMap::iterator it = local
216 typename ObserversListMap::iterator it = local
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_protocol_handler.cc90 ToolToListenerMap::const_iterator it = tool_to_listener_map_.find(tool); local
91 if (it == tool_to_listener_map_.end()) {
99 it->second.get(), &DevToolsRemoteListener::HandleMessage, message));
116 for (ToolToListenerMap::const_iterator it = tool_to_listener_map_.begin(),
118 it != end;
119 ++it) {
123 it->second.get(), &DevToolsRemoteListener::OnConnectionLost));
H A Ddevtools_remote_message.cc33 HeaderMap::const_iterator it = header_map_.find(header_name); local
34 if (it == header_map_.end()) {
37 return it->second;
47 for (HeaderMap::const_iterator it = header_map_.begin(),
48 end = header_map_.end(); it != end; ++it) {
49 result.append(it->first).append(":").append(it->second).append("\r\n");
H A Dinspectable_tab_proxy.cc76 for (BrowserList::const_iterator it = BrowserList::begin(),
77 end = BrowserList::end(); it != end; ++it) {
78 TabStripModel* model = (*it)->tabstrip_model();
90 InspectableTabProxy::IdToClientHostMap::const_iterator it = local
92 if (it == id_to_client_host_map_.end()) {
95 return it->second;
109 IdToClientHostMap::iterator it = id_to_client_host_map_.begin(); local
110 it->second->debugger_remote_service()->DetachFromTab(
111 base::IntToString(it
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service.cc12 // Whatever this value is, it should be an order of magnitude longer than
74 std::map<std::string, FunctionHeuristicsMap>::iterator it = local
76 for (; it != function_heuristics_.end(); function_heuristics_.erase(it++))
77 PurgeFunctionHeuristicsMap(&it->second);
101 return false; // It only takes one to spoil it for everyone.
127 // state in the bucket expired recently (it has been long enough since the
132 // next refill interval, so it doesn't matter).
140 // repeat_exhaustion_allowance_ times, it's a violation. Reset the bucket
142 // deduct the token below) so we can detect this each time it happen
[all...]

Completed in 444 milliseconds

1234567891011>>