Home
last modified time | relevance | path

Searched full:production (Results 1 – 25 of 2937) sorted by relevance

12345678910>>...118

/external/emboss/compiler/front_end/
Dlr1.py34 class Item(collections.namedtuple("Item", ["production", "dot", "terminal",
36 """An Item is an LR(1) Item: a production, a cursor location, and a terminal.
38 An Item represents a partially-parsed production, and a lookahead symbol. The
39 position of the dot indicates what portion of the production has been parsed.
44 production: The Production this Item covers.
45 dot: The index of the "dot" in production's rhs.
46 terminal: The terminal lookahead symbol that follows the production in the
52 return (str(self.production.lhs) + " -> " + " ".join(
53 [str(r) for r in self.production.rhs[0:self.dot] + (".",) +
54 self.production.rhs[self.dot:]]) + ", " + str(self.terminal))
[all …]
Dgenerate_grammar_md.py33 term `<empty>` to the right of the `->` indicates an empty production (a rule
84 for production in sorted(productions_by_lhs[symbol]):
85 main_production_list.append(production)
86 for symbol in production.rhs:
88 # production.
99 for production in boilerplate_production_list:
100 assert production.lhs[-1] in "*+?", "Found orphaned production {}".format(
101 production.lhs)
126 max_lhs_len = max([len(production.lhs) for production in productions])
131 for production in productions:
[all …]
Dlr1_test.py42 """Parses text into a grammar by calling Production.parse on each line."""
43 return [parser_types.Production.parse(line) for line in text.splitlines()]
89 (4, "c"): lr1.Reduce(parser_types.Production("C", ("d",))),
90 (4, "d"): lr1.Reduce(parser_types.Production("C", ("d",))),
91 (5, lr1.END_OF_INPUT): lr1.Reduce(parser_types.Production("S", ("C", "C"))),
94 (7, lr1.END_OF_INPUT): lr1.Reduce(parser_types.Production("C", ("d",))),
95 (8, "c"): lr1.Reduce(parser_types.Production("C", ("c", "C"))),
96 (8, "d"): lr1.Reduce(parser_types.Production("C", ("c", "C"))),
97 (9, lr1.END_OF_INPUT): lr1.Reduce(parser_types.Production("C", ("c", "C"))),
131 lr1.Item(parser_types.Production(lr1.START_PRIME, ("S",)),
[all …]
/external/emboss/compiler/util/
Dparser_types_test.py95 """Tests for parser_types.Production."""
98 self.assertEqual(parser_types.Production(lhs="A",
100 parser_types.Production.parse("A -> B C"))
101 self.assertEqual(parser_types.Production(lhs="A",
103 parser_types.Production.parse("A -> B"))
104 self.assertEqual(parser_types.Production(lhs="A",
106 parser_types.Production.parse(" A -> B C "))
107 self.assertEqual(parser_types.Production(lhs="A",
109 parser_types.Production.parse("A ->"))
110 self.assertEqual(parser_types.Production(lhs="A",
[all …]
Dparser_types.py91 class Production(collections.namedtuple("Production", ["lhs", "rhs"])): class
92 """A Production is a simple production from a context-free grammar.
94 A Production takes the form:
103 lhs: The non-terminal symbol on the left-hand-side of the production.
104 rhs: The sequence of symbols on the right-hand-side of the production.
112 """Parses a Production from a "symbol -> symbol symbol symbol" string."""
116 return Production(words[0], tuple(words[2:]))
/external/libxkbcommon/src/compose/
Dparser.c73 * FILE ::= { [PRODUCTION] [COMMENT] "\n" | INCLUDE }
75 * PRODUCTION ::= LHS ":" RHS [ COMMENT ]
316 struct production { struct
332 const struct production *production) in add_production() argument
340 if (darray_size(table->nodes) + production->len + MAX_LHS_LEN > MAX_COMPOSE_NODES) in add_production()
342 if (darray_size(table->nodes) + production->len >= MAX_COMPOSE_NODES) in add_production()
354 const xkb_keysym_t keysym = production->lhs[lhs_pos]; in add_production()
355 const bool last = lhs_pos + 1 == production->len; in add_production()
399 (node->leaf.utf8 == 0 && !production->has_string) || in add_production()
401 node->leaf.utf8 != 0 && production->has_string && in add_production()
[all …]
/external/bc/
DNEWS.md5 This is a production release that fixes build warnings on the musl libc.
11 This is a production release that fixes `Ctrl+d` on FreeBSD and Linux when using
19 This is a production release that fixes a warning using GCC on FreeBSD.
25 This is a production release to fix three bugs.
39 This is a production release to fix one bug.
46 This is a production release to fix one small bug.
55 This is a production release to fix problems in the `bc` manual.
61 This is a production release to fix the library build on Mac OSX.
67 This is a production release to remove some debugging code that I accidentally
72 This is a production release with a bug fix for `SIGINT` only being handled
[all …]
/external/ply/ply/doc/
Dinternal.html154 <tt>Production</tt> which has information about the production rule
168 Diagnostic function. Returns a list of <tt>Production</tt> instances
169 corresponding to production rules that were defined in the grammar,
218 a production representing the starting rule. The objects in this list
219 are instances of the <tt>Production</tt> class, described shortly.
233 production numbers where they are used.
240 production numbers where they are used.
264 <tt>__getitem__()</tt> special methods. Accessing <tt>g[n]</tt> returns the nth production
271 <tt>Grammar</tt> objects store grammar rules as instances of a <tt>Production</tt> class. This
273 The following attributes are available on a <tt>Production</tt> instance <tt>p</tt>.
[all …]
/external/pigweed/docs/showcases/sense/tutorial/
Dproduction.rst9 is called ``production``. The purpose of the ``production`` app is to
41 Flash the ``production`` app to your Pico:
53 In **Bazel Targets** expand **//apps/production**, then right-click
59 In **Bazel Targets** expand **//apps/production**, then right-click
71 bazelisk run //apps/production:flash_rp2040
77 bazelisk run //apps/production:flash_rp2350
98 target (under **//apps/production**) then select **Run target**.
104 target (under **//apps/production**) then select **Run target**.
117 bazelisk run //apps/production:rp2040_console
123 bazelisk run //apps/production:rp2350_console
[all …]
/external/libese/apps/boot/
DREADME.md53 in production and can only be unlocked if provided a cryptographic signature.
88 applet is not in 'production' mode.
93 production mode, then clearing the lock value requires authorization.
208 - production=true
209 - production=false
211 On initial installation, production is false. When the applet is not
212 in production mode, it does not enforce a number of security boundaries,
217 To transition to "production", a call to `ese_boot_set_production(true)`
222 the production state, any errors codes from lock initialization, and the
299 - To move from factory mode to production mode call:
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
DParserImpl.java130 private final ArrayStack<Production> states;
132 private Production state;
152 states = new ArrayStack<Production>(100); in ParserImpl()
205 private class ParseStreamStart implements Production {
217 private class ParseImplicitDocumentStart implements Production {
239 private class ParseDocumentStart implements Production {
285 private class ParseDocumentEnd implements Production {
305 private class ParseDocumentContent implements Production {
406 private class ParseBlockNode implements Production {
536 private class ParseBlockSequenceFirstEntry implements Production {
[all …]
/external/armnn/build-tool/docker/
DDockerfile6 # Default build type is 'production'. Use 'dev' if supplying custom Arm NN / ACL repos from host
7 ARG BUILD_TYPE=production
10 FROM ubuntu:${UBUNTU_VERSION} AS build-production
58 # This build-dev stage (inherits 'build-production' stage) is only used in final image if $BUILD_TY…
59 FROM build-production as build-dev
71 # Final stage which inherits either 'build-production' or 'build-dev' stage
/external/pigweed/pw_bluetooth_sapphire/host/testing/public/pw_bluetooth_sapphire/internal/host/testing/
Dfake_sdp_server.h27 // Emulate Sdp Server capability leveraging the production SDP server to
32 // the production SDP server.
40 // Handle an inbound packet |sdu| using the production SDP server instance,
44 // Return the production SDP server associated with this FakeSdpServer.
50 // The production SDP server associated with this FakeSdpServer,
/external/dagger2/java/dagger/spi/model/
DBindingKind.java69 PRODUCTION, enumConstant
72 * A binding for a production method on a production component's
74 * {@code FluentFuture}. Methods on production component dependencies
81 * #PROVISION} or {@link #PRODUCTION} contributions.
87 * #PROVISION} or {@link #PRODUCTION} contributions.
/external/dagger2/java/dagger/model/
DBindingKind.java68 PRODUCTION, enumConstant
71 * A binding for a production method on a production component's
73 * {@code FluentFuture}. Methods on production component dependencies
81 * #PROVISION} or {@link #PRODUCTION} contributions.
87 * #PROVISION} or {@link #PRODUCTION} contributions.
/external/dagger2/java/dagger/internal/codegen/model/
DBindingKind.java69 PRODUCTION, enumConstant
72 * A binding for a production method on a production component's {@linkplain
75 * com.google.common.util.concurrent.FluentFuture}. Methods on production component dependencies
83 * #PROVISION} or {@link #PRODUCTION} contributions.
89 * #PROVISION} or {@link #PRODUCTION} contributions.
/external/dagger2/javatests/dagger/internal/codegen/
DProductionComponentProcessorTest.java46 "import dagger.producers.Production;",
51 " @Provides @Production Executor executor() {",
150 "import dagger.producers.Production;", in dependsOnProductionExecutor()
155 " @Produces String str(@Production Executor executor) {", in dependsOnProductionExecutor()
178 String errorMessage = "String may not depend on the production executor"; in dependsOnProductionExecutor()
264 "import dagger.producers.Production;", in simpleComponent()
283 " @Provides @Production Executor executor() {", in simpleComponent()
322 "import dagger.producers.Production;", in nullableProducersAreNotErrors()
339 " @Provides @Production Executor executor() {", in nullableProducersAreNotErrors()
432 "import dagger.producers.Production;", in requestProducerNodeWithProvider_failsWithNotSupportedError()
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/
DMergeValueTest.java45 assertTrue(map.containsKey("production")); in check()
46 assertEquals(map.get("common"), map.get("production")); in check()
62 Map<String, Integer> production = (Map<String, Integer>) map.get("production"); in testMergeUnlessAlreadyExists() local
64 assertEquals(Integer.valueOf(3), production.get("key")); in testMergeUnlessAlreadyExists()
/external/libese/apps/boot/card/src/com/android/verifiedboot/globalstate/owner/
DOwnerInterface.java52 * Sets the {@link #production} value.
60 * Returns if the Interface has been transitioned to production mode.
62 * @return true if in production mode and false if in provisioning.
64 boolean production(); in production() method
/external/dagger2/java/dagger/producers/
DProductionComponent.java47 * component method. Component methods must represent {@linkplain Producer production}.
49 * <p>Production methods have no arguments and return either a {@link ListenableFuture} or {@link
52 * valid production method declarations:
75 * <p>The component must include a binding for <code>{@literal @}{@link Production}
99 * A builder for a production component.
110 * A factory for a production component.
/external/python/google-api-python-client/docs/dyn/
Dmonitoring_v3.projects.groups.html118production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
135production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
177production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
207production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
242production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
259production&quot;. A child of that parent group has a filter, role=&quot;transcoder&quot;. The pare…
/external/apache-http/src/org/apache/commons/codec/
Dpackage.html43 <td>Production</td>
54 <td>Production</td>
72 <td>Production</td>
79 <td>Production</td>
93 <td>Production</td>
/external/cronet/stable/third_party/libxml/src/include/libxml/
DparserInternals.h111 * Macro to check the following production in the XML spec:
122 * Macro to check the following production in the XML spec:
142 * Macro to check the following production in the XML spec:
160 * Macro to check the following production in the XML spec:
170 * Macro to check the following production in the XML spec:
188 * Macro to check the following production in the XML spec:
206 * Macro to check the following production in the XML spec:
227 * Macro to check the following production in the XML spec:
238 * Macro to check the following production in the XML spec:
277 * Macro to check the following production in the XML spec:
[all …]
/external/cronet/tot/third_party/libxml/src/include/libxml/
DparserInternals.h111 * Macro to check the following production in the XML spec:
122 * Macro to check the following production in the XML spec:
142 * Macro to check the following production in the XML spec:
160 * Macro to check the following production in the XML spec:
170 * Macro to check the following production in the XML spec:
188 * Macro to check the following production in the XML spec:
206 * Macro to check the following production in the XML spec:
227 * Macro to check the following production in the XML spec:
238 * Macro to check the following production in the XML spec:
277 * Macro to check the following production in the XML spec:
[all …]
/external/cronet/stable/base/
Dcheck_is_test.h13 // production. This might be because the respective tests do not initialize some
17 // the production code and not something different.
19 // However, there already are hundreds of test-only paths in production code
24 // production scenarios.

12345678910>>...118