Home
last modified time | relevance | path

Searched refs:Cursor (Results 1 – 25 of 54) sorted by relevance

123

/freebsd-12.1/contrib/tcsh/
H A Ded.chared.c206 if (Mark && Mark > Cursor && Mark <= Cursor+num) in c_delafter()
248 if (Mark && Mark > Cursor && Mark <= Cursor+num) in c_delbefore()
1153 while (Cursor < cp && *Cursor != '\n') { in e_inc_search()
1211 if (Cursor < InputBuf || Cursor > LastChar || in e_inc_search()
1413 Cursor--; in v_cmd_mode()
1701 Cursor++; in v_cm_complete()
2583 Cursor++; in e_tobeg()
2690 Cursor[-2] = Cursor[-1]; in e_charswitch()
2704 Cursor[-2] = Cursor[-1]; in e_gcharswitch()
3635 Cursor = c_eword(Cursor, LastChar, Argument); in v_eword()
[all …]
H A Ded.inputl.c396 Cursor = Cursor - newlen + curlen; in Inputl()
489 Cursor = Cursor - newlen + curlen; in Inputl()
846 *Cursor != '\0' && ((Cursor != argptr && Cursor[-1] == '\\') || in SpellLine()
847 (!ismetahash(*Cursor) && !iscmdmeta(*Cursor))); in SpellLine()
848 Cursor++) in SpellLine()
853 Cursor--; in SpellLine()
896 argptr = Cursor; in SpellLine()
924 *Cursor != '\0' && ((Cursor != argptr && Cursor[-1] == '\\') || in CompleteLine()
925 (!ismetahash(*Cursor) && !iscmdmeta(*Cursor))); in CompleteLine()
926 Cursor++) in CompleteLine()
[all …]
H A Ded.refresh.c382 if (cp >= Cursor && cur_h == -1) { in Refresh()
385 Cursor = cp; in Refresh()
1190 for (cp = InputBuf; cp < Cursor;) { /* do input buffer to Cursor */ in RefCursor()
1274 if (Cursor != LastChar) { in RefPlusOne()
1282 cp = Cursor - l; in RefPlusOne()
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp36 class Cursor { class
91 static Cursor skipWhitespace(Cursor C) { in skipWhitespace()
100 static Cursor skipComment(Cursor C) { in skipComment()
120 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString()
366 static Cursor maybeLexIRBlock(Cursor C, MIToken &Token, in maybeLexIRBlock()
376 static Cursor maybeLexIRValue(Cursor C, MIToken &Token, in maybeLexIRValue()
420 static Cursor maybeLexRegister(Cursor C, MIToken &Token, in maybeLexRegister()
470 static Cursor maybeLexMCSymbol(Cursor C, MIToken &Token, in maybeLexMCSymbol()
521 static Cursor lexFloatingPointLiteral(Cursor Range, Cursor C, MIToken &Token) { in lexFloatingPointLiteral()
584 static Cursor maybeLexExlaim(Cursor C, MIToken &Token, in maybeLexExlaim()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DGCOV.h77 Cursor = 4; in readGCNOFormat()
88 Cursor = 4; in readGCDAFormat()
96 Cursor += 4; in readGCOVVersion()
122 Cursor += 4; in readFunctionTag()
134 Cursor += 4; in readBlockTag()
146 Cursor += 4; in readEdgeTag()
158 Cursor += 4; in readLineTag()
170 Cursor += 4; in readArcTag()
182 Cursor += 4; in readObjectTag()
194 Cursor += 4; in readProgramTag()
[all …]
/freebsd-12.1/contrib/tcsh/nls/german/
H A Dset48 5 Cursor zu horizontaler Position
15 12 Cursor aus Statuszeile
16 13 Cursor in Ursprungsposition
20 17 Cursor nach unten
21 18 Cursor nach links
22 19 Cursor nach rechts
23 20 Cursor nach oben
29 26 Cursor in Statuszeile
30 27 Cursor eins hoch
35 32 Cursor mehrere Zeichen nach unten
[all …]
H A Dset35 2 Lösche Zeichen hinter Cursor
7 4 Lösche vom Anfang der Zeile bis zum Cursor - in Cut-Puffer
11 8 Vi: Ändere Groß/Kleinschreibung des Zeichen unter dem Cursor und bewege Cursor eins nach vorn
18 15 Kopiere aktuelles Wort zum Cursor
19 16 Kopiere Area zwischen Marke und Cursor in Cut-Puffer
21 18 Lösche Zeichen unter Cursor
32 29 Tausche Cursor und Marke aus
39 36 Vertausche zwei Zeichen vor dem Cursor
72 69 Tausche die zwei Zeichen vor dem Cursor
85 82 Vi gehe in Einfügemodus hinter dem Cursor
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp81 enum class SerializedDiagnosticReader::Cursor { enum in SerializedDiagnosticReader
87 llvm::ErrorOr<SerializedDiagnosticReader::Cursor>
98 return Cursor::BlockBegin; in skipUntilRecordOrBlock()
103 return Cursor::BlockEnd; in skipUntilRecordOrBlock()
115 return Cursor::Record; in skipUntilRecordOrBlock()
136 case Cursor::Record: in readMetaBlock()
138 case Cursor::BlockBegin: in readMetaBlock()
142 case Cursor::BlockEnd: in readMetaBlock()
178 case Cursor::BlockBegin: in readDiagnosticBlock()
186 case Cursor::BlockEnd: in readDiagnosticBlock()
[all …]
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DInterferenceCache.h161 friend class Cursor;
181 class Cursor {
199 Cursor() = default;
201 Cursor(const Cursor &O) { in Cursor() function
205 Cursor &operator=(const Cursor &O) {
210 ~Cursor() { setEntry(nullptr); } in ~Cursor()
/freebsd-12.1/sys/teken/
H A Dsequences40 CNL Cursor Next Line ^[ [ E n
41 CPL Cursor Previous Line ^[ [ F n
42 CPR Cursor Position Report ^[ [ n r
43 CUB Cursor Backward ^[ [ D n
44 CUD Cursor Down ^[ [ B n
45 CUD Cursor Down ^[ [ e n
46 CUF Cursor Forward ^[ [ C n
47 CUF Cursor Forward ^[ [ a n
48 CUP Cursor Position ^[ [ H n n
49 CUP Cursor Position ^[ [ f n n
[all …]
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp51 static uint64_t readAbbreviatedField(BitstreamCursor &Cursor, in readAbbreviatedField() argument
61 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize); in readAbbreviatedField()
62 return Cursor.Read((unsigned)Op.getEncodingData()); in readAbbreviatedField()
64 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize); in readAbbreviatedField()
65 return Cursor.ReadVBR64((unsigned)Op.getEncodingData()); in readAbbreviatedField()
67 return BitCodeAbbrevOp::DecodeChar6(Cursor.Read(6)); in readAbbreviatedField()
72 static void skipAbbreviatedField(BitstreamCursor &Cursor, in skipAbbreviatedField() argument
82 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize); in skipAbbreviatedField()
83 Cursor.Read((unsigned)Op.getEncodingData()); in skipAbbreviatedField()
87 Cursor.ReadVBR64((unsigned)Op.getEncodingData()); in skipAbbreviatedField()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.h114 struct Cursor { struct
123 Cursor() in Cursor() argument
128 DISALLOW_COPY_AND_ASSIGN(Cursor);
131 typedef std::shared_ptr<Cursor> CursorSP;
H A DUnwindMacOSXFrameBackchain.h37 struct Cursor { struct
43 std::vector<Cursor> m_cursors; argument
H A DRegisterContextMacOSXFrameBackchain.h23 const UnwindMacOSXFrameBackchain::Cursor &cursor);
51 UnwindMacOSXFrameBackchain::Cursor m_cursor;
H A DUnwindLLDB.cpp80 CursorSP first_cursor_sp(new Cursor()); in AddFirstFrame()
129 CursorSP cursor_sp(new Cursor()); in GetOneMoreFrame()
443 Cursor *frame_cursor = m_frames[idx].get(); in DoCreateRegisterContextForFrame()
H A DUnwindMacOSXFrameBackchain.cpp92 Cursor cursor; in GetStackFrameData_i386()
184 Cursor cursor; in GetStackFrameData_x86_64()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp416 Instruction *Cursor = nullptr; in findLocationForEntrySafepoint() local
417 for (Cursor = &F.getEntryBlock().front(); HasNextInstruction(Cursor); in findLocationForEntrySafepoint()
418 Cursor = NextInstruction(Cursor)) { in findLocationForEntrySafepoint()
427 if (auto CS = CallSite(Cursor)) { in findLocationForEntrySafepoint()
434 assert((HasNextInstruction(Cursor) || Cursor->isTerminator()) && in findLocationForEntrySafepoint()
437 return Cursor; in findLocationForEntrySafepoint()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp127 llvm::BitstreamCursor Cursor) in GlobalModuleIndex() argument
134 llvm::BitstreamEntry Entry = Cursor.advance(); in GlobalModuleIndex()
158 if (Cursor.EnterSubBlock(GLOBAL_INDEX_BLOCK_ID)) in GlobalModuleIndex()
162 } else if (Cursor.SkipBlock()) { in GlobalModuleIndex()
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) { in GlobalModuleIndex()
249 llvm::BitstreamCursor Cursor(*Buffer); in readIndex() local
252 if (Cursor.Read(8) != 'B' || in readIndex()
253 Cursor.Read(8) != 'C' || in readIndex()
254 Cursor.Read(8) != 'G' || in readIndex()
255 Cursor.Read(8) != 'I') { in readIndex()
[all …]
/freebsd-12.1/contrib/googletest/googletest/scripts/
H A Dpump.py87 class Cursor: class
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(0, 0)):
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h70 enum class Cursor; variable
73 llvm::ErrorOr<Cursor> skipUntilRecordOrBlock(llvm::BitstreamCursor &Stream,
/freebsd-12.1/contrib/llvm/tools/clang/tools/clang-format/
H A DClangFormat.cpp96 Cursor("cursor", variable
275 unsigned CursorPosition = Cursor; in format()
296 if (Cursor.getNumOccurrences() != 0) in format()
319 if (Cursor.getNumOccurrences() != 0) { in format()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp607 DIExpressionCursor Cursor(Ops); in constructVariableDIEImpl() local
613 *Asm->MF->getSubtarget().getRegisterInfo(), Cursor, FrameReg); in constructVariableDIEImpl()
614 DwarfExpr.addExpression(std::move(Cursor)); in constructVariableDIEImpl()
1032 DIExpressionCursor Cursor({}); in addAddress() local
1034 if (!DwarfExpr.addMachineRegExpression(TRI, Cursor, Location.getReg())) in addAddress()
1036 DwarfExpr.addExpression(std::move(Cursor)); in addAddress()
1056 DIExpressionCursor Cursor(DIExpr); in addComplexAddress() local
1058 if (!DwarfExpr.addMachineRegExpression(TRI, Cursor, Location.getReg())) in addComplexAddress()
1060 DwarfExpr.addExpression(std::move(Cursor)); in addComplexAddress()
/freebsd-12.1/stand/i386/kgzldr/
H A Dcrt.s39 .set BDA_POS,0x450 # Cursor position
50 movw (%ebx),%dx # Cursor position
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DFormat.cpp1665 const SmallVectorImpl<unsigned> &Indices, unsigned Cursor) { in FindCursorIndex() argument
1671 if (!(Cursor >= Start && Cursor < End)) in FindCursorIndex()
1674 OffsetToEOL = End - Cursor; in FindCursorIndex()
1714 if (Cursor) in sortCppIncludes()
1716 FindCursorIndex(Includes, Indices, *Cursor); in sortCppIncludes()
1744 if (Cursor && CursorIndex == Index) in sortCppIncludes()
1745 *Cursor = IncludesBeginOffset + result.size() - CursorToEOLOffset; in sortCppIncludes()
1770 unsigned *Cursor) { in sortCppIncludes() argument
1817 Cursor); in sortCppIncludes()
1986 StringRef FileName, unsigned *Cursor) { in sortIncludes() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTReader.h618 llvm::BitstreamCursor &Cursor,
623 llvm::BitstreamCursor &Cursor,
1903 static bool ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID);
2379 unsigned readRecord(llvm::BitstreamCursor &Cursor, unsigned AbbrevID);
2665 explicit SavedStreamPosition(llvm::BitstreamCursor &Cursor) in SavedStreamPosition()
2666 : Cursor(Cursor), Offset(Cursor.GetCurrentBitNo()) {} in SavedStreamPosition()
2669 Cursor.JumpToBit(Offset); in ~SavedStreamPosition()
2673 llvm::BitstreamCursor &Cursor;

123