Home
last modified time | relevance | path

Searched refs:InputReader (Results 1 – 25 of 147) sorted by relevance

123456

/dports/print/texlive-base/texlive-20150521-source/texk/dvisvgm/dvisvgm-1.9.2/src/
H A DCommandLine.h94 void handle_bbox (InputReader &ir, const Option &opt, bool longopt);
95 void handle_cache (InputReader &ir, const Option &opt, bool longopt);
99 void handle_color (InputReader &ir, const Option &opt, bool longopt);
101 void handle_eps (InputReader &ir, const Option &opt, bool longopt);
103 void handle_exact (InputReader &ir, const Option &opt, bool longopt);
114 void handle_help (InputReader &ir, const Option &opt, bool longopt);
115 void handle_keep (InputReader &ir, const Option &opt, bool longopt);
121 void handle_mag (InputReader &ir, const Option &opt, bool longopt);
128 void handle_page (InputReader &ir, const Option &opt, bool longopt);
140 void handle_zip (InputReader &ir, const Option &opt, bool longopt);
[all …]
H A DDvisvgmSpecialHandler.h29 class InputReader; variable
46 void preprocessRaw (InputReader &ir);
47 void preprocessRawDef (InputReader &ir);
48 void preprocessRawSet (InputReader &ir);
49 void preprocessEndRawSet (InputReader &ir);
50 void preprocessRawPut (InputReader &ir);
51 void processRaw (InputReader &ir, SpecialActions *actions);
52 void processRawDef (InputReader &ir, SpecialActions *actions);
53 void processRawSet (InputReader &ir, SpecialActions *actions);
56 void processBBox (InputReader &ir, SpecialActions *actions);
[all …]
H A DCommandLine.cpp219 void CommandLine::handle_bbox (InputReader &ir, const Option &opt, bool longopt) { in handle_bbox()
224 void CommandLine::handle_cache (InputReader &ir, const Option &opt, bool longopt) { in handle_cache()
235 void CommandLine::handle_color (InputReader &ir, const Option &opt, bool longopt) { in handle_color()
240 void CommandLine::handle_eps (InputReader &ir, const Option &opt, bool longopt) { in handle_eps()
245 void CommandLine::handle_exact (InputReader &ir, const Option &opt, bool longopt) { in handle_exact()
274 void CommandLine::handle_help (InputReader &ir, const Option &opt, bool longopt) { in handle_help()
279 void CommandLine::handle_keep (InputReader &ir, const Option &opt, bool longopt) { in handle_keep()
299 void CommandLine::handle_mag (InputReader &ir, const Option &opt, bool longopt) { in handle_mag()
331 void CommandLine::handle_page (InputReader &ir, const Option &opt, bool longopt) { in handle_page()
389 void CommandLine::handle_zip (InputReader &ir, const Option &opt, bool longopt) { in handle_zip()
[all …]
H A DInputReader.cpp31 void InputReader::skip (size_t n) { in skip()
39 void InputReader::skipSpace () { in skipSpace()
60 int InputReader::find (char c) const { in find()
130 bool InputReader::parseUInt (unsigned &val) { in parseUInt()
216 int InputReader::getInt () { in getInt()
225 double InputReader::getDouble () { in getDouble()
234 string InputReader::getWord () { in getWord()
245 char InputReader::getPunct () { in getPunct()
282 string InputReader::getString () { in getString()
294 string InputReader::getString (size_t n) { in getString()
[all …]
H A DCMapReader.h32 class InputReader; variable
42 Token (InputReader &ir);
43 void scan (InputReader &ir);
60 void executeOperator (const std::string &op, InputReader &ir);
61 void op_beginbfchar (InputReader &ir);
62 void op_beginbfrange (InputReader &ir);
63 void op_begincidrange (InputReader &ir);
64 void op_def (InputReader &ir);
65 void op_endcmap (InputReader &ir);
66 void op_usecmap (InputReader &ir);
H A DCmdLineParserBase.h27 class InputReader; variable
42 typedef void (T::*LocalHandler)(InputReader &ir, const Option &opt, bool longopt);
47 …void operator () (CmdLineParserBase *obj, InputReader &ir, const Option &opt, bool longopt) const { in operator()
82 bool checkArgPrefix (InputReader &ir, const Option &opt, bool longopt) const;
83 bool checkNoArg (InputReader &ir, const Option &opt, bool longopt) const;
84 bool getIntArg (InputReader &ir, const Option &opt, bool longopt, int &arg) const;
85 bool getUIntArg (InputReader &ir, const Option &opt, bool longopt, unsigned &arg) const;
86 bool getDoubleArg (InputReader &ir, const Option &opt, bool longopt, double &arg) const;
87 bool getStringArg (InputReader &ir, const Option &opt, bool longopt, std::string &arg) const;
88 bool getBoolArg (InputReader &ir, const Option &opt, bool longopt, bool &arg) const;
[all …]
H A DCMapReader.cpp84 void CMapReader::executeOperator (const string &op, InputReader &ir) { in executeOperator()
87 void (CMapReader::*handler)(InputReader&); in executeOperator()
107 void CMapReader::op_def (InputReader&) { in op_def() argument
130 void CMapReader::op_endcmap (InputReader &) { in op_endcmap() argument
135 void CMapReader::op_usecmap (InputReader &) { in op_usecmap() argument
146 static UInt32 parse_hexentry (InputReader &ir) { in parse_hexentry()
159 void CMapReader::op_begincidrange (InputReader &ir) { in op_begincidrange()
177 void CMapReader::op_beginbfrange (InputReader &ir) { in op_beginbfrange()
193 void CMapReader::op_beginbfchar (InputReader &ir) { in op_beginbfchar()
212 CMapReader::Token::Token (InputReader &ir) { in Token()
[all …]
H A DDvisvgmSpecialHandler.cpp43 void (DvisvgmSpecialHandler::*handler)(InputReader&); in preprocess()
64 void DvisvgmSpecialHandler::preprocessRawSet (InputReader &ir) { in preprocessRawSet()
83 void DvisvgmSpecialHandler::preprocessEndRawSet (InputReader&) { in preprocessEndRawSet() argument
89 void DvisvgmSpecialHandler::preprocessRaw (InputReader &ir) { in preprocessRaw()
98 void DvisvgmSpecialHandler::preprocessRawDef (InputReader &ir) { in preprocessRawDef()
107 void DvisvgmSpecialHandler::preprocessRawPut (InputReader &ir) { in preprocessRawPut()
123 void (DvisvgmSpecialHandler::*handler)(InputReader&, SpecialActions*); in process()
189 void DvisvgmSpecialHandler::processRaw (InputReader &ir, SpecialActions *actions) { in processRaw()
211 void DvisvgmSpecialHandler::processRawSet (InputReader&, SpecialActions*) { in processRawSet() argument
216 void DvisvgmSpecialHandler::processEndRawSet (InputReader&, SpecialActions*) { in processEndRawSet() argument
[all …]
H A DCmdLineParserBase.cpp191 bool CmdLineParserBase::checkArgPrefix (InputReader &ir, const Option &opt, bool longopt) const { in checkArgPrefix()
208 bool CmdLineParserBase::checkNoArg (InputReader &ir, const Option &opt, bool longopt) const { in checkNoArg()
222 bool CmdLineParserBase::getIntArg (InputReader &ir, const Option &opt, bool longopt, int &arg) cons… in getIntArg()
238 bool CmdLineParserBase::getUIntArg (InputReader &ir, const Option &opt, bool longopt, unsigned &arg… in getUIntArg()
254 bool CmdLineParserBase::getDoubleArg (InputReader &ir, const Option &opt, bool longopt, double &arg… in getDoubleArg()
270 bool CmdLineParserBase::getStringArg (InputReader &ir, const Option &opt, bool longopt, string &arg… in getStringArg()
289 bool CmdLineParserBase::getBoolArg (InputReader &ir, const Option &opt, bool longopt, bool &arg) co… in getBoolArg()
314 bool CmdLineParserBase::getCharArg (InputReader &ir, const Option &opt, bool longopt, char &arg) co… in getCharArg()
H A DInputReader.h30 class InputReader
33 virtual ~InputReader() {} in ~InputReader()
62 class StreamInputReader : public InputReader
76 class BufferInputReader : public InputReader
H A DMapLine.h29 class InputReader; variable
57 void parseDVIPSLine (InputReader &ir);
58 void parseDVIPDFMLine (InputReader &ir);
/dports/java/proguard/proguard-7.0.0/docs/manual/retrace/
H A Dexamples.md34 at proguard.InputReader.readInput(InputReader.java:188)
35 at proguard.InputReader.readInput(InputReader.java:158)
36 at proguard.InputReader.readInput(InputReader.java:136)
37 at proguard.InputReader.execute(InputReader.java:66)
43 at proguard.InputReader.readInput(InputReader.java:184)
57 …at proguard.InputReader.void readInput(java.lang.String,proguard.ClassPath,proguard.io.DataEntryRe…
58 …at proguard.InputReader.void execute(proguard.classfile.ClassPool,proguard.classfile.ClassPool)(In…
98 at proguard.InputReader.execute(InputReader.java)
100 at proguard.InputReader.execute(InputReader.java)
102 at proguard.InputReader.execute(InputReader.java)
[all …]
/dports/net/spoofer/spoofer-1.4.7/manager/common/
H A DInputReader.h40 class InputReader
49 InputReader(const InputReader&) NO_METHOD; // no copy-ctor
50 InputReader operator=(const InputReader&) NO_METHOD; // no copy-assign
58 InputReader(QObject *_parent = nullptr) :
97 connect(&notifier, &QSocketNotifier::activated, this, &InputReader::read); in start()
113 InputReader(QObject *_parent = nullptr) :
141 ~InputReader() { in ~InputReader()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libprotobuf-mutator/src/src/libfuzzer/
H A Dlibfuzzer_macro.cc26 class InputReader { class
28 InputReader(const uint8_t* data, size_t size) : data_(data), size_(size) {} in InputReader() function in protobuf_mutator::libfuzzer::__anonb2a840250111::InputReader
29 virtual ~InputReader() = default;
56 class TextInputReader : public InputReader {
58 using InputReader::InputReader;
74 class BinaryInputReader : public InputReader {
76 using InputReader::InputReader;
92 size_t MutateMessage(unsigned int seed, const InputReader& input, in MutateMessage()
107 size_t CrossOverMessages(unsigned int seed, const InputReader& input1, in CrossOverMessages()
108 const InputReader& input2, OutputWriter* output, in CrossOverMessages()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/monodoc/Monodoc/
H A DTree.cs29 BinaryReader InputReader; field in Monodoc.Tree
52 InputReader = new BinaryReader (InputStream, utf8); in Tree()
53 byte [] sig = InputReader.ReadBytes (4); in Tree()
60 if (InputReader.ReadInt32 () == VersionNumberKey) in Tree()
61 VersionNumber = InputReader.ReadInt64 (); in Tree()
66 if (InputReader.ReadInt32 () == VersionNumberKey) in Tree()
67 VersionNumber = InputReader.ReadInt64 (); in Tree()
73 var position = InputReader.ReadInt32 (); in Tree()
165 baseNode.Deserialize (InputReader); in InflateNode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libprotobuf-mutator/src/src/libfuzzer/
H A Dlibfuzzer_macro.cc30 class InputReader { class
32 InputReader(const uint8_t* data, size_t size) : data_(data), size_(size) {} in InputReader() function in protobuf_mutator::libfuzzer::__anond1260cca0111::InputReader
33 virtual ~InputReader() = default;
60 class TextInputReader : public InputReader {
62 using InputReader::InputReader;
78 class BinaryInputReader : public InputReader {
80 using InputReader::InputReader;
130 size_t GetMaxSize(const InputReader& input, const OutputWriter& output, in GetMaxSize()
137 size_t MutateMessage(unsigned int seed, const InputReader& input, in MutateMessage()
151 size_t CrossOverMessages(unsigned int seed, const InputReader& input1, in CrossOverMessages()
[all …]
/dports/textproc/bat/bat-0.18.3/src/
H A Dinput.rs107 pub(crate) reader: InputReader<'a>,
188 reader: InputReader::new(stdin), in open()
217 InputReader::new(BufReader::new(file)) in open()
224 reader: InputReader::new(BufReader::new(reader)), in open()
230 pub(crate) struct InputReader<'a> { struct
236 impl<'a> InputReader<'a> { argument
237 fn new<R: BufRead + 'a>(mut reader: R) -> InputReader<'a> { in new()
251 InputReader { in new()
277 let mut reader = InputReader::new(&content[..]); in basic()
306 let mut reader = InputReader::new(&content[..]); in utf16le()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/awt/xembed/server/
H A DRunTestXEmbed.java83 new InputReader(proc.getInputStream()); in startClient()
84 new InputReader(proc.getErrorStream()); in startClient()
160 class InputReader extends Thread { class
162 public InputReader(InputStream stream) { in InputReader() method in InputReader

123456