Home
last modified time | relevance | path

Searched +defs:from +defs:begin (Results 1 – 25 of 78) sorted by relevance

1234

/external/angle/src/common/
DPackedEnums.h64 EnumIterator<E> begin() const { return {static_cast<E>(0)}; } in begin() function
117 iterator begin() noexcept { return mPrivateData.begin(); } in begin() function
118 const_iterator begin() const noexcept { return mPrivateData.begin(); } in begin() function
196 angle::EnumIterator<TextureTarget> begin() const { return kCubeMapTextureTargetMin; } in begin() function
209 angle::EnumIterator<ShaderType> begin() const { return kShaderTypeMin; } in begin() function
268 constexpr GLenum ToGLenum(PrimitiveMode from) in ToGLenum()
321 constexpr GLenum ToGLenum(DrawElementsType from) in ToGLenum()
358 constexpr GLenum ToGLenum(BlendEquationType from) in ToGLenum()
423 constexpr GLenum ToGLenum(BlendFactorType from) in ToGLenum()
503 constexpr GLenum ToGLenum(VertexAttribType from) in ToGLenum()
[all …]
/external/llvm-project/mlir/include/mlir/IR/
DSymbolTable.h117 static T lookupNearestSymbolFrom(Operation *from, StringRef symbol) { in lookupNearestSymbolFrom()
121 static T lookupNearestSymbolFrom(Operation *from, SymbolRefAttr symbol) { in lookupNearestSymbolFrom()
151 iterator begin() const { return uses.begin(); } in begin() function
246 T lookupNearestSymbolFrom(Operation *from, StringRef symbol) { in lookupNearestSymbolFrom()
250 T lookupNearestSymbolFrom(Operation *from, SymbolRefAttr symbol) { in lookupNearestSymbolFrom()
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DRangedConstraintManager.h29 Range(const llvm::APSInt &from, const llvm::APSInt &to) in Range()
87 iterator begin() const { return ranges.begin(); } in begin() function
93 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) in RangeSet()
/external/openscreen/util/
Dyet_another_bit_vector_unittest.cc31 const auto begin = absl::c_lower_bound(kTestSizes, first); in GetTestSizesInRange() local
45 void FillWithPattern(uint8_t pattern, int from, YetAnotherBitVector* v) { in FillWithPattern()
182 for (int begin : GetTestSizesInRange(0, size)) { in TEST() local
193 for (int begin : GetTestSizesInRange(0, size)) { in TEST() local
206 for (int begin : GetTestSizesInRange(0, size)) { in TEST() local
/external/tensorflow/tensorflow/compiler/jit/
Dresource_operation_safety_analysis.cc135 bool IsEdgeSafe(XlaResourceOpKind from, XlaResourceOpKind to) { in IsEdgeSafe()
194 Impl::const_iterator begin() const { in begin() function in tensorflow::__anond936596f0111::ResourceOpSet
/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
Dlinq.hpp528 …iterator begin() const { auto cur = c.get_cursor(); return !cur.empty() ? iterator(cur) : iterato… in begin() function in cpplinq::linq_driver
556 linq_driver<iter_cursor<typename util::container_traits<TContainer>::iterator>> from(TContainer& c) in from() function
562 const linq_driver<T>& from(const linq_driver<T>& c) in from() function
567 linq_driver<iter_cursor<Iter>> from(Iter start, Iter finish) in from() function
/external/llvm-project/compiler-rt/lib/memprof/
Dmemprof_interceptors.cpp102 #define COMMON_INTERCEPTOR_GET_TLS_RANGE(begin, end) \ argument
110 #define COMMON_INTERCEPTOR_MEMMOVE_IMPL(ctx, to, from, size) \ argument
116 #define COMMON_INTERCEPTOR_MEMCPY_IMPL(ctx, to, from, size) \ argument
201 INTERCEPTOR(char *, strcat, char *to, const char *from) { in INTERCEPTOR()
213 INTERCEPTOR(char *, strncat, char *to, const char *from, uptr size) { in INTERCEPTOR()
226 INTERCEPTOR(char *, strcpy, char *to, const char *from) { in INTERCEPTOR()
267 INTERCEPTOR(char *, strncpy, char *to, const char *from, uptr size) { in INTERCEPTOR()
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_slice_op.cc64 gtl::InlinedVector<int64, 4>* begin, in ValidateMklInputs()
136 gtl::InlinedVector<int64, 4>* begin, in CheckCommonCasesForMklInputs()
162 const memory* from; member
320 gtl::InlinedVector<int64, 4> begin; in Compute() local
343 const gtl::InlinedVector<int64, 4>& begin, in ComputeMklSlice()
/external/rust/crates/syn/src/
Dpath.rs20 fn from(segment: T) -> Self { in from() function
46 fn from(ident: T) -> Self { in from() function
249 let begin = input.fork(); in parse() localVariable
304 let begin = input.fork(); in const_argument() localVariable
Ditem.rs393 fn from(input: DeriveInput) -> Item { in from() method
426 fn from(input: ItemStruct) -> DeriveInput { in from() method
442 fn from(input: ItemEnum) -> DeriveInput { in from() method
458 fn from(input: ItemUnion) -> DeriveInput { in from() method
994 let begin = input.fork(); in parse() localVariable
1737 let begin = input.fork(); in parse() localVariable
2241 let begin = input.fork(); in parse() localVariable
2484 let begin = input.fork(); in parse_impl() localVariable
2555 let begin = input.fork(); in parse() localVariable
/external/skia/modules/skparagraph/src/
DParagraphImpl.cpp46 auto begin = std::max(a.start, b.start); in operator *() local
615 BlockIndex begin = EMPTY_BLOCK; in findAllBlocks() local
952 void ParagraphImpl::updateText(size_t from, SkString text) { in updateText()
960 void ParagraphImpl::updateFontSize(size_t from, size_t to, SkScalar fontSize) { in updateFontSize()
984 void ParagraphImpl::updateForegroundPaint(size_t from, size_t to, SkPaint paint) { in updateForegroundPaint()
995 void ParagraphImpl::updateBackgroundPaint(size_t from, size_t to, SkPaint paint) { in updateBackgroundPaint()
/external/compiler-rt/lib/asan/
Dasan_interceptors.cc194 #define COMMON_INTERCEPTOR_GET_TLS_RANGE(begin, end) \ argument
395 #define ASAN_MEMCPY_IMPL(ctx, to, from, size) do { \ argument
412 void *__asan_memcpy(void *to, const void *from, uptr size) { in __asan_memcpy()
433 #define ASAN_MEMMOVE_IMPL(ctx, to, from, size) do { \ argument
444 void *__asan_memmove(void *to, const void *from, uptr size) { in __asan_memmove()
448 INTERCEPTOR(void*, memmove, void *to, const void *from, uptr size) { in INTERCEPTOR()
454 INTERCEPTOR(void*, memcpy, void *to, const void *from, uptr size) { in INTERCEPTOR()
513 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) { in INTERCEPTOR()
532 INTERCEPTOR(char*, strcpy, char *to, const char *from) { // NOLINT in INTERCEPTOR()
596 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) { in INTERCEPTOR()
/external/swiftshader/src/Pipeline/
DSpirvShaderControlFlow.cpp31 SpirvShader::Block::Block(InsnIterator begin, InsnIterator end) in Block()
173 bool SpirvShader::Function::ExistsPath(Block::ID from, Block::ID to, Block::ID notPassingThrough) c… in ExistsPath()
203 void SpirvShader::EmitState::addActiveLaneMaskEdge(Block::ID from, Block::ID to, RValue<SIMD::Int> … in addActiveLaneMaskEdge()
219 RValue<SIMD::Int> SpirvShader::GetActiveLaneMaskEdge(EmitState *state, Block::ID from, Block::ID to… in GetActiveLaneMaskEdge()
/external/openscreen/third_party/abseil/src/absl/container/
Dinlined_vector.h382 iterator begin() noexcept { return data(); } in begin() function
386 const_iterator begin() const noexcept { return data(); } in begin() function
694 iterator erase(const_iterator from, const_iterator to) { in erase()
/external/libtextclassifier/abseil-cpp/absl/container/
Dinlined_vector.h382 iterator begin() noexcept { return data(); } in begin() function
386 const_iterator begin() const noexcept { return data(); } in begin() function
694 iterator erase(const_iterator from, const_iterator to) { in erase()
/external/webrtc/third_party/abseil-cpp/absl/container/
Dinlined_vector.h389 iterator begin() noexcept { return data(); } in begin() function
393 const_iterator begin() const noexcept { return data(); } in begin() function
697 iterator erase(const_iterator from, const_iterator to) { in erase()
/external/abseil-cpp/absl/container/
Dinlined_vector.h389 iterator begin() noexcept { return data(); } in begin() function
393 const_iterator begin() const noexcept { return data(); } in begin() function
697 iterator erase(const_iterator from, const_iterator to) { in erase()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/
Dinlined_vector.h382 iterator begin() noexcept { return data(); } in begin() function
386 const_iterator begin() const noexcept { return data(); } in begin() function
694 iterator erase(const_iterator from, const_iterator to) { in erase()
/external/llvm/include/llvm/Analysis/
DLoopInfo.h132 iterator begin() const { return SubLoops.begin(); } in begin() function
292 void reverseBlock(unsigned from) { in reverseBlock()
528 iterator begin() const { return TopLevelLoops.begin(); } in begin() function
/external/llvm-project/compiler-rt/lib/asan/
Dasan_interceptors.cpp141 #define COMMON_INTERCEPTOR_GET_TLS_RANGE(begin, end) \ argument
149 #define COMMON_INTERCEPTOR_MEMMOVE_IMPL(ctx, to, from, size) \ argument
155 #define COMMON_INTERCEPTOR_MEMCPY_IMPL(ctx, to, from, size) \ argument
402 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) { in INTERCEPTOR()
421 INTERCEPTOR(char *, strcpy, char *to, const char *from) { in INTERCEPTOR()
475 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) { in INTERCEPTOR()
/external/rust/crates/aho-corasick/src/
Dtests.rs1193 let mut from = 0; in regression_stream_rare_byte_prefilter() localVariable
1230 let begin = aut in regression_stream_rare_byte_prefilter() localVariable
/external/clang/include/clang/Analysis/
DCFG.h375 iterator begin() { return Impl.rbegin(); } in begin() function
377 const_iterator begin() const { return Impl.rbegin(); } in begin() function
505 iterator begin() { return Elements.begin(); } in begin() function
507 const_iterator begin() const { return Elements.begin(); } in begin() function
580 const CFGBlock *from, in FilteredCFGBlockIterator()
843 iterator begin() { return Blocks.begin(); } in begin() function
845 const_iterator begin() const { return Blocks.begin(); } in begin() function
/external/vixl/src/
Dinvalset-vixl.h335 InvalSet<TEMPLATE_INVALSET_P_DEF>::begin() { in begin() function
682 const ElementType* from, const ElementType* end) { in GetFirstValidElement()
/external/clang/lib/StaticAnalyzer/Core/
DRangeConstraintManager.cpp34 Range(const llvm::APSInt &from, const llvm::APSInt &to) in Range()
93 iterator begin() const { return ranges.begin(); } in begin() function in __anon42e992be0111::RangeSet
99 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) in RangeSet()
/external/llvm-project/llvm/include/llvm/Analysis/
DLoopInfo.h154 iterator begin() const { return getSubLoops().begin(); } in begin() function
430 void reverseBlock(unsigned from) { in reverseBlock()
938 iterator begin() const { return TopLevelLoops.begin(); } in begin() function

1234