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

1234567891011>>

/external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
H A DRangedList.java10 /* A ranged list MUST be set to a begin and end,
19 void beginAt(JavaToken begin) { argument
20 range = range.withBegin(begin);
/external/jsoncpp/src/lib_json/
H A Djson_tool.h76 static inline void fixNumericLocale(char* begin, char* end) { argument
77 while (begin < end) {
78 if (*begin == ',') {
79 *begin = '.';
81 ++begin;
/external/libchrome/base/containers/
H A Dadapters.h29 Iterator begin() const { return t_.rbegin(); } function in class:base::internal::ReversedAdapter
46 Iterator begin() const { return Iterator(&t_[N]); } function in class:base::internal::ReversedAdapter
/external/libchrome/base/metrics/
H A Dhistogram_snapshot_manager.h42 void PrepareDeltas(ForwardHistogramIterator begin, argument
46 for (ForwardHistogramIterator it = begin; it != end; ++it) {
/external/libchrome/base/trace_event/
H A Dcategory_registry.h32 Range(TraceCategory* begin, TraceCategory* end) : begin_(begin), end_(end) { argument
33 DCHECK_LE(begin, end);
35 TraceCategory* begin() const { return begin_; } function in class:base::trace_event::CategoryRegistry::Range
H A Dheap_profiler_stack_frame_deduplicator.h61 ConstIterator begin() const { return frames_.begin(); } function in class:base::trace_event::StackFrameDeduplicator
/external/libcxx/benchmarks/
H A DContainerBenchmarks.hpp14 const auto begin = in.begin(); local
18 Container c(begin, end);
29 for (auto it = in.begin(); it != end; ++it) {
43 for (auto it = in.begin(); it != end; ++it) {
55 c.insert(in.begin(), in.end());
59 for (auto it = in.begin(); it != end; ++it) {
71 c.insert(in.begin(), in.end());
75 for (auto it = in.begin(); it != end; ++it) {
85 c.insert(in.begin(), i
[all...]
/external/libcxx/test/std/iterators/iterator.range/
H A Dbegin-end.fail.cpp17 // template <class C> auto begin(C& c) -> decltype(c.begin());
18 // template <class C> auto begin(const C& c) -> decltype(c.begin());
32 FakeIter begin(const FakeContainer &) { return 1; } function in namespace:Foo
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_timer.h52 LARGE_INTEGER begin, end; member in struct:vpx_usec_timer
54 struct timeval begin, end;
60 QueryPerformanceCounter(&t->begin);
62 gettimeofday(&t->begin, NULL);
78 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
85 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);
H A Diterator_range.h10 /// This provides a very simple, boring adaptor for a begin and end iterator
40 //TODO: Consider ADL/non-member begin/end calls.
41 : begin_iterator(c.begin()), end_iterator(c.end()) {}
46 IteratorT begin() const { return begin_iterator; } function in class:llvm::iterator_range
63 iterator_range<decltype(begin(std::declval<T>()))> drop_begin(T &&t, int n) {
64 return make_range(std::next(begin(t), n), end(t));
/external/llvm/include/llvm/IR/
H A DValueSymbolTable.h89 inline iterator begin() { return vmap.begin(); } function in class:llvm::ValueSymbolTable
92 inline const_iterator begin() const { return vmap.begin(); } function in class:llvm::ValueSymbolTable
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDbgValueHistoryCalculator.h50 InstrRangesMap::const_iterator begin() const { return VarInstrRanges.begin(); } function in class:llvm::DbgValueHistoryMap
/external/llvm/utils/abtest/
H A Dmark_armfns.py17 begin = INVALID variable
31 begin = last_align variable
33 begin = last_globl variable
34 if line == "\n" and begin != INVALID:
36 triple = (funcname, begin, end)
37 begins[begin] = triple
38 begin = INVALID variable
52 in_func, begin, end = triple
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_indirect_object_holder.h65 const_iterator begin() const { return m_IndirectObjs.begin(); } function in class:CPDF_IndirectObjectHolder
/external/pdfium/core/fpdfdoc/
H A Dcpvt_wordrange.h19 CPVT_WordRange(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) argument
20 : BeginPos(begin), EndPos(end) {
29 void Set(const CPVT_WordPlace& begin, const CPVT_WordPlace& end) { argument
30 BeginPos = begin;
35 void SetBeginPos(const CPVT_WordPlace& begin) { argument
36 BeginPos = begin;
/external/perfetto/src/ftrace_reader/test/
H A Dscattered_stream_delegate_for_testing.cc35 uint8_t* begin = chunk.get(); local
36 memset(begin, 0xff, chunk_size_);
38 return {begin, begin + chunk_size_};
/external/piex/src/binary_parse/
H A Dcached_paged_byte_array.cc34 const unsigned char** begin,
41 *begin = cached_pages_[cache_index].begin;
46 cached_pages_.erase(cached_pages_.begin() +
50 paged_byte_array_->getPage(page_index, begin, end, page);
54 cached_pages_.erase(cached_pages_.begin());
62 cache_page.begin = *begin;
33 getPage(size_t page_index, const unsigned char** begin, const unsigned char** end, PagedByteArray::PagePtr* page) const argument
/external/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/protobuf/src/google/protobuf/util/
H A Dtime_util_test.cc50 Timestamp begin, end; local
51 EXPECT_TRUE(TimeUtil::FromString("0001-01-01T00:00:00Z", &begin));
52 EXPECT_EQ(TimeUtil::kTimestampMinSeconds, begin.seconds());
53 EXPECT_EQ(0, begin.nanos());
57 EXPECT_EQ("0001-01-01T00:00:00Z", TimeUtil::ToString(begin));
92 Timestamp begin, end; local
93 EXPECT_TRUE(TimeUtil::FromString("0001-01-01T00:00:00Z", &begin));
96 EXPECT_EQ("315537897599.999999999s", TimeUtil::ToString(end - begin));
97 EXPECT_EQ(999999999, (end - begin).nanos());
98 EXPECT_EQ("-315537897599.999999999s", TimeUtil::ToString(begin
[all...]
/external/skia/src/core/
H A DSkGaussFilter.h33 const double* begin() const { return &fBasis[0]; } function in class:SkGaussFilter
/external/skqp/src/core/
H A DSkGaussFilter.h33 const double* begin() const { return &fBasis[0]; } function in class:SkGaussFilter
/external/swiftshader/src/OpenGL/libGL/
H A DQuery.cpp38 void Query::begin() function in class:gl::Query
63 mQuery->begin();
/external/swiftshader/src/OpenGL/libGLESv2/
H A DQuery.cpp38 void Query::begin() function in class:es2::Query
67 mQuery->begin();
/external/swiftshader/third_party/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 1215 milliseconds

1234567891011>>