HomeSort by relevance Sort by last modified time
    Searched defs:Begin (Results 26 - 50 of 125) sorted by null

12 3 4 5

  /external/llvm/include/llvm/MC/
MCWin64EH.h 64 MCWin64EHUnwindInfo() : Begin(0), End(0), ExceptionHandler(0),
69 MCSymbol *Begin;
MCAtom.h 41 uint64_t getBeginAddr() const { return Begin; }
73 uint64_t Begin, End;
77 : Kind(K), Name("(unknown)"), Parent(P), Begin(B), End(E) { }
82 /// \brief Remap the atom, using the given range, updating Begin/End.
91 /// remap(Begin, TruncPt);
96 /// The bounds for the resulting atoms are returned in {L,R}{Begin,End}.
136 const_iterator begin() const { return Insts.begin(); } function in class:llvm::MCTextAtom
155 MCTextAtom(MCModule *P, uint64_t Begin, uint64_t End)
156 : MCAtom(TextAtom, P, Begin, End), NextInstAddress(Begin) {
    [all...]
  /art/runtime/gc/accounting/
atomic_stack.h 116 T* Begin() const {
137 std::sort(Begin(), End());
147 return std::binary_search(Begin(), End(), value);
151 return std::find(Begin(), End(), value) != End();
168 byte* addr = mem_map_->Begin();
space_bitmap.h 144 word* Begin() {
250 for (Objects::iterator it = contained_.begin(); it != contained_.end(); ++it) {
  /external/chromium_org/cc/layers/
layer_iterator.h 31 // it = LayerIteratorType::Begin(&render_surface_layer_list);
81 // LayerIterator::Begin() and LayerIterator::End() and passing in the
124 static LayerIteratorType Begin(const LayerList* render_surface_layer_list) {
188 actions_.Begin(this);
247 void Begin(
275 void Begin(
  /external/chromium_org/gpu/command_buffer/client/
query_tracker.cc 102 void QueryTracker::Query::Begin(GLES2Implementation* gl) {
108 // To nothing on begin for error queries.
200 delete queries_.begin()->second;
201 queries_.erase(queries_.begin());
249 QueryList::iterator it = removed_queries_.begin();
  /external/chromium_org/third_party/smhasher/src/
MurmurHash2.cpp 254 // hasher.Begin(seed);
265 void Begin ( uint32_t seed = 0 )
  /external/chromium_org/webkit/browser/quota/
quota_callbacks.h 60 for (iterator iter = callbacks_.begin();
102 iterator Begin() { return callback_map_.begin(); }
  /external/chromium_org/win8/test/
open_with_dialog_controller.cc 55 void Begin(HWND parent_window,
125 void OpenWithDialogController::Context::Begin(
145 automation_client_.Begin(
245 void OpenWithDialogController::Begin(
253 // The callback may not properly handle being run from Begin, so post a task
262 context_->Begin(parent_window, url_protocol, program, callback);
283 base::Bind(&OpenWithDialogController::Begin, base::Unretained(this),
ui_automation_client.cc 332 std::equal(class_name.begin(), class_name.end(), class_name_.begin(),
604 void UIAutomationClient::Begin(const wchar_t* class_name,
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 281 Init(other.Begin(), other.Size());
297 const uptr *StackTrace::Begin() const {
  /external/libvpx/libvpx/test/
video_source.h 41 virtual void Begin() = 0;
74 virtual void Begin() {
132 virtual void Begin() {
161 virtual void Begin() = 0;
webm_video_source.h 100 virtual void Begin() {
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 167 DILineInfoTable::iterator Begin = Lines.begin();
169 for (DILineInfoTable::iterator It = Begin; It != End; ++It) {
  /art/compiler/dex/
arena_allocator.h 39 uint8_t* Begin() {
  /art/runtime/gc/space/
large_object_space.h 118 byte* Begin() const {
129 return End() - Begin();
211 FreeListSpace(const std::string& name, MemMap* mem_map, byte* begin, byte* end);
space.h 184 byte* Begin() const {
195 return End() - Begin();
205 return byte_ptr < End() && byte_ptr >= Begin();
216 byte* begin, byte* end) :
217 Space(name, gc_retention_policy), begin_(begin), end_(end) {
273 mem_map->Begin(), mem_map->Begin() + initial_size),
  /art/runtime/
oat_file.cc 208 const byte* oat = Begin();
218 << reinterpret_cast<const void*>(Begin())
279 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
313 return *reinterpret_cast<const OatHeader*>(Begin());
316 const byte* OatFile::Begin() const {
342 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
353 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
384 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
410 oat_file_->Begin(),
  /external/chromium/chrome/browser/autofill/
autofill_country.cc 295 static const Iterator Begin();
337 const CountryDataMap::Iterator CountryDataMap::Begin() {
338 return GetInstance()->country_data_.begin();
415 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
435 STLDeleteContainerPairSecondPointers(collators_.begin(),
471 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
591 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
  /external/chromium/chrome/common/
sqlite_utils.h 54 // Note: the constructor does NOT Begin a transaction.
61 int Begin() {
62 // By default, we BEGIN IMMEDIATE to establish file locks at the
64 // waiting for the busy timeout period, which can occur when BEGIN
70 return BeginCommand("BEGIN EXCLUSIVE");
74 return BeginCommand("BEGIN IMMEDIATE");
78 return BeginCommand("BEGIN DEFERRED");
  /external/chromium_org/cc/scheduler/
texture_uploader.cc 53 void TextureUploader::Query::Begin() {
99 for (ScopedPtrDeque<Query>::iterator it = pending_queries_.begin();
116 std::multiset<double>::iterator median = textures_per_second_history_.begin();
125 available_queries_.front()->Begin();
341 textures_per_second_history_.erase(textures_per_second_history_.begin());
  /external/chromium_org/components/autofill/core/browser/
autofill_country.cc     [all...]
  /external/chromium_org/gpu/command_buffer/service/
gpu_tracer.cc 138 virtual bool Begin(const std::string& name) OVERRIDE;
238 bool GPUTracerImpl::Begin(const std::string& name) {
  /external/clang/include/clang/AST/
ASTVector.h 58 T *Begin, *End, *Capacity;
64 ASTVector() : Begin(NULL), End(NULL), Capacity(NULL) { }
67 : Begin(NULL), End(NULL), Capacity(NULL) {
74 destroy_range(Begin, End);
93 iterator begin() { return Begin; } function in class:clang::ASTVector
94 const_iterator begin() const { return Begin; } function in class:clang::ASTVector
101 reverse_iterator rend() { return reverse_iterator(begin()); }
102 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
    [all...]
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 54 T *Begin, *End, *Capacity;
58 : Begin(NULL), End(NULL), Capacity(NULL) {
65 destroy_range(Begin, End);
84 iterator begin() { return Begin; } function in class:clang::BumpVector
85 const_iterator begin() const { return Begin; } function in class:clang::BumpVector
92 reverse_iterator rend() { return reverse_iterator(begin()); }
93 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
95 bool empty() const { return Begin == End;
    [all...]

Completed in 653 milliseconds

12 3 4 5