Searched defs:End (Results 51 - 75 of 284) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DStringExtras.h169 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
172 if (Begin == End)
176 while (++Begin != End) {
184 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
187 if (Begin == End)
190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
191 for (IteratorT I = Begin; I != End; ++I)
195 while (++Begin != End) {
202 /// Joins the strings in the range [Begin, End), adding Separator between
205 inline std::string join(IteratorT Begin, IteratorT End, StringRe argument
[all...]
/external/llvm/include/llvm/IR/
H A DDominators.h51 const BasicBlock *End; member in class:llvm::BasicBlockEdge
54 Start(Start_), End(End_) { }
59 return End;
184 } // End llvm namespace
/external/llvm/include/llvm/MC/
H A DMCWin64EH.h65 : Begin(nullptr), End(nullptr),ExceptionHandler(nullptr),
70 MCSymbol *End; member in struct:llvm::MCWin64EHUnwindInfo
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.h40 MCSymbol *End; member in struct:llvm::WinCodeViewLineTables::FunctionInfo
41 FunctionInfo() : End(nullptr) {}
142 } // End of namespace llvm
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp115 SlotIndex Start, End; local
116 std::tie(Start, End) = Indexes->getMBBRange(MBB);
120 End = I->Kill;
128 Updater.add(Start, End, I->Value);
213 SlotIndex Start, End; local
214 std::tie(Start, End) = Indexes->getMBBRange(Pred);
218 VNInfo *VNI = LR.extendInBlock(Start, End);
248 SlotIndex Start, End; local
249 std::tie(Start, End) = Indexes->getMBBRange(*I);
252 End
343 SlotIndex Start, End; local
[all...]
H A DSlotIndexes.cpp148 MachineBasicBlock::iterator End) {
155 while (End != MBB->end() && !hasIndex(End))
156 ++End;
166 if (End == MBB->end())
169 endIdx = getInstructionIndex(End);
177 MachineBasicBlock::iterator MBBI = End;
208 for (MachineBasicBlock::iterator I = End; I != Begin;) {
146 repairIndexesInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End) argument
/external/llvm/lib/ExecutionEngine/
H A DRTDyldMemoryManager.cpp102 const char *End = P + Size; local
105 } while(P != End);
112 const char *End = P + Size; local
115 } while(P != End);
/external/llvm/lib/MC/MCAnalysis/
H A DMCModule.cpp29 assert(Begin <= NewAtom->End && "Creating MCAtom with endpoints reversed?");
34 assert((I == atom_end() || (*I)->getBeginAddr() > NewAtom->End)
41 MCTextAtom *MCModule::createTextAtom(uint64_t Begin, uint64_t End) { argument
42 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End);
47 MCDataAtom *MCModule::createDataAtom(uint64_t Begin, uint64_t End) { argument
48 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End);
67 assert((NewI == atom_end() || (*NewI)->getBeginAddr() > Atom->End)
73 Atom->End = NewEnd;
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp182 const char *End = DataBuffer->getBufferEnd(); local
184 while (CurrentPos != End && *CurrentPos == 0)
187 if (CurrentPos == End)
191 if (CurrentPos + sizeof(RawHeader) > End)
/external/llvm/tools/opt/
H A DPasses.cpp49 } // End anonymous namespace.
146 size_t End = PipelineText.find_first_of(",)"); local
147 if (!parseFunctionPassName(FPM, PipelineText.substr(0, End)))
152 PipelineText = PipelineText.substr(End);
196 size_t End = PipelineText.find_first_of(",)"); local
197 if (!parseCGSCCPassName(CGPM, PipelineText.substr(0, End)))
201 PipelineText = PipelineText.substr(End);
259 size_t End = PipelineText.find_first_of(",)"); local
260 if (!parseModulePassName(MPM, PipelineText.substr(0, End)))
265 PipelineText = PipelineText.substr(End);
[all...]
/external/bison/djgpp/
H A Dconfig.bat490 goto End
494 goto End
498 goto End
502 goto End
506 goto End
510 goto End
514 goto End
518 goto End
522 goto End
526 goto End
536 :End label
[all...]
/external/chromium_org/cc/layers/
H A Dlayer_iterator.h24 // LayerIteratorType::End(&render_surface_layer_list);
73 // LayerIterator::Begin() and LayerIterator::End() and passing in the
117 static LayerIteratorType End( function in class:cc::LayerIterator
214 // End of the list.
/external/chromium_org/cc/resources/
H A Dtexture_uploader.cc60 void TextureUploader::Query::End() { function in class:cc::TextureUploader::Query
132 available_queries_.front()->End();
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_country.cc787 static const Iterator End();
832 const CountryDataMap::Iterator CountryDataMap::End() { function in class:autofill::__anon6305::CountryDataMap
907 it != CountryDataMap::End();
964 it != CountryDataMap::End();
1054 DCHECK(result != CountryDataMap::End());
1073 it != CountryDataMap::End();
1095 if (CountryDataMap::Find(country_code) == CountryDataMap::End())
/external/chromium_org/gpu/command_buffer/service/
H A Dgpu_tracer.cc126 void GPUTrace::End() { function in class:gpu::gles2::GPUTrace
230 // End Trace for all active markers
235 markers_[n][i].trace_->End();
272 bool GPUTracer::End(GpuTracerSource source) { function in class:gpu::gles2::GPUTracer
283 trace->End();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDOMWrapperMap.h101 static Iterator End(Impl* impl) { return impl->end(); } function in class:blink::DOMWrapperMap::PersistentValueMapTraits
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.h130 End, enumerator in enum:blink::FINAL::CueAlignment
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.h176 End enumerator in enum:blink::FINAL::StepAtPosition
188 DEFINE_STATIC_REF(StepsTimingFunction, end, create(1, End));
194 case End:
/external/chromium_org/third_party/libwebp/utils/
H A Dthread.c271 static void End(WebPWorker* const worker) { function
291 Init, Reset, Sync, Launch, Execute, End
298 winterface->Execute == NULL || winterface->End == NULL) {
/external/chromium_org/third_party/smhasher/src/
H A DSpooky.h166 // 128-bit result is reported, so End() does three iterations.
187 static INLINE void End( function in class:SpookyHash
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl114 bind Sqlitecon <End> {sqlitecon::End %W}
115 bind Sqlitecon <Control-e> {sqlitecon::End %W}
187 proc sqlitecon::End w {
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Daction_runner.py40 End() method in the returned object must be called once to mark
587 def End(self): member in class:Interaction
/external/clang/include/clang/AST/
H A DStmtOpenMP.h96 ArrayRef<OMPClause *>::const_iterator End; member in class:clang::OMPExecutableDirective::filtered_clause_iterator
99 while (Current != End && !Pred(*Current))
105 filtered_clause_iterator() : Current(), End() {}
107 : Current(Arr.begin()), End(Arr.end()), Pred(Pred) {
124 bool operator!() { return Current == End; }
125 operator bool() { return Current != End; }
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h39 SourceLocation End; member in struct:clang::ast_matchers::dynamic::SourceRange
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h54 T *Begin, *End, *Capacity; member in class:clang::BumpVector
58 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
65 destroy_range(Begin, End);
86 iterator end() { return End; }
87 const_iterator end() const { return End; }
95 bool empty() const { return Begin == End; }
96 size_type size() const { return End-Begin; }
99 assert(Begin + idx < End);
103 assert(Begin + idx < End);
122 --End;
[all...]

Completed in 607 milliseconds

1234567891011>>