HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 51 - 75 of 251) sorted by null

1 23 4 5 6 7 8 91011

  /external/llvm/utils/FileCheck/
FileCheck.cpp 55 /// MatchEOF - When set, this pattern only matches the end of file. This is
145 size_t End = PatternStr.find("}}");
146 if (End == StringRef::npos) {
149 "found start of regex string with no end '}}'");
160 if (AddRegExToRegEx(PatternStr.substr(2, End-2), CurParen, SM))
164 PatternStr = PatternStr.substr(End+2);
175 size_t End = PatternStr.find("]]");
176 if (End == StringRef::npos) {
183 StringRef MatchStr = PatternStr.substr(2, End-2);
184 PatternStr = PatternStr.substr(End+2)
    [all...]
  /ndk/sources/host-tools/make-3.81/
configure.bat 47 goto End
56 goto End
61 :End
  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.cc 92 void SlideAnimatorGtk::End() {
93 animation_->End();
  /external/clang/lib/Driver/
OptTable.cpp 23 // exceptions. First, '\0' comes at the end of the alphabet instead of
197 const Info *End = OptionInfos + getNumOptions();
200 Start = std::lower_bound(Start, End, Str);
202 // Options are stored in sorted order, with '\0' at the end of the
210 for (; Start != End; ++Start) {
212 for (; Start != End; ++Start)
215 if (Start == End)
239 unsigned Index = 0, End = ArgEnd - ArgBegin;
240 while (Index < End) {
253 assert(Index >= End && "Unexpected parser error.")
    [all...]
  /external/harfbuzz/src/
harfbuzz-open.h 184 HB_UShort End; /* last glyph ID in the range */
229 HB_UShort End; /* last glyph ID in the range */
  /external/llvm/include/llvm/Object/
MachOObject.h 118 size_t End = getStringTableData().find('\0', Index);
119 return getStringTableData().slice(Index, End);
201 } // end namespace object
202 } // end namespace llvm
  /external/llvm/lib/AsmParser/
LLLexer.cpp 44 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
46 for (; Buffer != End; Buffer++) {
58 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
60 for (; Buffer != End; ++Buffer) {
79 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
83 assert(Buffer != End);
94 for (int i=0; i<16 && Buffer != End; i++, Buffer++) {
104 if (Buffer != End)
110 void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
113 for (int i=0; i<4 && Buffer != End; i++, Buffer++)
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 90 assert(I != TypeMap.end() && "Type not in ValueEnumerator!");
100 assert(I != AttributeMap.end() && "Attribute not in ValueEnumerator!");
106 void getFunctionConstantRange(unsigned &Start, unsigned &End) const {
108 End = FirstInstID;
151 } // End llvm namespace
  /external/llvm/lib/CodeGen/
LiveInterval.cpp 38 return end();
43 if (Pos < I[Mid].end)
51 /// killedInRange - Return true if the interval has kills in [Start,End).
52 bool LiveInterval::killedInRange(SlotIndex Start, SlotIndex End) const {
54 std::lower_bound(ranges.begin(), ranges.end(), End);
56 // Now r points to the first interval with start >= End, or ranges.end().
61 // Now r points to the last interval with end <= End
    [all...]
SplitKit.cpp 70 if (FirstTerm == MBB->end())
80 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
117 array_pod_sort(UseSlots.begin(), UseSlots.end());
121 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
123 UseSlots.end());
156 LiveInterval::const_iterator LVE = CurLI->end();
160 UseE = UseSlots.end();
176 // The range shouldn't end mid-block if there are no uses. This shouldn't
178 if (LVI->end < Stop)
201 while (LVI->end < Stop)
    [all...]
CriticalAntiDepBreaker.h 84 MachineBasicBlock::iterator End,
SplitKit.h 128 /// can create live ranges that end in mid-air.
370 /// enterIntvAtEnd - Enter the open interval at the end of MBB.
371 /// Use the open interval from he inserted copy to the MBB end.
379 void useIntv(SlotIndex Start, SlotIndex End);
382 /// Return the end of the live range.
386 /// Return the end of the live range.
391 /// Return the end of the live range.
400 /// The Start index should be a return value from a leaveIntv* call, and End
404 void overlapIntv(SlotIndex Start, SlotIndex End);
AggressiveAntiDepBreaker.h 147 MachineBasicBlock::iterator End,
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 90 assert(I != TypeMap.end() && "Type not in ValueEnumerator!");
100 assert(I != AttributeMap.end() && "Attribute not in ValueEnumerator!");
106 void getFunctionConstantRange(unsigned &Start, unsigned &End) const {
108 End = FirstInstID;
151 } // End llvm namespace
  /external/llvm/include/llvm/ADT/
StringRef.h 88 iterator end() const { return Data + Length; } function in class:llvm::StringRef
205 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0;
347 /// slice - Return a reference to the substring from [Start, End).
353 /// \param End - The index following the last character to include in the
357 StringRef slice(size_t Start, size_t End) const {
359 End = min(max(Start, End), Length);
360 return StringRef(Data + Start, End - Start);
  /external/llvm/lib/Support/
SourceMgr.cpp 75 // Use <= here so that a pointer to the null at the end of the buffer
160 // Get the end of the line.
175 if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart)
181 if (R.End.getPointer() > LineEnd)
182 R.End = SMLoc::getFromPointer(LineEnd);
186 R.End.getPointer()-LineStart));
  /external/llvm/lib/MC/
MCStreamer.cpp 167 if (!CurFrame || CurFrame->End)
277 if (CurFrame && !CurFrame->End)
300 CurFrame->End = getContext().CreateTempSymbol();
301 EmitLabel(CurFrame->End);
420 if (!CurFrame || CurFrame->End)
426 if (CurFrame && !CurFrame->End)
440 CurFrame->End = getContext().CreateTempSymbol();
441 EmitLabel(CurFrame->End);
459 report_fatal_error("End of a chained region outside a chained region!");
460 CurFrame->End = getContext().CreateTempSymbol()
    [all...]
  /external/quake/quake/src/QW/client/
qwcl.mak     [all...]
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble.cc 128 animation_.End();
152 animation_.End();
  /external/clang/lib/Lex/
HeaderMap.cpp 55 } // end namespace clang.
62 const char *S = Str.begin(), *End = Str.end();
64 for (; S != End; S++)
171 // that the "string" can not overrun the end of the file, because the buffer
  /external/llvm/include/llvm/MC/
MCDwarf.h 264 MCDwarfFrameInfo() : Begin(0), End(0), Personality(0), Lsda(0),
268 MCSymbol *End;
288 } // end namespace llvm
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 32 uint64_t End, const MCInstrAnalysis *Ana,
49 if (VisitedInsts.find(Index) != VisitedInsts.end())
52 for (;Index < End; Index += Size) {
92 std::sort(Instructions.begin(), Instructions.end());
97 spe = llvm::prior(Splits.end()); spi != spe; ++spi) {
110 std::sort(f.Blocks.begin(), f.Blocks.end());
113 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i) {
123 for (MCFunction::iterator i = f.begin(), e = f.end(); i != e; ++i)
MCFunction.h 57 succ_iterator succ_end() const { return Succs.end(); }
82 const MemoryObject &Region, uint64_t Start, uint64_t End,
88 iterator end() const { return Blocks.end(); } function in class:llvm::MCFunction
  /external/mesa3d/docs/
MESA_window_pos.spec 112 Begin and End.
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
97 for (Function::iterator I = F.begin(), E = F.end(); I != E; ) {
119 E = C.end(); B != E; ) {
130 BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End,
134 unsigned Size = End - Begin;
142 std::vector<CaseRange> RHS(Begin + Mid, End);
150 BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
152 BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
244 std::sort(Cases.begin(), Cases.end(), CaseCmp());
248 for (CaseItr I=Cases.begin(), J=llvm::next(Cases.begin()); J!=Cases.end(); ) {
    [all...]

Completed in 540 milliseconds

1 23 4 5 6 7 8 91011