Searched defs:begin (Results 26 - 50 of 787) sorted by relevance

1234567891011>>

/external/chromium_org/content/renderer/android/
H A Demail_detector.cc45 bool EmailDetector::FindContent(const base::string16::const_iterator& begin, argument
50 base::string16 utf16_input = base::string16(begin, end);
/external/chromium_org/extensions/common/
H A Durl_pattern_set.h60 const_iterator begin() const { return patterns_.begin(); } function in class:extensions::URLPatternSet
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedList.cpp43 iterator begin = m_nodes.begin(); local
56 } while (it != begin);
H A DDocumentOrderedList.h54 iterator begin() { return m_nodes.begin(); } function in class:blink::FINAL
H A DDocumentStyleSheetCollection.cpp48 DocumentOrderedList::iterator begin = m_styleSheetCandidateNodes.begin(); local
50 for (DocumentOrderedList::iterator it = begin; it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DMediaListDirective.cpp29 void MediaListDirective::parse(const UChar* begin, const UChar* end) argument
31 const UChar* position = begin;
48 begin = position;
51 policy()->reportInvalidPluginTypes(String(begin, position - begin));
60 policy()->reportInvalidPluginTypes(String(begin, position - begin));
68 policy()->reportInvalidPluginTypes(String(begin, position - begin));
77 policy()->reportInvalidPluginTypes(String(begin, positio
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteTransaction.cpp46 void SQLiteTransaction::begin() function in class:blink::SQLiteTransaction
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DQuery.cpp25 Error Query::begin() function in class:gl::Query
27 return mQuery->begin();
/external/chromium_org/third_party/blanketjs/src/
H A Dqunit_adapter.js17 QUnit.begin=function(){
46 QUnit.begin(function(){
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dstl_util.h32 void STLDeleteContainerPairSecondPointers(const ForwardIterator& begin, argument
34 for (ForwardIterator it = begin; it != end; ++it) {
42 for (typename T::iterator it = container->begin(); it != container->end();
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
H A Dunilib.cc48 int SpanInterchangeValid(const char* begin, int byte_length) { argument
50 const char* p = begin;
51 const char* end = begin + byte_length;
63 return p - begin;
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Dvpx_timer.h52 LARGE_INTEGER begin, end; member in struct:vpx_usec_timer
54 struct timeval begin, end;
62 QueryPerformanceCounter(&t->begin);
64 gettimeofday(&t->begin, NULL);
84 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
91 timersub(&t->end, &t->begin, &diff);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Ddevice.hpp88 iterator begin() { function in class:clover::device_registry
89 return devs.begin();
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstl_util.h52 void STLDeleteContainerPointers(ForwardIterator begin, argument
54 while (begin != end) {
55 ForwardIterator temp = begin;
56 ++begin;
85 return str->empty() ? NULL : &*str->begin();
90 // hash_set, or any other STL container which defines sensible begin(), end(),
101 STLDeleteContainerPointers(container->begin(), container->end());
112 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dvdso_support.h83 SymbolIterator begin() const { return image_.begin(); } function in class:base::VDSOSupport
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dvdso_support.h83 SymbolIterator begin() const { return image_.begin(); } function in class:base::VDSOSupport
/external/chromium_org/tools/gn/
H A Dlocation.cc66 LocationRange::LocationRange(const Location& begin, const Location& end) argument
67 : begin_(begin),
H A Dlocation.h40 // The end is exclusive i.e. [begin, end)
44 LocationRange(const Location& begin, const Location& end);
46 const Location& begin() const { return begin_; } function in class:LocationRange
/external/chromium_org/ui/base/x/
H A Dselection_utils.h84 const_iterator begin() const { return data_.begin(); } function in class:ui::SelectionFormatMap
/external/chromium_org/url/
H A Durl_parse_file.cc131 int begin = 0; local
132 TrimURL(spec, &begin, &spec_len);
135 int num_slashes = CountConsecutiveSlashes(spec, begin, spec_len);
144 after_slashes = begin + num_slashes;
149 } else if (DoesBeginUNCPath(spec, begin, spec_len, false)) {
152 after_scheme = begin;
161 ExtractScheme(&spec[begin], spec_len - begin, &parsed->scheme)) {
163 parsed->scheme.begin += begin;
[all...]
H A Durl_parse_internal.h25 // Given an already-initialized begin index and length, this shrinks the range
27 // indicate the length of untrimmed data from |*begin|, but rather the position
28 // in the input string (so the string starts at character |*begin| in the spec,
31 inline void TrimURL(const CHAR* spec, int* begin, int* len, argument
34 while (*begin < *len && ShouldTrimFromURL(spec[*begin]))
35 (*begin)++;
41 while (*len > *begin && ShouldTrimFromURL(spec[*len - 1]))
/external/chromium_org/v8/src/compiler/
H A Dgeneric-algorithm-inl.h25 static Iterator begin(Node* node) { return node->inputs().begin(); } function in class:v8::internal::compiler::NodeInputIterationTraits
38 static Iterator begin(Node* node) { return node->uses().begin(); } function in class:v8::internal::compiler::NodeUseIterationTraits
/external/clang/test/SemaCXX/
H A DPR11358.cpp8 iterator begin() { return iterator(); } function in struct:test1::container
15 Container::iterator i = c.begin(); // expected-error{{missing 'typename'}}
25 const_iterator begin() const;
31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_timer.h49 LARGE_INTEGER begin, end; member in struct:vpx_usec_timer
51 struct timeval begin, end;
59 QueryPerformanceCounter(&t->begin);
61 gettimeofday(&t->begin, NULL);
81 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
88 timersub(&t->end, &t->begin, &diff);
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h36 PriorityQueue(Iterator begin, Iterator end, argument
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
50 std::find(this->c.begin(), this->c.end(), t) - this->c.begin();
72 std::make_heap(this->c.begin(), this->c.end(), this->comp);

Completed in 594 milliseconds

1234567891011>>