| /external/libxkbcommon/src/compose/ | 
| D | parser.c | 73  * 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/ | 
| D | NEWS.md | 5 This is a production release that fixes an infinite loop bug in `root()` and 11 This is a production release that fixes a `read()`/`?` bug and adds features to 30 This is a production release that fixes a `bc` dependency loop for minimal 35 This is a production release with a couple of fixes for manuals and a new 43 This is a production release that fixes an install bug that affected locale 49 This is a production release that fixes a test bug that affected Android and 55 This is a production release that fixes a test failure that happens when 65 This is a production release that moves `bc` to <https://git.gavinhoward.com>. 73 This is a production release that fixes a bug. 82 This is a production release with one bug fix for a memory bug in history. [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.
  | 
| /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/armnn/build-tool/docker/ | 
| D | Dockerfile | 6 # 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/dagger2/java/dagger/spi/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/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/python/google-api-python-client/docs/dyn/ | 
| D | monitoring_v3.projects.groups.html | 118 …production". A child of that parent group has a filter, role="transcoder". The pare… 135 …production". A child of that parent group has a filter, role="transcoder". The pare… 177 …production". A child of that parent group has a filter, role="transcoder". The pare… 207 …production". A child of that parent group has a filter, role="transcoder". The pare… 242 …production". A child of that parent group has a filter, role="transcoder". The pare… 259 …production". A child of that parent group has a filter, role="transcoder". The pare…
  | 
| /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/cronet/base/ | 
| D | check_is_test.h | 11 // production. This might be because the respective tests do not initialize some 15 // the production code and not something different. 17 // However, there already are hundreds of test-only paths in production code 22 // production scenarios.
  | 
| /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
  | 
| /external/dagger2/javatests/dagger/internal/codegen/ | 
| D | ProductionComponentProcessorTest.java | 115             "import dagger.producers.Production;",  in dependsOnProductionExecutor() 120             "  @Provides @Production Executor executor() {",  in dependsOnProductionExecutor() 131             "import dagger.producers.Production;",  in dependsOnProductionExecutor() 136             "  @Produces String str(@Production Executor executor) {",  in dependsOnProductionExecutor() 163         .hadErrorContaining("String may not depend on the production executor")  in dependsOnProductionExecutor() 172         .hadErrorContaining("String may not depend on the production executor")  in dependsOnProductionExecutor() 191             "import dagger.producers.Production;",  in simpleComponent() 210             "    @Provides @Production Executor executor() {",  in simpleComponent() 344         "import dagger.producers.Production;",  in nullableProducersAreNotErrors() 361         "    @Provides @Production Executor executor() {",  in nullableProducersAreNotErrors()
  | 
| /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/libxml2/include/libxml/ | 
| D | parserInternals.h | 107  * Macro to check the following production in the XML spec: 118  * Macro to check the following production in the XML spec: 138  * Macro to check the following production in the XML spec: 156  * Macro to check the following production in the XML spec: 166  * Macro to check the following production in the XML spec: 184  * Macro to check the following production in the XML spec: 202  * Macro to check the following production in the XML spec: 223  * Macro to check the following production in the XML spec: 234  * Macro to check the following production in the XML spec: 273  * Macro to check the following production in the XML spec: [all …] 
 | 
| /external/cronet/third_party/libxml/src/include/libxml/ | 
| D | parserInternals.h | 107  * Macro to check the following production in the XML spec: 118  * Macro to check the following production in the XML spec: 138  * Macro to check the following production in the XML spec: 156  * Macro to check the following production in the XML spec: 166  * Macro to check the following production in the XML spec: 184  * Macro to check the following production in the XML spec: 202  * Macro to check the following production in the XML spec: 223  * Macro to check the following production in the XML spec: 234  * Macro to check the following production in the XML spec: 273  * Macro to check the following production in the XML spec: [all …] 
 | 
| /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/libchrome/third_party/ply/ | 
| D | yacc.py | 290 …   prod    = self.productions       # Local reference to production list (to avoid lookup on self.) 291         pslice  = YaccProduction(None)   # Production object passed to grammar rules 324         pslice.stack = symstack         # Put in the production 380                     # reduce a symbol on the stack, emit a production 385                     # Get production function 387                     sym.type = pname       # Production name 605 …   prod    = self.productions       # Local reference to production list (to avoid lookup on self.) 606         pslice  = YaccProduction(None)   # Production object passed to grammar rules 635         pslice.stack = symstack         # Put in the production 677                     # reduce a symbol on the stack, emit a production [all …] 
 | 
| /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/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/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 …] 
 |