/external/llvm/lib/Target/AArch64/ |
AArch64InstrInfo.cpp | 99 MachineBasicBlock::iterator I = MBB.end(); 227 MachineBasicBlock::iterator I = MBB.end(); 243 I = MBB.end(); 909 E = CmpInstr->getParent()->end(); [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonExpandCondsets.cpp | 213 if (F == Map.end()) 223 if (F == Map.end()) 234 for (LiveInterval::iterator I = LI.begin(), E = LI.end(); I != E; ++I) { 238 return LI.end(); 244 LiveInterval::iterator P = LI.end(); 245 for (LiveInterval::iterator I = LI.begin(), E = LI.end(); I != E; ++I) { 246 if (I->end > S) 280 // live segments that begin with a register, and end at a block boundary. 286 for (LiveInterval::iterator I = LI.begin(), E = LI.end(); I != E; ++I) { 287 if (!I->start.isRegister() || !I->end.isBlock() [all...] |
/external/llvm/lib/Target/R600/ |
R600InstrInfo.cpp | 367 if (PV.find(Reg) != PV.end()) { 701 MachineBasicBlock::iterator I = MBB.end(); 778 return MBB.end(); 794 MachineInstr *PredSet = findFirstPredicateSetterFrom(MBB, MBB.end()); 803 if (CfAlu == MBB.end()) 810 MachineInstr *PredSet = findFirstPredicateSetterFrom(MBB, MBB.end()); 819 if (CfAlu == MBB.end()) 833 MachineBasicBlock::iterator I = MBB.end(); 847 if (CfAlu == MBB.end()) 857 I = MBB.end(); [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 103 // given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and 117 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63), 125 unsigned End; 337 } // end anonymous namespace 685 if (TII->isRxSBGMask(Mask, RxSBG.BitSize, RxSBG.Start, RxSBG.End)) { 909 RISBG.End &= 31; 915 CurDAG->getTargetConstant(RISBG.End | 128, MVT::i32) [all...] |
SystemZInstrInfo.cpp | 160 // taken from the low end of SrcReg (8 for LLCR, 16 for LLHR and 32 for LR). 250 MachineBasicBlock::iterator I = MBB.end(); 283 while (std::next(I) != MBB.end()) 293 I = MBB.end(); 335 MachineBasicBlock::iterator I = MBB.end(); 348 I = MBB.end(); 595 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); 611 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); 640 } // end anonymous namespace 723 unsigned Start, End; [all...] |
/external/llvm/tools/llvm-ar/ |
llvm-ar.cpp | 110 Move, ///< Move members to end or as given by {a,b,i} modifiers 111 QuickAppend, ///< Quickly append to end of archive 389 std::find(Members.begin(), Members.end(), Name) == Members.end()) 498 std::find_if(Members.begin(), Members.end(), [Name](StringRef Path) { 502 if (MI == Members.end()) 561 std::vector<StringRef>::iterator MemberI = Members.end(); 580 if (MemberI != Members.end()) 595 Ret.insert(Ret.begin() + InsertPos, Moved.begin(), Moved.end()); 665 E = Members.end(); [all...] |
/external/llvm/utils/FileCheck/ |
FileCheck.cpp | 81 /// MatchEOF - When set, this pattern only matches the end of file. This is 211 size_t End = PatternStr.find("}}"); 212 if (End == StringRef::npos) { 215 "found start of regex string with no end '}}'"); 226 if (AddRegExToRegEx(PatternStr.substr(2, End-2), CurParen, SM)) 230 PatternStr = PatternStr.substr(End+2); 240 // Find the closing bracket pair ending the match. End is going to be an 242 size_t End = FindRegexVarEnd(PatternStr.substr(2), SM); 244 if (End == StringRef::npos) { 251 StringRef MatchStr = PatternStr.substr(2, End); [all...] |
/external/pdfium/core/include/fxge/ |
fx_ge.h | 446 virtual void End() {} 513 virtual void End() { }
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
fpdf_edit_create.cpp | 456 FX_FILESIZE CPDF_ObjectStream::End(CPDF_Creator* pCreator) 618 objOffset = m_ObjStream.End(pCreator); 662 FX_DWORD end = m_IndexArray.ElementAt(i * 2 + 1) + start; local 663 for (FX_DWORD m = start; m < end; m++) { 815 FX_BOOL CPDF_XRefStream::End(CPDF_Creator *pCreator, FX_BOOL bEOF ) 838 FX_DWORD end = m_IndexArray.ElementAt(i * 2 + 1) + start; local 839 for (FX_DWORD j = start; j < end; j++) { 953 if (!m_pXRefStream->End(this)) { 974 if (!m_pXRefStream->End(this)) { 991 if (!m_pXRefStream->End(this)) [all...] |
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
ttgsubtable.h | 180 TT_uint16_t End; 182 TRangeRecord(): Start(0), End(0), StartCoverageIndex(0) {} 235 TT_uint16_t End; 237 TClassRangeRecord(): Start(0), End(0), Class(0) {}
|
/external/v8/src/compiler/ |
register-allocator.h | 36 // the end of the instruction. Lifetime positions for different instructions are 67 // Returns the lifetime position for the end of the instruction which 116 // Representation of the non-empty interval [start,end[. 119 UseInterval(LifetimePosition start, LifetimePosition end) 120 : start_(start), end_(end), next_(NULL) { 121 DCHECK(start.Value() < end.Value()); 125 LifetimePosition end() const { return end_; } function in class:v8::internal::compiler::UseInterval 258 LifetimePosition End() const { 260 return last_interval_->end(); 277 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone) [all...] |
/external/valgrind/VEX/priv/ |
host_tilegx_defs.c | 388 vex_printf("%d,%d", (Int)instr->GXin.Bf.Start, (Int)instr->GXin.Bf.End); 756 UInt Start, UInt End ) 764 i->GXin.Bf.End = End; [all...] |
/art/runtime/ |
elf_file.cc | 344 if (Begin() + offset >= End()) { 738 if (program_header >= End()) { 769 if (section_header >= End()) { [all...] |
/art/tools/ |
cpplint.py | 711 # END android-added 729 def End(self): 796 # END android-changed [all...] |
/external/clang/include/clang/AST/ |
DeclTemplate.h | 84 iterator end() { return begin() + NumParams; } function in class:clang::TemplateParameterList 85 const_iterator end() const { return begin() + NumParams; } function in class:clang::TemplateParameterList 90 return llvm::makeArrayRef(begin(), end()); 579 return SpecIterator<EntryType>(isEnd ? Specs.end() : Specs.begin()); [all...] |
/external/clang/lib/AST/ |
Expr.cpp | [all...] |
/external/clang/lib/Basic/ |
SourceManager.cpp | 267 std::upper_bound(Entries.begin(), Entries.end(), Offset); 389 I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) { 436 if (overI == OverriddenFilesInfo->OverriddenFiles.end()) 582 // We do a +1 here because we want a SourceLocation that means "the end of the 583 // file", e.g. for the "no newline at the end of the file" diagnostic. 742 I = LocalSLocEntryTable.end(); [all...] |
/external/clang/lib/Lex/ |
Lexer.cpp | 62 "We assume that the input buffer has a null character at the end" 175 // Now that the lexer is created, change the start/end locations so that we 190 // Ensure that the lexer thinks it is inside a directive, so that end \n will 254 // Search backwards from the end of the token to find the matching closing 305 file.begin(), tokenBegin, file.end()); 443 Buffer.begin(), StrData, Buffer.end()); 484 Lexer TheLexer(LexerStartLoc, LangOpts, BufStart, LexStart, Buffer.end()); 546 Buffer.end()); 562 while (CurPtr != Buffer.end()) { 570 if (CurPtr != Buffer.end()) [all...] |
PPDirectives.cpp | 324 // If this is the end of the buffer, we have an error. 498 // Finally, if we are out of the conditional (saw an #endif or ran off the end [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
cpplint.py | 725 def End(self): [all...] |
/external/libvpx/libvpx/tools/ |
cpplint.py | 850 def End(self): [all...] |
/external/llvm/examples/Kaleidoscope/Chapter8/ |
toy.cpp | 175 // Comment until end of line. 184 // Check for end of file. Don't eat the EOF. 315 ExprAST *Start, *End, *Step, *Body; 318 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 320 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 324 End->dump(indent(out, ind) << "End:", ind + 1); 401 } // end anonymous namespace 555 ExprAST *End = ParseExpression() [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 111 // Comment until end of line. 119 // Check for end of file. Don't eat the EOF. 199 ExprAST *Start, *End, *Step, *Body; 201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 391 ExprAST *End = ParseExpression(); 392 if (End == 0) return 0; 409 return new ForExprAST(IdName, Start, End, Step, Body); 438 // End of var list, exit loop 804 ModuleVector::iterator it, end; local 821 ModuleVector::iterator end = Modules.end(); local 867 ModuleVector::iterator end = Modules.end(); local 937 Module::iterator end = M->end(); local 958 ModuleVector::iterator end = Modules.end(); local 986 ModuleVector::iterator end = Modules.end(); local [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 130 // Comment until end of line. 138 // Check for end of file. Don't eat the EOF. 218 ExprAST *Start, *End, *Step, *Body; 220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 410 ExprAST *End = ParseExpression(); 411 if (End == 0) return 0; 428 return new ForExprAST(IdName, Start, End, Step, Body); 457 // End of var list, exit loop 872 ModuleVector::iterator it, end; local 889 ModuleVector::iterator end = Modules.end(); local 981 Module::iterator end = M->end(); local 1001 ModuleVector::iterator end = Modules.end(); local 1034 ModuleVector::iterator end = Modules.end(); local 1058 ModuleVector::iterator end = Modules.end(); local [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 88 // Comment until end of line. 96 // Check for end of file. Don't eat the EOF. 176 ExprAST *Start, *End, *Step, *Body; 178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 368 ExprAST *End = ParseExpression(); 369 if (End == 0) return 0; 386 return new ForExprAST(IdName, Start, End, Step, Body); 415 // End of var list, exit loop 714 EngineVector::iterator end = Engines.end(); local 722 ModuleVector::iterator end = Modules.end(); local 768 EngineVector::iterator end = Engines.end(); local 810 Module::iterator end = OpenModule->end(); local 831 EngineVector::iterator end = Engines.end(); local 844 ModuleVector::iterator end = Modules.end(); local [all...] |