HomeSort by relevance Sort by last modified time
    Searched defs:Begin (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGenCXX/
PR24289.cpp 6 const T *Begin;
10 : Begin(B), Size(S) {}
  /external/llvm/unittests/Support/
IteratorTest.cpp 29 test_iterator Begin, End;
30 Begin = V.begin();
33 test_iterator I = Begin;
37 EXPECT_EQ(I, Begin + i);
38 EXPECT_EQ(I, std::next(Begin, i));
39 test_iterator J = Begin;
42 EXPECT_EQ(*V[i], Begin[i]);
47 EXPECT_GE(I, Begin);
48 EXPECT_LE(Begin, I)
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.cc 58 std::copy(b + offset, b + offset + length, b_.begin() + index);
78 byte_t* GrowableMemoryByteArray::Begin() {
memory_byte_array.cc 88 byte_t* MemoryByteArray::Begin() {
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLoc.h 25 uint64_t Begin;
  /external/llvm/lib/CodeGen/
MachineLoopInfo.cpp 52 MachineFunction::iterator Begin = TopMBB->getParent()->begin();
53 if (TopMBB != Begin) {
57 if (TopMBB == Begin) break;
  /external/v8/src/compiler/
pipeline-statistics.cc 13 void PipelineStatistics::CommonStats::Begin(
59 total_stats_.Begin(this);
75 phase_kind_stats_.Begin(this);
90 phase_stats_.Begin(this);
  /system/keymaster/
ecdsa_keymaster1_operation.cpp 31 keymaster_error_t EcdsaKeymaster1WrappedOperation::Begin(EVP_PKEY* ecdsa_key,
56 return engine_->device()->begin(engine_->device(), purpose_, &key_data->key_material,
rsa_keymaster1_operation.cpp 31 keymaster_error_t RsaKeymaster1WrappedOperation::Begin(EVP_PKEY* rsa_key,
72 return engine_->device()->begin(engine_->device(), purpose_, &key_data->key_material,
ecdsa_operation.cpp 109 keymaster_error_t EcdsaSignOperation::Begin(const AuthorizationSet& /* input_params */,
174 keymaster_error_t EcdsaVerifyOperation::Begin(const AuthorizationSet& /* input_params */,
hmac_operation.cpp 145 keymaster_error_t HmacOperation::Begin(const AuthorizationSet& /* input_params */,
  /art/runtime/gc/collector/
immune_region.h 51 void SetBegin(mirror::Object* begin) {
52 begin_ = begin;
61 mirror::Object* Begin() const {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 39 public const int Begin = 1;
96 return Begin;
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin();
99 S, Begin, VK_LValue);
110 CharSourceRange::getTokenRange(Begin, Begin)));
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*("));
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*"));
137 S, Begin, VK_RValue);
144 CharSourceRange::getTokenRange(Begin, Begin)));
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "&("))
    [all...]
  /external/llvm/lib/IR/
User.cpp 57 Use *Begin = static_cast<Use*>(::operator new(size));
58 Use *End = Begin + N;
60 setOperandList(Use::initTags(Begin, End));
99 return {MutableARef.begin(), MutableARef.end()};
  /art/runtime/
elf_file_impl.h 68 uint8_t* Begin() const {
69 return map_->Begin();
171 // Check whether the offset is in range, and set to target to Begin() + offset if OK.
mem_map.h 139 uint8_t* Begin() const {
151 return Begin() + Size();
167 return Begin() <= addr && addr < End();
194 uint8_t* begin,
  /external/clang/unittests/AST/
CommentLexer.cpp 65 SourceLocation Begin = SourceMgr.getLocForStartOfFile(File);
67 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source));
    [all...]
  /external/libvpx/libvpx/test/
ivf_video_source.h 54 virtual void Begin() {
webm_video_source.h 48 virtual void Begin() {
yuv_video_source.h 52 virtual void Begin() {
  /external/llvm/include/llvm/MC/
MCWinEH.h 34 const MCSymbol *Begin;
49 : Begin(nullptr), End(nullptr), ExceptionHandler(nullptr),
54 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
60 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
i420_video_source.h 48 virtual void Begin() {
ivf_video_source.h 54 virtual void Begin() {
y4m_video_source.h 41 virtual void Begin() {

Completed in 890 milliseconds

1 2 3 4 5 6