Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/tcsh/
H A Ded.chared.c202 if (Mark && Mark > Cursor && Mark <= Cursor+num) in c_delafter()
244 if (Mark && Mark > Cursor && Mark <= Cursor+num) in c_delbefore()
1148 while (Cursor < cp && *Cursor != '\n') { in e_inc_search()
1206 if (Cursor < InputBuf || Cursor > LastChar || in e_inc_search()
1408 Cursor--; in v_cmd_mode()
1696 Cursor++; in v_cm_complete()
2682 Cursor++; in e_charswitch()
2685 Cursor[-2] = Cursor[-1]; in e_charswitch()
2699 Cursor[-2] = Cursor[-1]; in e_gcharswitch()
3630 Cursor = c_eword(Cursor, LastChar, Argument); in v_eword()
[all …]
H A Ded.inputl.c392 Cursor = Cursor - newlen + curlen; in Inputl()
485 Cursor = Cursor - newlen + curlen; in Inputl()
849 *Cursor != '\0' && ((Cursor != argptr && Cursor[-1] == '\\') || in SpellLine()
850 (!ismetahash(*Cursor) && !iscmdmeta(*Cursor))); in SpellLine()
851 Cursor++) in SpellLine()
856 Cursor--; in SpellLine()
899 argptr = Cursor; in SpellLine()
927 *Cursor != '\0' && ((Cursor != argptr && Cursor[-1] == '\\') || in CompleteLine()
928 (!ismetahash(*Cursor) && !iscmdmeta(*Cursor))); in CompleteLine()
929 Cursor++) in CompleteLine()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp32 class Cursor { class
87 static Cursor skipWhitespace(Cursor C) { in skipWhitespace()
96 static Cursor skipComment(Cursor C) { in skipComment()
106 static Cursor skipMachineOperandComment(Cursor C) { in skipMachineOperandComment()
130 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString()
388 static Cursor maybeLexIRBlock(Cursor C, MIToken &Token, in maybeLexIRBlock()
398 static Cursor maybeLexIRValue(Cursor C, MIToken &Token, in maybeLexIRValue()
442 static Cursor maybeLexRegister(Cursor C, MIToken &Token, in maybeLexRegister()
492 static Cursor maybeLexMCSymbol(Cursor C, MIToken &Token, in maybeLexMCSymbol()
543 static Cursor lexFloatingPointLiteral(Cursor Range, Cursor C, MIToken &Token) { in lexFloatingPointLiteral()
[all …]
/freebsd-13.1/contrib/tcsh/nls/german/
H A Dset47 5 Cursor zu horizontaler Position
14 12 Cursor aus Statuszeile
15 13 Cursor in Ursprungsposition
19 17 Cursor nach unten
20 18 Cursor nach links
21 19 Cursor nach rechts
22 20 Cursor nach oben
28 26 Cursor in Statuszeile
29 27 Cursor eins hoch
34 32 Cursor mehrere Zeichen nach unten
[all …]
H A Dset34 2 Lösche Zeichen hinter Cursor
6 4 Lösche vom Anfang der Zeile bis zum Cursor - in Cut-Puffer
10 8 Vi: Ändere Groß/Kleinschreibung des Zeichen unter dem Cursor und bewege Cursor eins nach vorn
17 15 Kopiere aktuelles Wort zum Cursor
18 16 Kopiere Area zwischen Marke und Cursor in Cut-Puffer
20 18 Lösche Zeichen unter Cursor
31 29 Tausche Cursor und Marke aus
38 36 Vertausche zwei Zeichen vor dem Cursor
71 69 Tausche die zwei Zeichen vor dem Cursor
84 82 Vi gehe in Einfügemodus hinter dem Cursor
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h54 class Cursor {
133 const char *getCStr(Cursor &C) const { return getCStrRef(C).data(); } in getCStr()
166 StringRef getCStrRef(Cursor &C) const { in getCStrRef()
236 StringRef getBytes(Cursor &C, uint64_t Length) { in getBytes()
276 uint64_t getUnsigned(Cursor &C, uint32_t Size) const { in getUnsigned()
356 uint8_t getU8(Cursor &C) const { return getU8(&C.Offset, &C.Err); } in getU8()
387 uint8_t *getU8(Cursor &C, uint8_t *Dst, uint32_t Count) const;
649 void skip(Cursor &C, uint64_t Length) const;
655 bool eof(const Cursor &C) const { return size() == C.Offset; } in eof()
690 static uint64_t &getOffset(Cursor &C) { return C.Offset; } in getOffset()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp366 DataExtractor::Cursor Cursor(*OffsetPtr); in parse() local
414 } else if (Cursor) { in parse()
426 if (!Cursor) in parse()
717 DataExtractor::Cursor &Cursor) { in parseULEB128() argument
719 if (Cursor) in parseULEB128()
799 DataExtractor::Cursor Cursor(*OffsetPtr); in parse() local
821 if (!Cursor) { in parse()
965 if (Cursor && Cursor.tell() != End) in parse()
1018 if (Cursor) { in parse()
1093 if (Cursor) { in parse()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnwindLLDB.h111 struct Cursor { struct
122 Cursor() : sctx(), reg_ctx_lldb_sp() {} in Cursor() argument
125 Cursor(const Cursor &) = delete;
126 const Cursor &operator=(const Cursor &) = delete; argument
129 typedef std::shared_ptr<Cursor> CursorSP;
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp109 enum class SerializedDiagnosticReader::Cursor { enum in SerializedDiagnosticReader
115 llvm::ErrorOr<SerializedDiagnosticReader::Cursor>
130 return Cursor::Record; in skipUntilRecordOrBlock()
138 return Cursor::BlockBegin; in skipUntilRecordOrBlock()
143 return Cursor::BlockEnd; in skipUntilRecordOrBlock()
179 case Cursor::Record: in readMetaBlock()
181 case Cursor::BlockBegin: in readMetaBlock()
188 case Cursor::BlockEnd: in readMetaBlock()
231 case Cursor::BlockBegin: in readDiagnosticBlock()
242 case Cursor::BlockEnd: in readDiagnosticBlock()
[all …]
/freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterferenceCache.h176 class Cursor {
194 Cursor() = default;
196 Cursor(const Cursor &O) { in Cursor() function
200 Cursor &operator=(const Cursor &O) {
205 ~Cursor() { setEntry(nullptr); } in ~Cursor()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h49 Expected<unsigned> readRecord(llvm::BitstreamCursor &Cursor,
347 explicit SavedStreamPosition(llvm::BitstreamCursor &Cursor) in SavedStreamPosition()
348 : Cursor(Cursor), Offset(Cursor.GetCurrentBitNo()) {} in SavedStreamPosition()
351 if (llvm::Error Err = Cursor.JumpToBit(Offset)) in ~SavedStreamPosition()
358 llvm::BitstreamCursor &Cursor;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp414 Instruction *Cursor = nullptr; in findLocationForEntrySafepoint() local
415 for (Cursor = &F.getEntryBlock().front(); HasNextInstruction(Cursor); in findLocationForEntrySafepoint()
416 Cursor = NextInstruction(Cursor)) { in findLocationForEntrySafepoint()
425 if (auto *Call = dyn_cast<CallBase>(Cursor)) { in findLocationForEntrySafepoint()
432 assert((HasNextInstruction(Cursor) || Cursor->isTerminator()) && in findLocationForEntrySafepoint()
435 return Cursor; in findLocationForEntrySafepoint()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h56 std::pair<uint64_t, dwarf::DwarfFormat> getInitialLength(Cursor &C) const { in getInitialLength()
65 uint64_t getRelocatedValue(Cursor &C, uint32_t Size,
75 uint64_t getRelocatedAddress(Cursor &C, uint64_t *SecIx = nullptr) const {
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp66 static Expected<uint64_t> readAbbreviatedField(BitstreamCursor &Cursor, in readAbbreviatedField() argument
76 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize); in readAbbreviatedField()
77 return Cursor.Read((unsigned)Op.getEncodingData()); in readAbbreviatedField()
79 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize); in readAbbreviatedField()
80 return Cursor.ReadVBR64((unsigned)Op.getEncodingData()); in readAbbreviatedField()
82 if (Expected<unsigned> Res = Cursor.Read(6)) in readAbbreviatedField()
/freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp486 DIExpressionCursor Cursor({}); in updateSubprogramScopeDIE() local
489 DwarfExpr.addExpression(std::move(Cursor)); in updateSubprogramScopeDIE()
778 DIExpressionCursor Cursor(Expr); in constructVariableDIEImpl() local
817 std::move(Cursor), in constructVariableDIEImpl()
868 DIExpressionCursor Cursor(Ops); in constructVariableDIEImpl() local
875 DwarfExpr.addExpression(std::move(Cursor)); in constructVariableDIEImpl()
1432 DIExpressionCursor Cursor({}); in addAddress() local
1436 DwarfExpr.addExpression(std::move(Cursor)); in addAddress()
1459 DIExpressionCursor Cursor(DIExpr); in addComplexAddress() local
1462 DwarfExpr.beginEntryValueExpression(Cursor); in addComplexAddress()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp96 Cursor("cursor", variable
340 const cl::opt<unsigned> &Cursor, in outputXML() argument
348 if (Cursor.getNumOccurrences() != 0) in outputXML()
411 unsigned CursorPosition = Cursor; in format()
440 outputXML(Replaces, FormatChanges, Status, Cursor, CursorPosition); in format()
458 if (Cursor.getNumOccurrences() != 0) { in format()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h69 enum class Cursor; variable
72 llvm::ErrorOr<Cursor> skipUntilRecordOrBlock(llvm::BitstreamCursor &Stream,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp1626 DataExtractor::Cursor &Cursor, ArrayRef<uint8_t> Bytes, in decodeKernelDescriptorDirective() argument
1643 switch (Cursor.tell()) { in decodeKernelDescriptorDirective()
1645 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1651 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1657 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1676 DE.skip(Cursor, 8); in decodeKernelDescriptorDirective()
1693 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1700 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1708 FourByteBuffer = DE.getU32(Cursor); in decodeKernelDescriptorDirective()
1717 TwoByteBuffer = DE.getU16(Cursor); in decodeKernelDescriptorDirective()
[all …]
H A DAMDGPUDisassembler.h72 decodeKernelDescriptorDirective(DataExtractor::Cursor &Cursor,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp130 llvm::BitstreamCursor Cursor) in GlobalModuleIndex() argument
144 if (Expected<llvm::BitstreamEntry> Res = Cursor.advance()) in GlobalModuleIndex()
171 if (llvm::Error Err = Cursor.EnterSubBlock(GLOBAL_INDEX_BLOCK_ID)) in GlobalModuleIndex()
174 } else if (llvm::Error Err = Cursor.SkipBlock()) in GlobalModuleIndex()
182 Cursor.readRecord(Entry.ID, Record, &Blob); in GlobalModuleIndex()
267 llvm::BitstreamCursor Cursor(*Buffer); in readIndex() local
271 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Cursor.Read(8)) { in readIndex()
280 return std::make_pair(new GlobalModuleIndex(std::move(Buffer), Cursor), in readIndex()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DUnwindLLDB.cpp78 CursorSP first_cursor_sp(new Cursor()); in AddFirstFrame()
127 CursorSP cursor_sp(new Cursor()); in GetOneMoreFrame()
457 Cursor *frame_cursor = m_frames[idx].get(); in DoCreateRegisterContextForFrame()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp52 GetWasmString(llvm::DataExtractor &data, llvm::DataExtractor::Cursor &c) { in GetWasmString()
169 llvm::DataExtractor::Cursor c(0); in DecodeNextSection()
428 llvm::DataExtractor::Cursor c(0); in GetExternalDebugInfoFileSpec()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DDataExtractor.cpp89 uint8_t *DataExtractor::getU8(Cursor &C, uint8_t *Dst, uint32_t Count) const { in getU8()
229 void DataExtractor::skip(Cursor &C, uint64_t Length) const { in skip()

123