Home
last modified time | relevance | path

Searched refs:ControlChar (Results 1 – 25 of 105) sorted by last modified time

12345

/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/text/
H A Dinftxt.cxx1335 case PortionType::ControlChar: in DrawViewOpt()
H A Dporlin.hxx137 …bool IsControlCharPortion() const { return mnWhichPor == PortionType::ControlChar || mnWhichPor ==… in IsControlCharPortion()
H A Dporrst.hxx158 SetWhichPor( PortionType::ControlChar ); SetLen( TextFrameIndex(1) ); in SwControlCharPortion()
H A Dxmldump.cxx64 case PortionType::ControlChar: in getTypeName()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/access/
H A Daccportions.cxx171 case PortionType::ControlChar: in Special()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/inc/
H A Dtxttypes.hxx35 ControlChar = 0x0087, enumerator
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/ios/
H A Diostoolhandler.cpp142 ControlChar, enumerator
172 case ControlChar: in collectChars()
463 stack.append(ParserState(ParserState::ControlChar)); in processXml()
541 case ParserState::ControlChar: in processXml()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/
H A DAbstractPty.java96 || current.getControlChar(Attributes.ControlChar.VMIN) != 0 in setNonBlocking()
97 || current.getControlChar(Attributes.ControlChar.VTIME) != 1) { in setNonBlocking()
100 attr.setControlChar(Attributes.ControlChar.VMIN, 0); in setNonBlocking()
101 attr.setControlChar(Attributes.ControlChar.VTIME, 1); in setNonBlocking()
H A DAbstractWindowsTerminal.java96 attributes.setControlChar(Attributes.ControlChar.VINTR, ctrl('C')); in AbstractWindowsTerminal()
97 attributes.setControlChar(Attributes.ControlChar.VEOF, ctrl('D')); in AbstractWindowsTerminal()
98 attributes.setControlChar(Attributes.ControlChar.VSUSP, ctrl('Z')); in AbstractWindowsTerminal()
487 if (c == attributes.getControlChar(Attributes.ControlChar.VINTR)) { in processInputChar()
490 } else if (c == attributes.getControlChar(Attributes.ControlChar.VQUIT)) { in processInputChar()
493 } else if (c == attributes.getControlChar(Attributes.ControlChar.VSUSP)) { in processInputChar()
496 } else if (c == attributes.getControlChar(Attributes.ControlChar.VSTATUS)) { in processInputChar()
H A DLineDisciplineTerminal.java20 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
204 if (c == attributes.getControlChar(ControlChar.VINTR)) { in doProcessInputByte()
207 } else if (c == attributes.getControlChar(ControlChar.VQUIT)) { in doProcessInputByte()
210 } else if (c == attributes.getControlChar(ControlChar.VSUSP)) { in doProcessInputByte()
213 } else if (c == attributes.getControlChar(ControlChar.VSTATUS)) { in doProcessInputByte()
H A DAbstractTerminal.java24 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
111 ControlChar cc = null; in echoSignal()
114 cc = ControlChar.VINTR; in echoSignal()
117 cc = ControlChar.VQUIT; in echoSignal()
120 cc = ControlChar.VSUSP; in echoSignal()
136 newAttr.setControlChar(ControlChar.VMIN, 0); in enterRawMode()
137 newAttr.setControlChar(ControlChar.VTIME, 1); in enterRawMode()
H A DDumbTerminal.java19 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
51 if (c == attributes.getControlChar(ControlChar.VINTR)) { in DumbTerminal()
54 } else if (c == attributes.getControlChar(ControlChar.VQUIT)) { in DumbTerminal()
57 } else if (c == attributes.getControlChar(ControlChar.VSUSP)) { in DumbTerminal()
60 } else if (c == attributes.getControlChar(ControlChar.VSTATUS)) { in DumbTerminal()
83 this.attributes.setControlChar(ControlChar.VERASE, (char) 127); in DumbTerminal()
84 this.attributes.setControlChar(ControlChar.VWERASE, (char) 23); in DumbTerminal()
85 this.attributes.setControlChar(ControlChar.VKILL, (char) 21); in DumbTerminal()
86 this.attributes.setControlChar(ControlChar.VLNEXT, (char) 22); in DumbTerminal()
H A DExecPty.java23 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
139 for (ControlChar cchar : ControlChar.values()) { in getFlagsToSet()
144 if (cchar == ControlChar.VMIN || cchar == ControlChar.VTIME) { in getFlagsToSet()
205 for (ControlChar cchar : ControlChar.values()) { in doGetAttr()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/
H A DAttributes.java21 public enum ControlChar { enum in Attributes
136 final EnumMap<ControlChar, Integer> cchars = new EnumMap<>(ControlChar.class);
281 public EnumMap<ControlChar, Integer> getControlChars() { in getControlChars()
285 public void setControlChars(EnumMap<ControlChar, Integer> chars) { in setControlChars() argument
290 public int getControlChar(ControlChar c) { in getControlChar()
295 public void setControlChar(ControlChar c, int value) { in setControlChar()
318 "cchars: " + append(EnumSet.allOf(ControlChar.class), this::display) + in toString()
322 private String display(ControlChar c) { in display()
325 if (c == ControlChar.VMIN || c == ControlChar.VTIME) { in display()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/
H A DLineReaderImpl.java39 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
642 …ngth() == 0 && getLastBinding().charAt(0) == originalAttributes.getControlChar(ControlChar.VEOF)) { in readLine()
6129 del(), (char) attr.getControlChar(ControlChar.VERASE));
6131 ctrl('W'), (char) attr.getControlChar(ControlChar.VWERASE));
6133 ctrl('U'), (char) attr.getControlChar(ControlChar.VKILL));
6135 ctrl('V'), (char) attr.getControlChar(ControlChar.VLNEXT));
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/langtools/jdk/jshell/
H A DExecPtyGetFlagsToSetTest.java35 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
57 current.setControlChar(ControlChar.VMIN, 1); in main()
58 current.setControlChar(ControlChar.VTIME, 0); in main()
61 attr.setControlChar(ControlChar.VMIN, -1); in main()
62 attr.setControlChar(ControlChar.VTIME, -1); in main()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DConsoleIOContext.java77 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
130 noIntr.setControlChar(ControlChar.VINTR, 0); in ConsoleIOContext()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/
H A DAttributes.java21 public enum ControlChar { enum in Attributes
136 final EnumMap<ControlChar, Integer> cchars = new EnumMap<>(ControlChar.class);
281 public EnumMap<ControlChar, Integer> getControlChars() { in getControlChars()
285 public void setControlChars(EnumMap<ControlChar, Integer> chars) { in setControlChars() argument
290 public int getControlChar(ControlChar c) { in getControlChar()
295 public void setControlChar(ControlChar c, int value) { in setControlChar()
318 "cchars: " + append(EnumSet.allOf(ControlChar.class), this::display) + in toString()
322 private String display(ControlChar c) { in display()
325 if (c == ControlChar.VMIN || c == ControlChar.VTIME) { in display()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/terminal/impl/
H A DAbstractPty.java96 || current.getControlChar(Attributes.ControlChar.VMIN) != 0 in setNonBlocking()
97 || current.getControlChar(Attributes.ControlChar.VTIME) != 1) { in setNonBlocking()
100 attr.setControlChar(Attributes.ControlChar.VMIN, 0); in setNonBlocking()
101 attr.setControlChar(Attributes.ControlChar.VTIME, 1); in setNonBlocking()
H A DLineDisciplineTerminal.java20 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
204 if (c == attributes.getControlChar(ControlChar.VINTR)) { in doProcessInputByte()
207 } else if (c == attributes.getControlChar(ControlChar.VQUIT)) { in doProcessInputByte()
210 } else if (c == attributes.getControlChar(ControlChar.VSUSP)) { in doProcessInputByte()
213 } else if (c == attributes.getControlChar(ControlChar.VSTATUS)) { in doProcessInputByte()
H A DAbstractTerminal.java24 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
111 ControlChar cc = null; in echoSignal()
114 cc = ControlChar.VINTR; in echoSignal()
117 cc = ControlChar.VQUIT; in echoSignal()
120 cc = ControlChar.VSUSP; in echoSignal()
136 newAttr.setControlChar(ControlChar.VMIN, 0); in enterRawMode()
137 newAttr.setControlChar(ControlChar.VTIME, 1); in enterRawMode()
H A DAbstractWindowsTerminal.java96 attributes.setControlChar(Attributes.ControlChar.VINTR, ctrl('C')); in AbstractWindowsTerminal()
97 attributes.setControlChar(Attributes.ControlChar.VEOF, ctrl('D')); in AbstractWindowsTerminal()
98 attributes.setControlChar(Attributes.ControlChar.VSUSP, ctrl('Z')); in AbstractWindowsTerminal()
487 if (c == attributes.getControlChar(Attributes.ControlChar.VINTR)) { in processInputChar()
490 } else if (c == attributes.getControlChar(Attributes.ControlChar.VQUIT)) { in processInputChar()
493 } else if (c == attributes.getControlChar(Attributes.ControlChar.VSUSP)) { in processInputChar()
496 } else if (c == attributes.getControlChar(Attributes.ControlChar.VSTATUS)) { in processInputChar()
H A DDumbTerminal.java19 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
51 if (c == attributes.getControlChar(ControlChar.VINTR)) { in DumbTerminal()
54 } else if (c == attributes.getControlChar(ControlChar.VQUIT)) { in DumbTerminal()
57 } else if (c == attributes.getControlChar(ControlChar.VSUSP)) { in DumbTerminal()
60 } else if (c == attributes.getControlChar(ControlChar.VSTATUS)) { in DumbTerminal()
83 this.attributes.setControlChar(ControlChar.VERASE, (char) 127); in DumbTerminal()
84 this.attributes.setControlChar(ControlChar.VWERASE, (char) 23); in DumbTerminal()
85 this.attributes.setControlChar(ControlChar.VKILL, (char) 21); in DumbTerminal()
86 this.attributes.setControlChar(ControlChar.VLNEXT, (char) 22); in DumbTerminal()
H A DExecPty.java23 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
139 for (ControlChar cchar : ControlChar.values()) { in getFlagsToSet()
144 if (cchar == ControlChar.VMIN || cchar == ControlChar.VTIME) { in getFlagsToSet()
205 for (ControlChar cchar : ControlChar.values()) { in doGetAttr()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/
H A DLineReaderImpl.java39 import jdk.internal.org.jline.terminal.Attributes.ControlChar;
642 …ngth() == 0 && getLastBinding().charAt(0) == originalAttributes.getControlChar(ControlChar.VEOF)) { in readLine()
6129 del(), (char) attr.getControlChar(ControlChar.VERASE));
6131 ctrl('W'), (char) attr.getControlChar(ControlChar.VWERASE));
6133 ctrl('U'), (char) attr.getControlChar(ControlChar.VKILL));
6135 ctrl('V'), (char) attr.getControlChar(ControlChar.VLNEXT));

12345