Searched defs:begin (Results 176 - 200 of 787) sorted by relevance

1234567891011>>

/external/chromium_org/components/policy/core/common/
H A Dschema_internal.h54 int begin; member in struct:policy::internal::PropertiesNode
59 // If |begin == end| then the map policy that this PropertiesNode corresponds
62 // Note that the range [begin, end) is sorted by PropertyNode::key, so that
74 // values described in the range [begin, end)) then |additional| is an offset
/external/chromium_org/components/translate/core/common/
H A Dtranslate_metrics.cc100 void ReportUserActionDuration(base::TimeTicks begin, base::TimeTicks end) { argument
101 UMA_HISTOGRAM_LONG_TIMES(kTranslateUserActionDuration, end - begin);
113 void ReportLanguageDetectionTime(base::TimeTicks begin, base::TimeTicks end) { argument
114 UMA_HISTOGRAM_MEDIUM_TIMES(kRenderer4LanguageDetection, end - begin);
H A Dtranslate_metrics_unittest.cc244 TimeTicks begin = TimeTicks::Now(); local
245 TimeTicks end = begin + base::TimeDelta::FromSeconds(3776);
246 translate::ReportUserActionDuration(begin, end);
281 TimeTicks begin = TimeTicks::Now(); local
282 TimeTicks end = begin + base::TimeDelta::FromMicroseconds(9009);
283 translate::ReportLanguageDetectionTime(begin, end);
/external/chromium_org/components/visitedlink/test/
H A Dvisitedlink_perftest.cc51 int begin, int end) {
52 for (int i = begin; i < end; i++)
59 int begin, int end) {
60 for (int i = begin; i < end; i++)
185 cold_load_times.erase(std::max_element(cold_load_times.begin(),
187 hot_load_times.erase(std::max_element(hot_load_times.begin(),
50 CheckVisited(VisitedLinkMaster& master, const char* prefix, int begin, int end) argument
58 FillTable(VisitedLinkMaster& master, const char* prefix, int begin, int end) argument
/external/chromium_org/content/browser/indexed_db/
H A Dlist_set.h45 std::find(list_.begin(), list_.end(), elem);
147 iterator begin() { return iterator(list_.begin()); } function in class:list_set
149 const_iterator begin() const { return const_iterator(list_.begin()); } function in class:list_set
/external/chromium_org/content/browser/
H A Dtransition_request_manager.cc31 const std::string::const_iterator begin = header_body.begin(); local
43 begin + url_end + 1, header_body.end(), ';');
52 url->assign(begin + url_start + 1, begin + url_end);
/external/chromium_org/content/common/android/
H A Daddress_parser.cc53 if (FindAddress(text.begin(), text.end(), &start, &end)) {
61 bool FindAddress(const base::string16::const_iterator& begin, argument
75 for (base::string16::const_iterator it = begin; it != end; ) {
118 DCHECK_GT(std::distance(current_word.begin, current_word.end), 0);
120 current_word.begin, current_word.end);
127 if (house_number_parser.Parse(current_word.begin, current_word.end,
173 if (previous_word.end - previous_word.begin == 2 &&
174 LowerCaseEqualsASCII(previous_word.begin, previous_word.end,
176 LowerCaseEqualsASCII(current_word.begin, current_word.end,
197 *start_pos = words[0].begin
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_info_collector_linux.cc55 size_t begin = line.find_first_of("0123456789"); local
56 if (begin != std::string::npos) {
57 size_t end = line.find_first_not_of("0123456789.", begin);
59 return line.substr(begin);
61 return line.substr(begin, end - begin);
/external/chromium_org/net/base/
H A Dlinked_hash_map.h26 // begin/end/find.
50 iterator begin() { function in class:linked_hash_map
51 return list_.begin();
53 const_iterator begin() const { function in class:linked_hash_map
54 return list_.begin();
/external/chromium_org/testing/gtest/src/
H A Dgtest-printers.cc256 // The array starts at begin, the length is len, it may include '\0' characters
263 const CharType* begin, size_t len, ostream* os) {
268 const CharType cur = begin[index];
281 // 'begin'. CharType must be either char or wchar_t.
287 const CharType* begin, size_t len, ostream* os) {
295 if (len > 0 && begin[len - 1] == '\0') {
296 PrintCharsAsStringTo(begin, len - 1, os);
304 PrintCharsAsStringTo(begin, len, os);
308 // Prints a (const) char array of 'len' elements, starting at address 'begin'.
309 void UniversalPrintArray(const char* begin, size_ argument
262 PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) argument
286 UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) argument
315 UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScopeStyleSheetCollection.cpp186 DocumentOrderedList::iterator begin = m_styleSheetCandidateNodes.begin(); local
188 for (DocumentOrderedList::iterator it = begin; it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DSubresourceIntegrity.cpp118 UChar* begin = characters.data(); local
124 if (!equalIgnoringCase(integrityPrefix.characters8(), begin, integrityPrefix.length()))
127 const UChar* algorithmStart = begin + integrityPrefix.length();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridCoordinate.h76 const size_t* firstLineBeforeOppositePosition = std::lower_bound(gridLines.begin(), gridLines.end(), resolvedOppositePosition.toInt());
78 if (*firstLineBeforeOppositePosition > resolvedOppositePosition.toInt() && firstLineBeforeOppositePosition != gridLines.begin())
81 firstLineBeforeOppositePositionIndex = firstLineBeforeOppositePosition - gridLines.begin();
94 const size_t* firstLineAfterOppositePosition = std::upper_bound(gridLines.begin(), gridLines.end(), resolvedOppositePosition.toInt());
96 firstLineAfterOppositePositionIndex = firstLineAfterOppositePosition - gridLines.begin();
127 iterator begin() const function in struct:blink::GridSpan
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DArrayBuffer.h55 // ranging from |begin| upto but not including |end|.
56 inline PassRefPtr<ArrayBuffer> slice(int begin, int end) const;
57 inline PassRefPtr<ArrayBuffer> slice(int begin) const;
73 inline PassRefPtr<ArrayBuffer> sliceImpl(unsigned begin, unsigned end) const;
151 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin, int end) const argument
153 return sliceImpl(clampIndex(begin), clampIndex(end));
156 PassRefPtr<ArrayBuffer> ArrayBuffer::slice(int begin) const
158 return sliceImpl(clampIndex(begin), byteLength());
161 PassRefPtr<ArrayBuffer> ArrayBuffer::sliceImpl(unsigned begin, unsigned end) const argument
163 unsigned size = begin <
[all...]
H A DDeque.h70 iterator begin() { return iterator(this, m_start); } function in class:WTF::Deque
72 const_iterator begin() const { return const_iterator(this, m_start); } function in class:WTF::Deque
75 reverse_iterator rend() { return reverse_iterator(begin()); }
77 const_reverse_iterator rend() const { return const_reverse_iterator(begin()); }
306 for (iterator it = begin(); it != end_iterator; ++it) {
H A DHashCountedSet.h56 iterator begin() { return m_impl.begin(); } function in class:WTF::HashCountedSet
58 const_iterator begin() const { return m_impl.begin(); } function in class:WTF::HashCountedSet
131 iterator it = collection.begin();
144 iterator it = collection.begin();
H A DTerminatedArray.h52 iterator begin() { return iterator(reinterpret_cast<T*>(this)); } function in class:WTF::TerminatedArray
53 const_iterator begin() const { return const_iterator(reinterpret_cast<const T*>(this)); } function in class:WTF::TerminatedArray
61 for (const_iterator it = begin(); it != end(); ++it)
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-printers.cc259 // The array starts at *begin, the length is len, it may include '\0' characters
261 static void PrintCharsAsStringTo(const char* begin, size_t len, ostream* os) { argument
265 const char cur = begin[index];
277 // Prints a (const) char array of 'len' elements, starting at address 'begin'.
278 void UniversalPrintArray(const char* begin, size_t len, ostream* os) { argument
279 PrintCharsAsStringTo(begin, len, os);
283 // The array starts at *begin, the length is len, it may include L'\0'
285 static void PrintWideCharsAsStringTo(const wchar_t* begin, size_t len, argument
290 const wchar_t cur = begin[index];
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordOpts.cpp28 // - a bool onMatch(SkRceord*, Pattern*, unsigned begin, unsigned end) method,
33 // record, and [begin,end) span of the commands that matched.
38 unsigned begin, end = 0; local
40 while (pattern.search(record, &begin, &end)) {
41 changed |= pass->onMatch(record, &pattern, begin, end);
53 bool onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigned end) { argument
54 record->replace<NoOp>(begin); // Save
71 bool onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigned end) { argument
73 for (unsigned i = begin; i < end; i++) {
92 bool onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigne argument
[all...]
H A DSkRecordPattern.h118 // If there is no such span, return false. If there is, return true and set [*begin, *end).
119 SK_ALWAYS_INLINE bool search(SkRecord* record, unsigned* begin, unsigned* end) { argument
120 for (*begin = *end; *begin < record->count(); ++(*begin)) {
121 *end = this->match(record, *begin);
/external/chromium_org/third_party/skia/src/effects/
H A DSk1DPathEffect.cpp20 SkScalar distance = this->begin(length);
166 SkScalar SkPath1DPathEffect::begin(SkScalar contourLength) const { function in class:SkPath1DPathEffect
H A DSk2DPathEffect.cpp32 this->begin(ir, dst);
65 void Sk2DPathEffect::begin(const SkIRect& uvBounds, SkPath* dst) const {} function in class:Sk2DPathEffect
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOrderedSet.h56 Iter begin();
119 typename GrOrderedSet<T,C>::Iter GrOrderedSet<T,C>::begin() { function in class:GrOrderedSet
120 return Iter(fRBTree.begin());
/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.cpp97 std::sort(v.begin(),v.end());
119 std::sort(v.begin(),v.end());
140 v2.insert(v2.begin(),v.begin()+a,v.begin()+b+1);
153 volatile register int64_t begin,end; local
157 begin = rdtsc();
163 return end-begin;
199 std::sort(times.begin(),times.end());
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dstl_util.h47 void STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) { argument
48 while (begin != end) {
49 ForwardIterator temp = begin;
50 ++begin;
63 void STLDeleteContainerPairPointers(ForwardIterator begin, argument
65 while (begin != end) {
66 ForwardIterator temp = begin;
67 ++begin;
77 void STLDeleteContainerPairFirstPointers(ForwardIterator begin, argument
79 while (begin !
91 STLDeleteContainerPairSecondPointers(ForwardIterator begin, ForwardIterator end) argument
[all...]

Completed in 3614 milliseconds

1234567891011>>