Home
last modified time | relevance | path

Searched refs:parsers (Results 1 – 25 of 211) sorted by relevance

123456789

/third_party/typescript/tests/baselines/reference/
DfunctionSignatureAssignmentCompat1.types15 var parsers: Parsers;
16 >parsers : Parsers
18 var c: ParserFunc = parsers.raw; // ok!
20 >parsers.raw : ParserFunc
21 >parsers : Parsers
24 var d: ParserFunc = parsers.readline; // not ok
26 >parsers.readline : (delimiter?: string) => ParserFunc
27 >parsers : Parsers
30 var e: ParserFunc = parsers.readline(); // ok
32 >parsers.readline() : ParserFunc
[all …]
DfunctionSignatureAssignmentCompat1.symbols21 var parsers: Parsers;
22 >parsers : Symbol(parsers, Decl(functionSignatureAssignmentCompat1.ts, 7, 3))
25 var c: ParserFunc = parsers.raw; // ok!
28 >parsers.raw : Symbol(Parsers.raw, Decl(functionSignatureAssignmentCompat1.ts, 3, 19))
29 >parsers : Symbol(parsers, Decl(functionSignatureAssignmentCompat1.ts, 7, 3))
32 var d: ParserFunc = parsers.readline; // not ok
35 >parsers.readline : Symbol(Parsers.readline, Decl(functionSignatureAssignmentCompat1.ts, 4, 20))
36 >parsers : Symbol(parsers, Decl(functionSignatureAssignmentCompat1.ts, 7, 3))
39 var e: ParserFunc = parsers.readline(); // ok
42 >parsers.readline : Symbol(Parsers.readline, Decl(functionSignatureAssignmentCompat1.ts, 4, 20))
[all …]
DfunctionSignatureAssignmentCompat1.js9 var parsers: Parsers; variable
10 var c: ParserFunc = parsers.raw; // ok!
11 var d: ParserFunc = parsers.readline; // not ok
12 var e: ParserFunc = parsers.readline(); // ok
15 var parsers; variable
16 var c = parsers.raw; // ok!
17 var d = parsers.readline; // not ok
18 var e = parsers.readline(); // ok
DfunctionSignatureAssignmentCompat1.errors.txt14 var parsers: Parsers;
15 var c: ParserFunc = parsers.raw; // ok!
16 var d: ParserFunc = parsers.readline; // not ok
22 var e: ParserFunc = parsers.readline(); // ok
/third_party/node/test/sequential/
Dtest-http-regr-gh-2928.js11 const COUNT = httpCommon.parsers.max + 1;
13 const parsers = new Array(COUNT); constant
14 for (let i = 0; i < parsers.length; i++)
15 parsers[i] = httpCommon.parsers.alloc();
21 if (parsers.length === 0)
25 const parser = parsers.pop();
33 parsers.push(parser);
/third_party/rust/crates/nom/
DREADME.md11 to build safe parsers without compromising the speed or memory consumption. To
13 fast and correct parsers, and provides functions, macros and traits to abstract most of the
25 - [Binary format parsers](#binary-format-parsers)
26 - [Text format parsers](#text-format-parsers)
27 - [Programming language parsers](#programming-language-parsers)
34 - [Parsers written with nom](#parsers-written-with-nom)
99 …f you need any help developing your parsers, please ping `geal` on IRC (libera, geeknode, oftc), g…
105 ### Binary format parsers
108 to the usual handwritten C parsers, nom parsers are just as fast, free from
114 - Streaming parsers for network formats and huge files
[all …]
DCHANGELOG.md45 - implement `ErrorConvert` on the unit type to make it usable as error type for bits parsers
125 - text to number parsers: in the `character::streaming` and `character::complete` modules, there ar…
129 - now that function combinators are the main way to write parsers, the old macro combinators are co…
131 - regex parsers have been moved into the [nom-regex](https://crates.io/crates/nom-regex) crate. nom…
222 - relax trait bounds on some parsers
309 function parsers, by relaxing the requirements: combinators will return a
311 and parsers can be any type now, as long as they implement the new `Parser` trait.
325 so this will give better options for those parsers.
334 …streaming parsers return the number of additional bytes they need, not the total. This was suppose…
338 - there is now a more general `Parser` trait, so parsers can be something else than a function. Thi…
[all …]
/third_party/node/deps/v8/tools/system-analyzer/
Dprocessor.mjs80 parsers: [ property
87 parsers: [parseString, parseInt, parseInt, parseInt], property
92 parsers: [ property
99 parsers: [ property
106 {parsers: [parseInt, parseInt], processor: this.processCodeMove}, property
107 'code-delete': {parsers: [parseInt], processor: this.processCodeDelete}, property
109 parsers: [ property
116 parsers: [ property
124 parsers: [ property
131 parsers: [parseInt, parseString, parseString], property
[all …]
/third_party/typescript/tests/cases/compiler/
DfunctionSignatureAssignmentCompat1.ts8 var parsers: Parsers; variable
9 var c: ParserFunc = parsers.raw; // ok!
10 var d: ParserFunc = parsers.readline; // not ok
11 var e: ParserFunc = parsers.readline(); // ok
/third_party/rust/crates/nom/doc/
Dmaking_a_new_parser_from_scratch.md15 oftc), go to `#nom-parsers` on Libera IRC, or on the
37 functions to make powerful parsers. This means that those functions only depend
63 Let's parse a simple expression like `(12345)`. nom parsers are functions that
90 nom uses this type everywhere. Every combination of parsers will pattern match
94 Parsers are usually built from the bottom up, by first writing parsers for the
95 smallest elements, then assembling them in more complex parsers by using
102 // first implement the basic parsers
116 // combine all previous parsers in one function
119 // tuple takes as argument a tuple of parsers and will return
128 Since it is easy to combine small parsers, I encourage you to write small
[all …]
Dupgrading_to_nom_5.md67 solve issues with streaming parsers.
69 A core feature of nom is its support for streaming parsers: When you are
83 of `&[u8]` and `&str`, that changed the behaviour of parsers to assume that the
96 if you were using them, and checking which parsers suddenly return `Incomplete` on
103 tool to generate parsers. The code created was simple, approximately the same way
127 In practice, nom parsers will have the following signature:
155 More complex combinators like `pair` (returns a tuple of the result of 2 parsers)
156 will be able to combine parsers to make more advanced ones:
Derror_management.md9 To match these requirements, nom parsers have to return the following result
26 …hat a parser did not have enough data to decide. This can be returned by parsers found in `streami…
66 exactly which error type you want to use when you define your parsers, or
90 parsers that are called repeatedly, like in network protocols.
121 parsers that encountered an error:
138 /// Error kind given by various nom parsers
143 It contains the input position and error code for each of those parsers.
225 parsers.
230 type that can be understood by nom parsers. That type provides location
401 through 2 recursive map parsers:
[all …]
/third_party/python/Lib/test/test_email/
Dtest_parser.py42 for parser in self.parsers:
74 for parser in self.parsers:
81 for parser in self.parsers:
96 parsers = (email.message_from_string, message_from_file) variable in TestParser
106 parsers = (message_from_bytes, message_from_binary_file) variable in TestBytesParser
/third_party/typescript/tests/ts_extra_tests/
Drun_ts_case.py26 def is_testcase_exist(parsers, arg): argument
30 parsers.error("The directory or file '%s' does not exist" % arg)
34 def is_file(parsers, arg): argument
36 parsers.error("The file '%s' does not exist" % arg)
41 def is_directory(parsers, arg): argument
43 parsers.error("The directory '%s' does not exist" % arg)
/third_party/node/deps/v8/tools/
Dlogreader.mjs78 if (!Array.isArray(parser.parsers)) {
79 throw new Error(`Invalid parsers: dispatchTable['${
80 name}'].parsers should be an Array.`);
206 const parsers = dispatch.parsers;
207 const length = parsers.length;
211 const parser = parsers[i];
/third_party/node/test/parallel/
Dtest-http-set-max-idle-http-parser.js16 assert.notStrictEqual(httpCommon.parsers.max, value);
18 assert.strictEqual(httpCommon.parsers.max, value);
Dtest-http-parser-lazy-loaded.js23 const { parsers } = require('_http_common');
26 const parser = parsers.alloc();
/third_party/icu/tools/currency/src/com/ibm/icu/dev/tool/currency/
DCurrencyDataParser.java17 import javax.xml.parsers.ParserConfigurationException;
18 import javax.xml.parsers.SAXParser;
19 import javax.xml.parsers.SAXParserFactory;
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java1360 Map<String, WellKnownTypeParser> parsers = new HashMap<String, WellKnownTypeParser>(); in buildWellKnownTypeParsers() local
1362 parsers.put( in buildWellKnownTypeParsers()
1380 parsers.put(BoolValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1381 parsers.put(Int32Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1382 parsers.put(UInt32Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1383 parsers.put(Int64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1384 parsers.put(UInt64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1385 parsers.put(StringValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1386 parsers.put(BytesValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
1387 parsers.put(FloatValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
[all …]
/third_party/node/lib/
D_http_common.js160 const parsers = new FreeList('parsers', 1000, function parsersCb() { constant
188 if (parsers.free(parser) === false) {
266 parsers, property
Dhttp.js33 const { methods, parsers } = require('_http_common');
133 parsers.max = max;
/third_party/rust/crates/nom/doc/archive/
Dupgrading_to_nom_4.md7 Previous versions of nom all generated parsers with the following signature:
89 All of this will likely not affect your existing parsers, but require changes to the surrounding
92 ## Faster parsers, new memory layout but with lower footprint
101 In addition, [parsers are faster in nom 4 than in nom 3](https://github.com/Geal/nom/issues/356#iss…
169 nom's parsers are designed to work around streaming issues: if there is not enough data to decide, a
182 and the solution in nom 3 and before was to wrap parts of the parsers with the `complete!()` combin…
228 If those types feel a bit long to write everywhere in the parsers, it's possible
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Config/
DDisassemblers.def.in10 |* This file enumerates all of the assembly-language parsers *|
15 |* targets with assembly parsers. *|
DAsmParsers.def.in10 |* This file enumerates all of the assembly-language parsers *|
15 |* targets with assembly parsers. *|
/third_party/unity/extras/eclipse/
Derror_parsers.txt1 Eclipse error parsers
20 Unity unit test error parsers

123456789