Searched defs:begin (Results 1 - 25 of 774) sorted by relevance

1234567891011>>

/external/clang/test/Profile/
H A Dprofile-summary.c6 int begin(int i) { function
19 begin(0);
/external/compiler-rt/test/profile/Linux/
H A Dinstrprof-basic.c6 int begin(int i) { function
21 begin(0);
/external/compiler-rt/test/profile/
H A Dinstrprof-basic.c20 int begin(int i) { function
35 begin(0);
/external/elfutils/libdw/
H A Ddwarf_haspc.c44 Dwarf_Addr begin; local
48 &begin, &end)) > 0)
49 if (pc >= begin && pc < end)
/external/guice/extensions/persist/src/com/google/inject/persist/
H A DUnitOfWork.java47 void begin(); method in interface:UnitOfWork
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_pipe.h49 void (*begin)(struct quad_stage *qs); member in struct:quad_stage
/external/pdfium/fpdfsdk/
H A Dcpdfsdk_annotiteration.h24 const_iterator begin() const { return m_List.begin(); } function in class:CPDFSDK_AnnotIteration
/external/skia/src/core/
H A DSkMSAN.h21 static inline void sk_msan_assert_initialized(const void* begin, const void* end) { argument
24 __msan_check_mem_is_initialized(begin, (const char*)end - (const char*)begin);
31 static inline void sk_msan_mark_initialized(const void* begin, const void* end, const char* skbug) { argument
35 __msan_unpoison(begin, (const char*)end - (const char*)begin);
/external/pdfium/xfa/fde/css/
H A Dcfde_cssdeclaration.h40 const_prop_iterator begin() const { return properties_.begin(); } function in class:CFDE_CSSDeclaration
44 return custom_properties_.begin();
/external/skia/tests/
H A DRecordPatternTest.cpp109 int start, begin, end; local
117 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end));
118 REPORTER_ASSERT(r, begin == start);
128 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end));
137 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end));
138 REPORTER_ASSERT(r, begin == start);
141 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end));
/external/v8/src/asmjs/
H A Dswitch-logic.h17 const int begin; member in struct:v8::internal::wasm::CaseNode
21 CaseNode(int begin, int end) : begin(begin), end(end) { argument
/external/valgrind/memcheck/tests/solaris/
H A Dbrk.c10 static char *begin = (char *)&_end; variable
19 if (*begin)
24 tmp = syscall(SYS_brk, begin + 1);
26 if (*begin)
30 tmp = syscall(SYS_brk, begin);
32 if (*begin)
47 tmp = syscall(SYS_brk, begin + i);
53 tmp = syscall(SYS_brk, begin + MAX_SIZE - 1 - i);
64 tmp = syscall(SYS_brk, begin - 1);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DUnivariateStatistic.java40 * @param begin the index of the first element to include
44 double evaluate(double[] values, int begin, int length); argument
H A DWeightedEvaluation.java43 * @param begin the index of the first element to include
47 double evaluate(double[] values, double[] weights, int begin, int length); argument
/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/glide/library/src/main/java/com/bumptech/glide/request/
H A DRequest.java11 void begin(); method in interface:Request
/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 Dheap_profiler_stack_frame_deduplicator.h59 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/libtextclassifier/common/
H A Dvector-span.h30 : begin_(v.begin()), end_(v.end()) {}
31 VectorSpan(typename std::vector<T>::const_iterator begin, argument
33 : begin_(begin), end_(end) {}
40 typename std::vector<T>::const_iterator begin() const { return begin_; } function in class:libtextclassifier::VectorSpan
/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);

Completed in 866 milliseconds

1234567891011>>