Searched refs:Cursor (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-12-stable/contrib/tcsh/
H A Ded.chared.c169 if (Cursor < LastChar) { /* if I must move chars */
170 for (cp = LastChar; cp >= Cursor; cp--)
172 if (Mark && Mark > Cursor)
183 if (num > LastChar - Cursor)
184 num = (int) (LastChar - Cursor); /* bounds check */
191 UndoPtr = Cursor;
192 for (cp = Cursor; cp <= LastChar; cp++) {
198 for (cp = Cursor; cp + num <= LastChar; cp++)
202 if (Mark && Mark > Cursor && Mark <= Cursor
[all...]
H A Ded.inputl.c139 Cursor = InputBuf + CursSaved;
157 if (Cursor > LastChar)
158 xprintf("Cursor > LastChar\r\n");
159 if (Cursor < InputBuf)
160 xprintf("Cursor < InputBuf\r\n");
161 if (Cursor > InputLim)
162 xprintf("Cursor > InputLim\r\n");
271 Cursor = LastChar;
282 Cursor = LastChar;
298 Cursor
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h78 Cursor = 4;
89 Cursor = 4;
95 StringRef VersionStr = Buffer->getBuffer().slice(Cursor, Cursor + 4);
97 Cursor += 4;
102 Cursor += 4;
107 Cursor += 4;
118 StringRef Tag = Buffer->getBuffer().slice(Cursor, Cursor + 4);
123 Cursor
240 uint64_t Cursor = 0; member in class:llvm::GCOVBuffer
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp35 class Cursor { class in namespace:__anon4572
40 Cursor(NoneType) {} function in class:__anon4572::Cursor
42 explicit Cursor(StringRef Str) { function in class:__anon4572::Cursor
55 StringRef upto(Cursor C) const {
90 static Cursor skipWhitespace(Cursor C) {
99 static Cursor skipComment(Cursor C) {
119 Cursor C = Cursor(Valu
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h52 /// attempting to parse and without updating the Cursor offset. After clearing
53 /// the error flag, one can again use the Cursor object for parsing.
54 class Cursor { class in class:llvm::DataExtractor
62 explicit Cursor(uint64_t Offset) : Offset(Offset), Err(Error::success()) {} function in class:llvm::DataExtractor::Cursor
69 /// Return the current position of this Cursor. In the error state this is
70 /// the position of the Cursor before the first error was encountered.
73 /// Return error contained inside this Cursor, if any. Clears the internal
74 /// Cursor state.
180 uint64_t getUnsigned(Cursor &C, uint32_t Size) const {
233 uint64_t getAddress(Cursor
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.h53 /// RefCount - The total number of Cursor instances referring to this Entry.
160 friend class Cursor;
179 /// Cursor - The primary query interface for the block interference cache.
180 class Cursor { class in class:llvm::InterferenceCache
197 /// Cursor - Create a dangling cursor.
198 Cursor() = default;
200 Cursor(const Cursor &O) { function in class:llvm::InterferenceCache::Cursor
204 Cursor &operator=(const Cursor
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMacOSXFrameBackchain.h22 const UnwindMacOSXFrameBackchain::Cursor &cursor);
50 UnwindMacOSXFrameBackchain::Cursor m_cursor;
H A DUnwindMacOSXFrameBackchain.h37 struct Cursor { struct in class:UnwindMacOSXFrameBackchain
43 std::vector<Cursor> m_cursors;
H A DUnwindLLDB.h112 struct Cursor { struct in class:lldb_private::UnwindLLDB
121 Cursor() function in struct:lldb_private::UnwindLLDB::Cursor
126 DISALLOW_COPY_AND_ASSIGN(Cursor);
129 typedef std::shared_ptr<Cursor> CursorSP;
H A DUnwindLLDB.cpp79 CursorSP first_cursor_sp(new Cursor());
128 CursorSP cursor_sp(new Cursor());
377 // Cursor::m_frames[m_frames.size() - 2]. It also succeeded to Unwind next
379 // Cursor::m_frames[m_frames.size() - 2], reg_ctx_lldb_sp field was already
456 Cursor *frame_cursor = m_frames[idx].get();
H A DRegisterContextMacOSXFrameBackchain.cpp25 const UnwindMacOSXFrameBackchain::Cursor &cursor)
H A DUnwindMacOSXFrameBackchain.cpp93 Cursor cursor;
185 Cursor cursor;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp109 enum class SerializedDiagnosticReader::Cursor { class in class:SerializedDiagnosticReader
115 llvm::ErrorOr<SerializedDiagnosticReader::Cursor>
130 return Cursor::Record;
138 return Cursor::BlockBegin;
143 return Cursor::BlockEnd;
174 llvm::ErrorOr<Cursor> Res = skipUntilRecordOrBlock(Stream, BlockOrCode);
179 case Cursor::Record:
181 case Cursor::BlockBegin:
188 case Cursor::BlockEnd:
226 llvm::ErrorOr<Cursor> Re
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h44 /// Reads a record with id AbbrevID from Cursor, resetting the
46 Expected<unsigned> readRecord(llvm::BitstreamCursor &Cursor,
338 explicit SavedStreamPosition(llvm::BitstreamCursor &Cursor) argument
339 : Cursor(Cursor), Offset(Cursor.GetCurrentBitNo()) {}
342 if (llvm::Error Err = Cursor.JumpToBit(Offset))
344 "Cursor should always be able to go back, failed: " +
349 llvm::BitstreamCursor &Cursor; member in struct:clang::SavedStreamPosition
H A DGlobalModuleIndex.h118 llvm::BitstreamCursor Cursor);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h69 enum class Cursor;
72 llvm::ErrorOr<Cursor> skipUntilRecordOrBlock(llvm::BitstreamCursor &Stream,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp413 Instruction *Cursor = nullptr; local
414 for (Cursor = &F.getEntryBlock().front(); HasNextInstruction(Cursor);
415 Cursor = NextInstruction(Cursor)) {
424 if (auto *Call = dyn_cast<CallBase>(Cursor)) {
431 assert((HasNextInstruction(Cursor) || Cursor->isTerminator()) &&
434 return Cursor;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h47 uint64_t getRelocatedAddress(Cursor &C, uint64_t *SecIx = nullptr) const {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp67 static Expected<uint64_t> readAbbreviatedField(BitstreamCursor &Cursor, argument
77 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
78 return Cursor.Read((unsigned)Op.getEncodingData());
80 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
81 return Cursor.ReadVBR64((unsigned)Op.getEncodingData());
83 if (Expected<unsigned> Res = Cursor.Read(6))
/freebsd-12-stable/contrib/googletest/googletest/scripts/
H A Dpump.py87 class Cursor: class in inherits:
120 return Cursor(self.line, self.column + offset)
123 return Cursor(self.line, self.column - offset)
128 return Cursor(self.line, self.column)
134 return Cursor(-1, -1)
200 found_start = Cursor(cur_line_number, start_column)
212 end = Cursor(len(lines) - 1, len(lines[-1]))
339 pos = Cursor(exp_token.end.line + 1, 0)
359 new_pos = Cursor(pos.line + 1, 0)
386 for token in TokenizeLines(lines, Cursor(
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp96 Cursor("cursor",
323 const cl::opt<unsigned> &Cursor,
331 if (Cursor.getNumOccurrences() != 0)
389 unsigned CursorPosition = Cursor;
407 outputXML(Replaces, FormatChanges, Status, Cursor, CursorPosition);
425 if (Cursor.getNumOccurrences() != 0) {
426 outs() << "{ \"Cursor\": "
320 outputXML(const Replacements &Replaces, const Replacements &FormatChanges, const FormattingAttemptStatus &Status, const cl::opt<unsigned> &Cursor, unsigned CursorPosition) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp130 llvm::BitstreamCursor Cursor)
144 if (Expected<llvm::BitstreamEntry> Res = Cursor.advance())
171 if (llvm::Error Err = Cursor.EnterSubBlock(GLOBAL_INDEX_BLOCK_ID))
174 } else if (llvm::Error Err = Cursor.SkipBlock())
182 Cursor.readRecord(Entry.ID, Record, &Blob);
267 llvm::BitstreamCursor Cursor(*Buffer);
271 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Cursor.Read(8)) {
280 return std::make_pair(new GlobalModuleIndex(std::move(Buffer), Cursor),
128 GlobalModuleIndex( std::unique_ptr<llvm::MemoryBuffer> IndexBuffer, llvm::BitstreamCursor Cursor) argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DDataExtractor.cpp82 uint8_t *DataExtractor::getU8(Cursor &C, uint8_t *Dst, uint32_t Count) const {
209 void DataExtractor::skip(Cursor &C, uint64_t Length) const {
/freebsd-12-stable/stand/i386/kgzldr/
H A Dcrt.s39 .set BDA_POS,0x450 # Cursor position
50 movw (%ebx),%dx # Cursor position
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp681 DIExpressionCursor Cursor(Ops);
687 *Asm->MF->getSubtarget().getRegisterInfo(), Cursor, FrameReg);
688 DwarfExpr.addExpression(std::move(Cursor));
1197 DIExpressionCursor Cursor({});
1199 if (!DwarfExpr.addMachineRegExpression(TRI, Cursor, Location.getReg()))
1201 DwarfExpr.addExpression(std::move(Cursor));
1225 DIExpressionCursor Cursor(DIExpr);
1229 DwarfExpr.beginEntryValueExpression(Cursor);
1233 if (!DwarfExpr.addMachineRegExpression(TRI, Cursor, Location.getReg()))
1235 DwarfExpr.addExpression(std::move(Cursor));
[all...]

Completed in 165 milliseconds

12