Searched refs:Begin (Results 151 - 175 of 302) sorted by relevance

1234567891011>>

/external/clang/lib/Lex/
H A DLiteralSupport.cpp51 SourceLocation Begin = local
55 Lexer::AdvanceToTokenCharacter(Begin, TokRangeEnd - TokRangeBegin,
57 return CharSourceRange::getCharRange(Begin, End);
69 SourceLocation Begin = local
72 return Diags->Report(Begin, DiagID) <<
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp279 void DwarfCompileUnit::attachLowHighPC(DIE &D, const MCSymbol *Begin, argument
281 assert(Begin && "Begin label should not be null!");
283 assert(Begin->isDefined() && "Invalid starting label");
286 addLabelAddress(D, dwarf::DW_AT_low_pc, Begin);
290 addLabelDelta(D, dwarf::DW_AT_high_pc, End, Begin);
H A DCodeViewDebug.h97 const MCSymbol *Begin = nullptr; member in struct:llvm::CodeViewDebug::FunctionInfo
H A DDwarfCompileUnit.h134 void attachLowHighPC(DIE &D, const MCSymbol *Begin, const MCSymbol *End);
H A DWinException.cpp366 range(const WinEHFuncInfo &EHInfo, MachineFunction::const_iterator Begin, argument
370 assert(Begin != End);
371 auto BlockBegin = Begin->begin();
374 InvokeStateChangeIterator(EHInfo, Begin, End, BlockBegin, BaseState),
/external/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h180 virtual void initPolicy(MachineBasicBlock::iterator Begin, argument
896 void initPolicy(MachineBasicBlock::iterator Begin,
964 void initPolicy(MachineBasicBlock::iterator Begin,
H A DMachineFunction.h577 extractLoadMemRefs(MachineInstr::mmo_iterator Begin,
584 extractStoreMemRefs(MachineInstr::mmo_iterator Begin,
H A DSelectionDAGISel.h282 /// instructions between \p Begin and \p End. \p HadTailCall will be set
284 void SelectBasicBlock(BasicBlock::const_iterator Begin,
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp563 Function::iterator Begin = cast<BasicBlock>(VMap[StartingBB])->getIterator(); local
564 Function::iterator I = Begin;
569 if (I != Begin && (pred_begin(&*I) == pred_end(&*I) ||
/external/clang/lib/AST/
H A DStmt.cpp559 const char *Begin = CurPtr - 1; // Points to the character following '%'. local
560 const char *Percent = Begin - 1; // Points to '%'.
591 std::string Str(Begin, CurPtr - Begin);
627 std::string Str(Begin, NameEnd + 1 - Begin);
/external/clang/unittests/Lex/
H A DLexerTest.cpp98 std::string getSourceText(Token Begin, Token End) { argument
102 Begin.getLocation(), End.getLocation())),
/external/libvpx/libvpx/test/
H A Dexternal_frame_buffer_test.cc294 video_->Begin();
361 video_->Begin();
H A Ddecode_api_test.cc121 video.Begin();
H A Dencode_test_driver.cc184 ASSERT_NO_FATAL_FAILURE(video->Begin());
H A Dvp9_thread_test.cc167 for (video.Begin(); video.cxdata(); video.Next()) {
H A Dy4m_test.cc88 Begin();
/external/llvm/include/llvm/MC/
H A DMCDwarf.h492 : Begin(nullptr), End(nullptr), Personality(nullptr), Lsda(nullptr),
496 MCSymbol *Begin; member in struct:llvm::MCDwarfFrameInfo
/external/llvm/lib/MC/
H A DMCCodeView.cpp261 static unsigned computeLabelDiff(MCAsmLayout &Layout, const MCSymbol *Begin, argument
265 const MCExpr *BeginRef = MCSymbolRefExpr::create(Begin, Variant, Ctx),
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp287 BasicBlock::iterator Begin = Store->getParent()->begin(); local
288 while (I != Begin && GetBasicARCInstKind(&*I) != ARCInstKind::Retain) {
/external/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp1109 SMLoc Begin; local
1112 if (!ParseRegister(Register, Begin, End)) {
1123 Warning (Begin, "Missing parenthesis around predicate register");
1126 Operands.push_back(HexagonOperand::CreateToken(LParen, Begin));
1127 Operands.push_back(HexagonOperand::CreateReg(Register, Begin, End));
1132 Operands.push_back(HexagonOperand::CreateToken(RParen, Begin));
1138 Warning (Begin, "Missing parenthesis around predicate register");
1142 HexagonOperand::CreateToken(LParen, Begin));
1143 Operands.push_back(HexagonOperand::CreateReg(Register, Begin, End));
1148 Operands.push_back(HexagonOperand::CreateToken(RParen, Begin));
[all...]
/external/clang/lib/Frontend/
H A DTextDiagnostic.cpp923 SourceLocation Begin = R.getBegin();
926 unsigned StartLineNo = SM.getExpansionLineNumber(Begin);
927 if (StartLineNo > LineNo || SM.getFileID(Begin) != FID)
937 StartColNo = SM.getExpansionColumnNumber(Begin);
/external/libchrome/base/trace_event/
H A Dtrace_event_synthetic_delay.cc78 void TraceEventSyntheticDelay::Begin() { function in class:base::trace_event::TraceEventSyntheticDelay
98 // See note in Begin().
113 // See note in Begin().
/external/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp611 for (auto Begin = Pred.begin(); It != Begin && It->isTerminator(); --It)
635 for (auto Begin = MI.getParent()->begin();
636 --It != Begin && It->isTerminator();)
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DSelectionDAGISel.h287 void SelectBasicBlock(BasicBlock::const_iterator Begin,
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCDwarf.cpp734 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
930 // PC Begin
934 EmitSymbol(streamer, *frame.Begin, PCBeginEncoding, "FDE initial location");
937 const MCExpr *Range = MakeStartMinusEndExpr(streamer, *frame.Begin,
960 EmitCFIInstructions(streamer, frame.Instructions, frame.Begin);

Completed in 494 milliseconds

1234567891011>>