/external/libxkbcommon/src/compose/ |
D | parser.c | 73 * FILE ::= { [PRODUCTION] [COMMENT] "\n" | INCLUDE } 75 * PRODUCTION ::= LHS ":" RHS [ COMMENT ] 316 struct production { struct 344 const struct production *production) in add_production() argument 357 * previous production took, and only then doing the linear search in add_production() 363 for (lhs_pos = 0; lhs_pos < production->len; lhs_pos++) { in add_production() 364 while (production->lhs[lhs_pos] != node->keysym) { in add_production() 366 uint32_t next = add_node(table, production->lhs[lhs_pos]); in add_production() 376 if (lhs_pos + 1 == production->len) in add_production() 388 uint32_t successor = add_node(table, production->lhs[lhs_pos + 1]); in add_production() [all …]
|
/external/ply/ply/doc/ |
D | internal.html | 154 <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/dagger2/java/dagger/internal/codegen/binding/ |
D | ProductionBinding.java | 42 return BindingType.PRODUCTION; in bindingType() 80 * Returns the kind of object the produces method returns. All production bindings from 81 * {@code @Produces} methods will have a production kind, but synthetic production bindings may 90 * If this production requires an executor, this will be the corresponding request. All 91 * production bindings from {@code @Produces} methods will have an executor request, but 92 * synthetic production bindings may not. 96 /** If this production requires a monitor, this will be the corresponding request. All 97 * production bindings from {@code @Produces} methods will have a monitor request, but synthetic 98 * production bindings may not.
|
D | ComponentKind.java | 117 private final boolean production; field in ComponentKind 122 boolean production) { in ComponentKind() argument 125 this.production = production; in ComponentKind() 155 /** Returns true if this is a production component. */ 157 return production; in isProducer()
|
/external/bc/ |
D | NEWS.md | 5 This is a production release that only adds one thing: flushing output when it 10 This is a production release with many fixes, a new command-line option, and a 35 This is a production release that fixes a small bug. 44 This is a production release with one tweak and fixes for manuals. 59 This is a production release that fixes a divide-by-zero bug in `root()` in the 64 This is a production release that fixes a bug. 70 This is a production release that changes one behavior and fixes documentation 81 This is a production release that removes a small non-portable shell operation 90 This is a production release that fixes the build on FreeBSD. 101 This is a production release that fixes several bugs and adds a couple small [all …]
|
/external/libese/apps/boot/ |
D | README.md | 53 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/ |
D | ParserImpl.java | 125 private final ArrayStack<Production> states; 127 private Production state; 138 states = new ArrayStack<Production>(100); in ParserImpl() 180 private class ParseStreamStart implements Production { 191 private class ParseImplicitDocumentStart implements Production { 205 Production p = new ParseDocumentStart(); in produce() 211 private class ParseDocumentStart implements Production { 249 private class ParseDocumentEnd implements Production { 268 private class ParseDocumentContent implements Production { 277 Production p = new ParseBlockNode(); in produce() [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | monitoring_v3.projects.groups.html | 110 …production". A child of that parent group has a filter, role="transcoder". The parent group contai… 127 …production". A child of that parent group has a filter, role="transcoder". The parent group contai… 173 …production". A child of that parent group has a filter, role="transcoder". The parent group contai… 204 …production". A child of that parent group has a filter, role="transcoder". The parent group contai… 238 …production". A child of that parent group has a filter, role="transcoder". The parent group contai… 255 …production". A child of that parent group has a filter, role="transcoder". The parent group contai…
|
/external/dagger2/java/dagger/model/ |
D | BindingKind.java | 69 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/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/ |
D | MergeValueTest.java | 49 assertTrue(map.containsKey("production")); in check() 50 assertEquals(map.get("common"), map.get("production")); in check() 66 Map<String, Integer> production = (Map<String, Integer>) map.get("production"); in testMergeUnlessAlreadyExists() local 68 assertEquals(new Integer(3), production.get("key")); in testMergeUnlessAlreadyExists()
|
/external/dagger2/java/dagger/producers/ |
D | ProductionComponent.java | 47 * 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.
|
D | Produced.java | 28 * An interface that represents the result of a {@linkplain Producer production} of type {@code T}, 29 * or an exception that was thrown during that production. For any type {@code T} that can be 31 * were thrown during the production of {@code T}. 51 * Returns the result of a production. 53 * @throws ExecutionException if the production threw an exception
|
D | ProductionSubcomponent.java | 34 * <p>The executor for a production subcomponent is supplied by binding 35 * <code>{@literal @}Production Executor</code>, similar to {@link ProductionComponent}. Note that 53 * A builder for a production subcomponent. 68 * A factory for a production subcomponent.
|
/external/libese/apps/boot/card/src/com/android/verifiedboot/globalstate/owner/ |
D | OwnerInterface.java | 52 * 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/apache-http/src/org/apache/commons/codec/ |
D | package.html | 43 <td>Production</td> 54 <td>Production</td> 72 <td>Production</td> 79 <td>Production</td> 93 <td>Production</td>
|
/external/slf4j/slf4j-site/src/site/pages/ |
D | localization.html | 54 <code>Production</code>.</p> 61 @BaseName("production") 63 public enum Production { 110 locLogger.info(Production.APPLICATION_STARTED, "fooApp"); 115 locLogger.info(Production.APPLICATION_STOPPED, "fooApp"); 148 locLogger.info(Production.APPLICATION_STARTED, "fooApp");
|
/external/harfbuzz_ng/src/ |
D | hb-gobject-enums.cc.tmpl | 45 /*** BEGIN file-production ***/ 47 /*** END file-production ***/ 65 /*** BEGIN value-production ***/ 67 /*** END value-production ***/
|
/external/libxml2/include/libxml/ |
D | parserInternals.h | 100 * Macro to check the following production in the XML spec: 111 * Macro to check the following production in the XML spec: 131 * Macro to check the following production in the XML spec: 149 * Macro to check the following production in the XML spec: 159 * Macro to check the following production in the XML spec: 177 * Macro to check the following production in the XML spec: 195 * Macro to check the following production in the XML spec: 216 * Macro to check the following production in the XML spec: 227 * Macro to check the following production in the XML spec: 266 * Macro to check the following production in the XML spec: [all …]
|
/external/icu/icu4c/source/data/ |
D | cldr-icu-readme.txt | 64 # CLDR_TMP_DIR: Parent of temporary CLDR production data. 68 # no longer generates data by default into $CLDR_TMP_DIR/production; 69 # instead it generates data into $CLDR_DIR/../cldr-staging/production 72 # $CLDR_TMP_DIR/production. So CLDR_TMP_DIR must be defined to be 155 # 4a. Generate the CLDR production data. This process uses ant with ICU's 158 # Running "ant cleanprod" is necessary to clean out the production data directory 159 # (usually $CLDR_TMP_DIR/production ), required if any CLDR data has changed. 187 ant -f build-icu-data.xml -DcldrDataDir="$CLDR_TMP_DIR/production" | tee /tmp/cldr-newData-builddat… 208 # 5a. You may also want to check which files were modified in CLDR production data: 325 # 17. You should also commit and tag the update production data in CLDR_TMP_DIR
|
/external/libchrome/third_party/ply/ |
D | yacc.py | 287 … prod = self.productions # Local reference to production list (to avoid lookup on self.) 288 pslice = YaccProduction(None) # Production object passed to grammar rules 321 pslice.stack = symstack # Put in the production 377 # reduce a symbol on the stack, emit a production 382 # Get production function 384 sym.type = pname # Production name 602 … prod = self.productions # Local reference to production list (to avoid lookup on self.) 603 pslice = YaccProduction(None) # Production object passed to grammar rules 632 pslice.stack = symstack # Put in the production 674 # reduce a symbol on the stack, emit a production [all …]
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | yacc.py | 356 …prod = self.productions # Local reference to production list (to avoid lookup on … 358 pslice = YaccProduction(None) # Production object passed to grammar rules 394 pslice.stack = symstack # Put in the production 457 # reduce a symbol on the stack, emit a production 462 # Get production function 464 sym.type = pname # Production name 514 … symstack.extend(targ[1:-1]) # Put the production slice back on the stack 703 …prod = self.productions # Local reference to production list (to avoid lookup on … 705 pslice = YaccProduction(None) # Production object passed to grammar rules 738 pslice.stack = symstack # Put in the production [all …]
|
/external/python/pycparser/pycparser/ply/ |
D | yacc.py | 354 …prod = self.productions # Local reference to production list (to avoid lookup on … 356 pslice = YaccProduction(None) # Production object passed to grammar rules 392 pslice.stack = symstack # Put in the production 455 # reduce a symbol on the stack, emit a production 460 # Get production function 462 sym.type = pname # Production name 512 … symstack.extend(targ[1:-1]) # Put the production slice back on the stack 701 …prod = self.productions # Local reference to production list (to avoid lookup on … 703 pslice = YaccProduction(None) # Production object passed to grammar rules 736 pslice.stack = symstack # Put in the production [all …]
|
/external/ply/ply/ply/ |
D | yacc.py | 356 …prod = self.productions # Local reference to production list (to avoid lookup on … 358 pslice = YaccProduction(None) # Production object passed to grammar rules 394 pslice.stack = symstack # Put in the production 457 # reduce a symbol on the stack, emit a production 462 # Get production function 464 sym.type = pname # Production name 514 … symstack.extend(targ[1:-1]) # Put the production slice back on the stack 703 …prod = self.productions # Local reference to production list (to avoid lookup on … 705 pslice = YaccProduction(None) # Production object passed to grammar rules 738 pslice.stack = symstack # Put in the production [all …]
|
/external/dagger2/java/dagger/producers/internal/ |
D | ProductionExecutorModule.java | 21 import dagger.producers.Production; 27 * only on instance is ever used within production components. 34 abstract Executor productionImplementationExecutor(@Production Executor executor); in productionImplementationExecutor()
|
/external/dagger2/javatests/dagger/functional/producers/ |
D | ExecutorModule.java | 22 import dagger.producers.Production; 26 * A module that provides an optionally user-defined executor for a production component, defaulting 42 @Production
|