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

1234567891011>>

/external/skia/src/gpu/gl/
H A DGrGLGpuCommandBuffer.cpp13 void GrGLGpuRTCommandBuffer::begin() { function in class:GrGLGpuRTCommandBuffer
/external/skqp/src/gpu/gl/
H A DGrGLGpuCommandBuffer.cpp13 void GrGLGpuRTCommandBuffer::begin() { function in class:GrGLGpuRTCommandBuffer
/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/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
H A DModifierHolder.java17 final JavaToken begin; field in class:ModifierHolder
19 ModifierHolder(JavaToken begin, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations) { argument
20 this.begin = begin;
/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/skqp/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/core/fxcrt/css/
H A Dcfx_cssdeclaration.h40 const_prop_iterator begin() const { return properties_.begin(); } function in class:CFX_CSSDeclaration
44 return custom_properties_.begin();
/external/perfetto/include/perfetto/protozero/
H A Dcontiguous_memory_range.h28 uint8_t* begin; member in struct:protozero::ContiguousMemoryRange
31 inline bool is_valid() const { return begin != nullptr; }
32 inline void reset() { begin = nullptr; }
33 inline size_t size() { return static_cast<size_t>(end - begin); }
/external/skia/experimental/sksg/
H A DSkSGInvalidationController.h31 const SkRect* begin() const { return fRects.begin(); } function in class:sksg::InvalidationController
/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/skqp/experimental/sksg/
H A DSkSGInvalidationController.h31 const SkRect* begin() const { return fRects.begin(); } function in class:sksg::InvalidationController
/external/skqp/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/javaparser/javaparser-core/src/main/java/com/github/javaparser/
H A DTokenRange.java14 private final JavaToken begin; field in class:TokenRange
17 public TokenRange(JavaToken begin, JavaToken end) { argument
18 this.begin = assertNotNull(begin);
23 return begin;
31 if (begin.getRange().isPresent() && end.getRange().isPresent()) {
32 return Optional.of(new Range(begin.getRange().get().begin, end.getRange().get().end));
37 public TokenRange withBegin(JavaToken begin) { argument
38 return new TokenRange(assertNotNull(begin), en
[all...]

Completed in 7930 milliseconds

1234567891011>>