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

1 2 3 4 5 6 7

  /external/chromium_org/sql/
transaction.cc 22 bool Transaction::Begin() {
30 << "Did you remember to call Begin() and check its return?";
37 << "Did you remember to call Begin() and check its return?";
  /external/chromium_org/cc/debug/
paint_time_counter.h 32 RingBufferType::Iterator Begin() const { return ring_buffer_.Begin(); }
ring_buffer.h 95 // for (RingBuffer<T, kSize>::Iterator it = ring_buffer.Begin(); it; ++it) {}
96 Iterator Begin() const {
  /external/chromium_org/third_party/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/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/chromium_org/cc/resources/
memory_history.h 42 RingBufferType::Iterator Begin() const { return ring_buffer_.Begin(); }
  /external/chromium_org/ppapi/c/dev/
ppp_printing_dev.h 61 * can only be made after a successful call to Begin. Returns the number of
65 int32_t (*Begin)(PP_Instance instance,
68 * Prints the specified pages using the format specified in Begin.
  /external/chromium_org/ppapi/cpp/dev/
printing_dev.cc 31 int32_t Begin(PP_Instance instance,
70 &Begin,
  /external/compiler-rt/lib/tsan/rtl/
tsan_stack_trace.cc 92 Init(other.Begin(), other.Size());
108 const uptr *StackTrace::Begin() const {
  /external/llvm/lib/CodeGen/
MachineLoopInfo.cpp 51 MachineFunction::iterator Begin = TopMBB->getParent()->begin();
52 if (TopMBB != Begin) {
56 if (TopMBB == Begin) break;
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.h 25 uint64_t Begin;
  /external/llvm/lib/IR/
User.cpp 49 Use *Begin = static_cast<Use*>(::operator new(size));
50 Use *End = Begin + N;
52 return Use::initTags(Begin, End);
  /system/keymaster/
dsa_operation.h 37 virtual keymaster_error_t Begin() { return KM_ERROR_OK; }
ecdsa_operation.h 37 virtual keymaster_error_t Begin() { return KM_ERROR_OK; }
rsa_operation.h 35 virtual keymaster_error_t Begin() { return KM_ERROR_OK; }
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 39 public const int Begin = 1;
96 return Begin;
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
webm_video_source.h 48 virtual void Begin() {
i420_video_source.h 48 virtual void 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...]
  /art/runtime/
mem_map.h 102 byte* Begin() const {
111 return Begin() + Size();
127 return Begin() <= addr && addr < End();
145 MemMap(const std::string& name, byte* begin, size_t size, void* base_begin, size_t base_size,
  /external/chromium_org/ppapi/proxy/
ppp_printing_proxy.cc 40 int32_t Begin(PP_Instance instance,
100 &Begin,
171 *result = CallWhileUnlocked(ppp_printing_impl_->Begin,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PersistentValueMap.h 57 static Iterator Begin(Impl* impl) { return impl->begin(); }

Completed in 561 milliseconds

1 2 3 4 5 6 7