Searched defs:Begin (Results 1 - 25 of 66) sorted by relevance

123

/external/llvm/lib/MC/
H A DMCModule.cpp16 uint64_t Begin, uint64_t End) {
17 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
20 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Begin);
24 MCAtom *NewAtom = new MCAtom(Type, this, Begin, End);
26 OffsetMap.insert(Begin, End, NewAtom);
33 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Atom->Begin);
42 Atom->Begin = NewBegin;
15 createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End) argument
/external/chromium/app/sql/
H A Dtransaction.cc22 bool Transaction::Begin() { function in class:sql::Transaction
34 << "Did you remember to call Begin() and check its return?";
44 << "Did you remember to call Begin() and check its return?";
/external/llvm/lib/CodeGen/
H A DAllocationOrder.h26 const unsigned *Begin; member in class:llvm::AllocationOrder
50 Pos = Begin;
H A DMachineLoopInfo.cpp51 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); local
52 if (TopMBB != Begin) {
56 if (TopMBB == Begin) break;
H A DCodePlacementOpt.cpp54 MachineFunction::iterator Begin,
125 /// Splice - Move the sequence of instructions [Begin,End) to just before
132 MachineFunction::iterator Begin,
134 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
136 MachineFunction::iterator OldBeginPrior = prior(Begin);
139 MF.splice(InsertPt, Begin, End);
141 prior(Begin)->updateTerminator();
184 MachineFunction::iterator Begin = Pred; local
185 MachineFunction::iterator End = llvm::next(Begin);
186 while (Begin !
130 Splice(MachineFunction &MF, MachineFunction::iterator InsertPt, MachineFunction::iterator Begin, MachineFunction::iterator End) argument
305 MachineFunction::iterator Begin = BB; local
[all...]
H A DCriticalAntiDepBreaker.cpp413 MachineBasicBlock::iterator Begin,
502 for (MachineBasicBlock::iterator I = End, E = Begin;
412 BreakAntiDependencies(const std::vector<SUnit>& SUnits, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned InsertPosIndex, DbgValueVector &DbgValues) argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs39 public const int Begin = 1; field in class:Antlr.Runtime.Tree.TreePatternLexer
96 return Begin;
/external/llvm/include/llvm/MC/
H A DMCAtom.h39 uint64_t Begin, End; member in class:llvm::MCAtom
46 : Type(T), Parent(P), Begin(B), End(E) { }
H A DMCWin64EH.h64 MCWin64EHUnwindInfo() : Begin(0), End(0), ExceptionHandler(0),
69 MCSymbol *Begin; member in struct:llvm::MCWin64EHUnwindInfo
/external/llvm/lib/VMCore/
H A DUser.cpp48 Use *Begin = static_cast<Use*>(::operator new(size)); local
49 Use *End = Begin + N;
51 return Use::initTags(Begin, End);
/external/clang/unittests/AST/
H A DCommentLexer.cpp64 SourceLocation Begin = SourceMgr.getLocForStartOfFile(File); local
66 Lexer L(Allocator, Traits, Begin, Source, Source + strlen(Source));
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); local
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/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.cc260 Init(other.Begin(), other.Size());
276 const uptr *StackTrace::Begin() const { function in class:__tsan::StackTrace
/external/chromium/chrome/browser/autofill/
H A Dautofill_country.cc295 static const Iterator Begin();
337 const CountryDataMap::Iterator CountryDataMap::Begin() { function in class:__anon1706::CountryDataMap
415 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
471 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
591 for (CountryDataMap::Iterator it = CountryDataMap::Begin();
/external/chromium/chrome/common/
H A Dsqlite_utils.h54 // Note: the constructor does NOT Begin a transaction.
61 int Begin() { function in class:SQLTransaction
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h54 T *Begin, *End, *Capacity; member in class:clang::BumpVector
58 : Begin(NULL), End(NULL), Capacity(NULL) {
65 destroy_range(Begin, End);
84 iterator begin() { return Begin; }
85 const_iterator begin() const { return Begin; }
95 bool empty() const { return Begin == End; }
96 size_type size() const { return End-Begin; }
99 assert(Begin + idx < End);
100 return Begin[idx];
103 assert(Begin
[all...]
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp50 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
127 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
166 unsigned Begin = findBeginLocalPreprocessedEntity(Range.getBegin()); local
168 return std::make_pair(Begin, End);
279 Begin = PreprocessedEntities.begin();
280 RI != Begin && count < 4; --RI, ++count) {
H A DLiteralSupport.cpp61 SourceLocation Begin = local
65 Lexer::AdvanceToTokenCharacter(Begin, TokRangeEnd - TokRangeBegin,
67 return Diags->Report(Begin, DiagID)
68 << CharSourceRange::getCharRange(Begin, End);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp146 MachineSDNode::mmo_iterator Begin = 0, End = 0; local
151 Begin = MN->memoperands_begin();
159 MN->setMemRefs(Begin, End);
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp161 static bool shouldSpeculateInstrs(BasicBlock::iterator Begin, argument
164 for (BasicBlock::iterator I = Begin; I != End; ++I) {
317 // Begin by walking OrigHeader and populating ValueMap with an entry for
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp515 Function::iterator Begin = cast<BasicBlock>(VMap[&OldFunc->getEntryBlock()]); local
516 Function::iterator I = Begin;
521 if (I != Begin && (pred_begin(I) == pred_end(I) ||
H A DLowerSwitch.cpp63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
118 BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, argument
122 unsigned Size = End - Begin;
125 return newLeafBlock(*Begin, Val, OrigBlock, Default);
128 std::vector<CaseRange> LHS(Begin, Begin + Mid);
130 std::vector<CaseRange> RHS(Begin + Mid, End);
133 CaseRange& Pivot = *(Begin + Mid);
/external/openfst/src/include/fst/
H A Dutil.h395 const_iterator Begin() const { return set_.begin(); } function in class:fst::CompactSet
/external/clang/include/clang/AST/
H A DASTVector.h56 T *Begin, *End, *Capacity; member in class:clang::ASTVector
63 : Begin(NULL), End(NULL), Capacity(NULL) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; }
90 const_iterator begin() const { return Begin; }
100 bool empty() const { return Begin == End; }
101 size_type size() const { return End-Begin; }
104 assert(Begin + idx < End);
105 return Begin[idx];
108 assert(Begin
[all...]
/external/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp99 clearRefsIn(*scope.Begin, info.Refs);
123 clearUnavailableDiags(*scope.Begin);
127 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {");
142 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {");
183 Scopes.back().Begin = I;
198 Scopes.back().Begin = I;
228 Stmt::child_iterator Begin; member in struct:__anon3451::AutoreleasePoolRewriter::PoolScope
233 PoolScope() : PoolVar(0), CompoundParent(0), Begin(), End(),
237 Stmt::child_iterator rangeS = Begin;
241 Stmt::child_iterator rangeE = Begin;
[all...]

Completed in 835 milliseconds

123