Searched defs:begin (Results 276 - 300 of 787) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc29 for (std::string::const_iterator it = input.begin(); it != input.end();
346 std::string::const_iterator begin, std::string::const_iterator end) {
348 std::string::const_iterator delimiter = std::find(begin, end, ';');
350 std::string::const_iterator type_begin = begin;
358 return begin;
398 std::string::const_iterator pos = header.begin();
345 ConsumeDispositionType( std::string::const_iterator begin, std::string::const_iterator end) argument
H A Dhttp_security_headers.cc23 bool MaxAgeToInt(std::string::const_iterator begin, argument
26 const std::string s(begin, end);
51 for (HashValueVector::const_iterator i = pins.begin(); i != pins.end();
54 std::find_if(from_cert_chain.begin(), from_cert_chain.end(),
67 for (HashValueVector::const_iterator i = a.begin(); i != a.end(); ++i) {
69 std::find_if(b.begin(), b.end(), HashValuesEqual(*i));
99 std::string::const_iterator start = source.begin();
225 if (!MaxAgeToInt(unquoted.begin(), unquoted.end(), &max_age_candidate))
298 !MaxAgeToInt(equals.second.begin(), equals.second.end(),
326 for (HashValueVector::const_iterator i = pins.begin();
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_header_table_test.cc41 HpackHeaderTable::EntryTable::iterator begin, end; local
42 table_->EvictionSet(name, value, &begin, &end);
44 for (; begin != end; ++begin) {
45 result.push_back(&(*begin));
113 for (HpackEntryVector::const_iterator it = entries.begin();
115 HpackHeaderTable::EntryTable::iterator begin, end; local
117 table_.EvictionSet(it->name(), it->value(), &begin, &end);
118 EXPECT_EQ(0, distance(begin, end));
351 for (HpackEntryVector::iterator it = entries.begin();
[all...]
H A Dhpack_huffman_table_test.cc54 std::vector<DecodeEntry>::const_iterator begin = local
55 table_.decode_entries_.begin() + decode_table.entries_offset;
56 return std::vector<DecodeEntry>(begin, begin + decode_table.size());
197 // Canonical codes must begin with zero.
/external/chromium_org/net/websockets/
H A Dwebsocket_frame.cc31 char* const begin,
33 for (char* masked = begin; masked != end; ++masked) {
28 MaskWebSocketFramePayloadByBytes( const net::WebSocketMaskingKey& masking_key, size_t masking_key_offset, char* const begin, char* const end) argument
/external/chromium_org/sandbox/win/src/
H A Dhandle_table.h130 Iterator begin() const { function in class:sandbox::HandleTable
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-printers.h279 for (typename C::const_iterator it = container.begin();
616 // UniversalPrintArray(begin, len, os) prints an array of 'len'
617 // elements, starting at address 'begin'.
619 void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { argument
631 PrintRawArrayTo(begin, len, os);
633 PrintRawArrayTo(begin, kChunkSize, os);
635 PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os);
642 const char* begin, size_t len, ::std::ostream* os);
646 const wchar_t* begin, size_t len, ::std::ostream* os);
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPSourceList.cpp19 static bool isSourceListNone(const UChar* begin, const UChar* end) argument
21 skipWhile<UChar, isASCIISpace>(begin, end);
23 const UChar* position = begin;
25 if (!equalIgnoringCase("'none'", begin, position - begin))
97 void CSPSourceList::parse(const UChar* begin, const UChar* end) argument
100 if (isSourceListNone(begin, end))
103 const UChar* position = begin;
137 bool CSPSourceList::parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, String& path, CSPSource::WildcardDisposition& hostWildcard, CSPSource::WildcardDisposition& portWildcard) argument
139 if (begin
261 parseNonce(const UChar* begin, const UChar* end, String& nonce) argument
285 parseHash(const UChar* begin, const UChar* end, DigestValue& hash, ContentSecurityPolicyHashAlgorithm& hashAlgorithm) argument
343 parseScheme(const UChar* begin, const UChar* end, String& scheme) argument
369 parseHost(const UChar* begin, const UChar* end, String& host, CSPSource::WildcardDisposition& hostWildcard) argument
407 parsePath(const UChar* begin, const UChar* end, String& path) argument
428 parsePort(const UChar* begin, const UChar* end, int& port, CSPSource::WildcardDisposition& portWildcard) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTime.h81 SMILInterval(const SMILTime& begin, const SMILTime& end) : begin(begin), end(end) { } argument
83 SMILTime begin; member in struct:blink::SMILInterval
108 return a.begin.value() != b.begin.value() || a.end.value() != b.end.value();
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyHelper.h96 ConstIterator begin() const function in class:blink::SVGListPropertyHelper
98 return ConstIterator(m_values.begin());
103 return ConstIterator(m_values.begin() + m_values.size() - 1);
201 typename Vector<RefPtr<ItemPropertyType> >::const_iterator it = m_values.begin();
376 typename Vector<RefPtr<ItemPropertyType> >::const_iterator it = from->m_values.begin();
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.h206 iterator begin() { return m_data.begin(); } function in class:blink::JSONObjectBase
208 const_iterator begin() const { return m_data.begin(); } function in class:blink::JSONObjectBase
247 using JSONObjectBase::begin;
282 iterator begin() { return m_data.begin(); } function in class:blink::JSONArrayBase
284 const_iterator begin() const { return m_data.begin(); } function in class:blink::JSONArrayBase
313 using JSONArrayBase::begin;
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMapTest.cpp43 EXPECT_TRUE(map.begin() != map.end());
44 EXPECT_FALSE(map.begin() == map.end());
46 IntHashMap::const_iterator begin = map.begin(); local
47 EXPECT_TRUE(begin == map.begin());
48 EXPECT_TRUE(map.begin() == begin);
49 EXPECT_TRUE(begin != map.end());
50 EXPECT_TRUE(map.end() != begin);
[all...]
H A DHashSet.h73 iterator begin() const;
151 inline typename HashSet<T, U, V, W>::iterator HashSet<T, U, V, W>::begin() const function in class:WTF::HashSet
153 return m_impl.begin();
259 return take(begin());
269 iterator it = collection.begin();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DCaps.cpp39 for (SupportedSampleSet::const_iterator i = sampleCounts.begin(); i != sampleCounts.end(); i++)
72 TextureCapsMap::const_iterator TextureCapsMap::begin() const function in class:gl::TextureCapsMap
74 return mCapsMap.begin();
/external/chromium_org/third_party/leveldatabase/src/db/
H A Ddb_impl.h43 virtual void CompactRange(const Slice* begin, const Slice* end);
47 // Compact any files in the named level that overlap [*begin,*end]
48 void TEST_CompactRange(int level, const Slice* begin, const Slice* end);
165 const InternalKey* begin; // NULL means beginning of key range member in struct:leveldb::DBImpl::ManualCompaction
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Ddata_socket.cc204 bool DataSocket::ParseMethodAndPath(const char* begin, size_t len) { argument
218 isspace(begin[supported_methods[i].method_name_len]) &&
219 strncmp(begin, supported_methods[i].method_name,
222 path = begin + supported_methods[i].method_name_len;
227 const char* end = begin + len;
232 begin = path;
236 request_path_.assign(begin, path - begin);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.h124 iterator begin() const { return ptr_; } function in class:i18n::phonenumbers::StringPiece
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c144 * Redirect all writes in the instruction range [begin, end) to proxy
149 struct rc_instruction * begin,
157 for(struct rc_instruction * inst = begin; inst != end; inst = inst->Next) {
164 struct rc_instruction * inst_mov = rc_insert_new_instruction(s->C, begin->Prev);
147 allocate_and_insert_proxies(struct emulate_branch_state * s, struct register_proxies * proxies, struct rc_instruction * begin, struct rc_instruction * end) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dcompat.hpp73 p(alloc(v.size(), &*v.begin(), v.size())), n(v.size()) {
124 begin() { function in class:clover::compat::vector
129 begin() const { function in class:clover::compat::vector
165 vector_ref(C &v) : p(&*v.begin()), n(v.size()) {
174 begin() { function in class:clover::compat::vector_ref
179 begin() const { function in class:clover::compat::vector_ref
224 std::memcpy(p, buf.begin() + offset, n);
242 std::memcpy(buf.begin() + offset, p, n);
261 return std::string(begin(), end());
267 if (!std::memcmp(begin()
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-printers.h275 for (typename C::const_iterator it = container.begin();
608 // UniversalPrintArray(begin, len, os) prints an array of 'len'
609 // elements, starting at address 'begin'.
611 void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { argument
623 PrintRawArrayTo(begin, len, os);
625 PrintRawArrayTo(begin, kChunkSize, os);
627 PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os);
633 GTEST_API_ void UniversalPrintArray(const char* begin,
/external/chromium_org/third_party/opus/src/src/
H A Drepacketizer.c102 opus_int32 opus_repacketizer_out_range_impl(OpusRepacketizer *rp, int begin, int end, argument
111 if (begin<0 || begin>=end || end>rp->nb_frames)
113 /*fprintf(stderr, "%d %d %d\n", begin, end, rp->nb_frames);*/
116 count = end-begin;
118 len = rp->len+begin;
119 frames = rp->frames+begin;
228 opus_int32 opus_repacketizer_out_range(OpusRepacketizer *rp, int begin, int end, unsigned char *data, opus_int32 maxlen) argument
230 return opus_repacketizer_out_range_impl(rp, begin, end, data, maxlen, 0, 0);
/external/chromium_org/third_party/ply/
H A Dlex.py246 self.begin('INITIAL')
261 # begin() - Changes the lexing state
263 def begin(self,state): member in class:Lexer
277 self.begin(state)
283 self.begin(self.lexstatestack.pop())
/external/chromium_org/third_party/re2/re2/
H A Dstringpiece.h130 iterator begin() const { return ptr_; } function in class:re2::StringPiece
/external/chromium_org/third_party/re2/util/
H A Dsparse_array.h121 iterator begin() { function in class:re2::SparseArray
122 return dense_.begin();
125 return dense_.begin() + size_;
128 const_iterator begin() const { function in class:re2::SparseArray
129 return dense_.begin();
132 return dense_.begin() + size_;
156 // sort(arr.begin(), arr.end(), arr.less);
191 // for (i = m.begin(); i != m.end(); ++i) {
312 // the user did something stupid, so begin() insulates them from
314 return begin();
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkTArray.h273 T* begin() { function in class:SkTArray
276 const T* begin() const { function in class:SkTArray

Completed in 652 milliseconds

<<11121314151617181920>>