/external/selinux/policycoreutils/po/ |
D | POTFILES | 38 ../gui/templates/executable.py 39 ../gui/templates/__init__.py 40 ../gui/templates/network.py 41 ../gui/templates/rw.py 42 ../gui/templates/script.py 43 ../gui/templates/semodule.py 44 ../gui/templates/tmp.py 45 ../gui/templates/user.py 46 ../gui/templates/var_lib.py 47 ../gui/templates/var_log.py [all …]
|
D | POTFILES.in | 49 sepolicy/sepolicy/templates/executable.py 50 sepolicy/sepolicy/templates/__init__.py 51 sepolicy/sepolicy/templates/network.py 52 sepolicy/sepolicy/templates/rw.py 53 sepolicy/sepolicy/templates/script.py 54 sepolicy/sepolicy/templates/semodule.py 55 sepolicy/sepolicy/templates/tmp.py 56 sepolicy/sepolicy/templates/user.py 57 sepolicy/sepolicy/templates/var_lib.py 58 sepolicy/sepolicy/templates/var_log.py [all …]
|
D | Makefile | 75 ../sepolicy/sepolicy/templates/executable.py \ 76 ../sepolicy/sepolicy/templates/__init__.py \ 77 ../sepolicy/sepolicy/templates/network.py \ 78 ../sepolicy/sepolicy/templates/rw.py \ 79 ../sepolicy/sepolicy/templates/script.py \ 80 ../sepolicy/sepolicy/templates/semodule.py \ 81 ../sepolicy/sepolicy/templates/tmp.py \ 82 ../sepolicy/sepolicy/templates/user.py \ 83 ../sepolicy/sepolicy/templates/var_lib.py \ 84 ../sepolicy/sepolicy/templates/var_log.py \ [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | ProcessorExsltFunction.java | 23 import org.apache.xalan.templates.ElemApplyImport; 24 import org.apache.xalan.templates.ElemApplyTemplates; 25 import org.apache.xalan.templates.ElemAttribute; 26 import org.apache.xalan.templates.ElemCallTemplate; 27 import org.apache.xalan.templates.ElemComment; 28 import org.apache.xalan.templates.ElemCopy; 29 import org.apache.xalan.templates.ElemCopyOf; 30 import org.apache.xalan.templates.ElemElement; 31 import org.apache.xalan.templates.ElemExsltFuncResult; 32 import org.apache.xalan.templates.ElemExsltFunction; [all …]
|
D | XSLTSchema.java | 25 import org.apache.xalan.templates.Constants; 26 import org.apache.xalan.templates.ElemApplyImport; 27 import org.apache.xalan.templates.ElemApplyTemplates; 28 import org.apache.xalan.templates.ElemAttribute; 29 import org.apache.xalan.templates.ElemCallTemplate; 30 import org.apache.xalan.templates.ElemChoose; 31 import org.apache.xalan.templates.ElemComment; 32 import org.apache.xalan.templates.ElemCopy; 33 import org.apache.xalan.templates.ElemCopyOf; 34 import org.apache.xalan.templates.ElemElement; [all …]
|
D | ProcessorExsltFuncResult.java | 23 import org.apache.xalan.templates.ElemExsltFuncResult; 24 import org.apache.xalan.templates.ElemExsltFunction; 25 import org.apache.xalan.templates.ElemParam; 26 import org.apache.xalan.templates.ElemTemplateElement; 27 import org.apache.xalan.templates.ElemVariable;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
D | ACyclicDFACodeGenerator.java | 44 public ST genFixedLookaheadDecision(STGroup templates, in genFixedLookaheadDecision() argument 47 return walkFixedDFAGeneratingStateMachine(templates, dfa, dfa.startState, 1); in genFixedLookaheadDecision() 51 STGroup templates, in walkFixedDFAGeneratingStateMachine() argument 58 ST dfaST = templates.getInstanceOf("dfaAcceptState"); in walkFixedDFAGeneratingStateMachine() 76 ST dfaST = templates.getInstanceOf(dfaStateName); in walkFixedDFAGeneratingStateMachine() 78 dfaST = templates.getInstanceOf(dfaLoopbackStateName); in walkFixedDFAGeneratingStateMachine() 81 dfaST = templates.getInstanceOf(dfaOptionalBlockStateName); in walkFixedDFAGeneratingStateMachine() 113 ST edgeST = templates.getInstanceOf(dfaEdgeName); in walkFixedDFAGeneratingStateMachine() 127 parentGenerator.genLabelExpr(templates,edge,k)); in walkFixedDFAGeneratingStateMachine() 145 walkFixedDFAGeneratingStateMachine(templates, in walkFixedDFAGeneratingStateMachine() [all …]
|
D | CodeGenerator.java | 105 protected STGroup templates; field in CodeGenerator 216 templates = astDbgTemplates; in loadTemplates() 233 templates = astParserTemplates; in loadTemplates() 245 templates = stTemplates; in loadTemplates() 251 templates = stTemplates; in loadTemplates() 253 templates.iterateAcrossValues = true; // ST v3 compatibility with Maps in loadTemplates() 258 templates = dbgTemplates; in loadTemplates() 259 baseTemplates = templates; in loadTemplates() 263 templates = coreTemplates; in loadTemplates() 284 if ( templates==null ) { in genRecognizer() [all …]
|
/external/boringssl/src/tool/ |
D | args.cc | 28 const struct argument *templates) { in ParseKeyValueArguments() argument 34 for (size_t j = 0; templates[j].name[0] != 0; j++) { in ParseKeyValueArguments() 35 if (strcmp(arg.c_str(), templates[j].name) == 0) { in ParseKeyValueArguments() 36 templ = &templates[j]; in ParseKeyValueArguments() 62 for (size_t j = 0; templates[j].name[0] != 0; j++) { in ParseKeyValueArguments() 63 const struct argument *templ = &templates[j]; in ParseKeyValueArguments() 74 void PrintUsage(const struct argument *templates) { in PrintUsage() argument 75 for (size_t i = 0; templates[i].name[0] != 0; i++) { in PrintUsage() 76 const struct argument *templ = &templates[i]; in PrintUsage()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
D | ParticleControllerInfluencer.java | 24 public Single (ParticleController... templates) { in Single() argument 25 super(templates); in Single() 38 ParticleController first = templates.first(); in init() 74 ParticleController controller = templates.random().copy(); in newObject() 95 public Random (ParticleController... templates) { in Random() argument 96 super(templates); in Random() 145 public Array<ParticleController> templates; field in ParticleControllerInfluencer 149 this.templates = new Array<ParticleController>(true, 1, ParticleController.class); in ParticleControllerInfluencer() 152 public ParticleControllerInfluencer(ParticleController... templates){ in ParticleControllerInfluencer() argument 153 this.templates = new Array<ParticleController>(templates); in ParticleControllerInfluencer() [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | SemanticContext.java | 77 STGroup templates, in genExpr() argument 172 STGroup templates, in genExpr() argument 176 if ( templates!=null ) { in genExpr() 178 eST = templates.getInstanceOf("evalSynPredicate"); in genExpr() 181 eST = templates.getInstanceOf("evalPredicate"); in genExpr() 256 STGroup templates, in genExpr() argument 259 if ( templates!=null ) { in genExpr() 260 return templates.getInstanceOf("true_value"); in genExpr() 283 STGroup templates, in genExpr() argument 286 if ( templates!=null ) { in genExpr() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | QuantityFormatter.java | 25 private final SimplePatternFormatter[] templates = field in QuantityFormatter 42 if (templates[idx] != null) { in addIfAbsent() 45 templates[idx] = SimplePatternFormatter.compileMinMaxPlaceholders(template, 0, 1); in addIfAbsent() 52 return templates[StandardPlural.OTHER_INDEX] != null; in isValid() 66 SimplePatternFormatter formatter = templates[p.ordinal()]; in format() 68 formatter = templates[StandardPlural.OTHER_INDEX]; in format() 82 SimplePatternFormatter template = templates[idx]; in getByVariant() 84 templates[StandardPlural.OTHER_INDEX] : template; in getByVariant()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/ |
D | ECLIPSEF.SF | 9 Name: templates/headless-build/allElements.xml 36 Name: templates/headless-build/customTargets.xml 42 Name: templates/plugins/customBuildCallbacks.xml 45 Name: templates/headless-build/customAssembly.xml 51 Name: templates/packager/packager.properties 60 Name: templates/packager/packaging.properties 69 Name: templates/packager/customTargets.xml 84 Name: templates/headless-build/build.properties 87 Name: templates/features/customBuildCallbacks.xml
|
D | MANIFEST.MF | 51 Name: templates/headless-build/allElements.xml 78 Name: templates/headless-build/customTargets.xml 84 Name: templates/plugins/customBuildCallbacks.xml 87 Name: templates/headless-build/customAssembly.xml 93 Name: templates/packager/packager.properties 102 Name: templates/packager/packaging.properties 111 Name: templates/packager/customTargets.xml 126 Name: templates/headless-build/build.properties 129 Name: templates/features/customBuildCallbacks.xml
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Variable.java | 260 public org.apache.xalan.templates.ElemVariable getElemVariable() in getElemVariable() 269 org.apache.xalan.templates.ElemVariable vvar = null; in getElemVariable() 272 if (null != owner && owner instanceof org.apache.xalan.templates.ElemTemplateElement) in getElemVariable() 275 org.apache.xalan.templates.ElemTemplateElement prev = in getElemVariable() 276 (org.apache.xalan.templates.ElemTemplateElement) owner; in getElemVariable() 278 if (!(prev instanceof org.apache.xalan.templates.Stylesheet)) in getElemVariable() 280 … while ( prev != null && !(prev.getParentNode() instanceof org.apache.xalan.templates.Stylesheet) ) in getElemVariable() 282 org.apache.xalan.templates.ElemTemplateElement savedprev = prev; in getElemVariable() 286 if(prev instanceof org.apache.xalan.templates.ElemVariable) in getElemVariable() 288 vvar = (org.apache.xalan.templates.ElemVariable) prev; in getElemVariable() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | QuantityFormatter.java | 24 private final SimplePatternFormatter[] templates = field in QuantityFormatter 41 if (templates[idx] != null) { in addIfAbsent() 44 templates[idx] = SimplePatternFormatter.compileMinMaxPlaceholders(template, 0, 1); in addIfAbsent() 51 return templates[StandardPlural.OTHER_INDEX] != null; in isValid() 65 SimplePatternFormatter formatter = templates[p.ordinal()]; in format() 67 formatter = templates[StandardPlural.OTHER_INDEX]; in format() 81 SimplePatternFormatter template = templates[idx]; in getByVariant() 83 templates[StandardPlural.OTHER_INDEX] : template; in getByVariant()
|
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/ |
D | ParticleControllerInfluencerPanel.java | 27 controllerPicker.setValue(value.templates); in setValue() 74 int currentCount = value.templates.size; in handle() 75 value.templates.removeAll(oldEffect.getControllers(), true); in handle() 76 if(value.templates.size != currentCount){ in handle() 77 int diff = currentCount - value.templates.size; in handle() 83 value.templates.add(newControllers.get(i)); in handle() 87 …value.templates.addAll( ((ParticleEffect)editor.assetManager.get(FlameMain.DEFAULT_BILLBOARD_PARTI… in handle() 91 controllerPicker.setValue(value.templates); in handle()
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTemplates.java | 75 STGroup templates = in testTemplateConstructor() local 77 ST actionST = new ST(templates, rawTranslation); in testTemplateConstructor() 112 STGroup templates = in testTemplateConstructorNoArgs() local 114 ST actionST = new ST(templates, rawTranslation); in testTemplateConstructorNoArgs() 150 STGroup templates = in testIndirectTemplateConstructor() local 152 ST actionST = new ST(templates, rawTranslation); in testIndirectTemplateConstructor() 185 STGroup templates = in testStringConstructor() local 187 ST actionST = new ST(templates, rawTranslation); in testStringConstructor() 221 STGroup templates = in testSetAttr() local 223 ST actionST = new ST(templates, rawTranslation); in testSetAttr() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | VariableStack.java | 511 if (prefixResolver instanceof org.apache.xalan.templates.ElemTemplateElement) in getVariableOrParam() 514 org.apache.xalan.templates.ElemVariable vvar; in getVariableOrParam() 516 org.apache.xalan.templates.ElemTemplateElement prev = in getVariableOrParam() 517 (org.apache.xalan.templates.ElemTemplateElement) prefixResolver; in getVariableOrParam() 519 if (!(prev instanceof org.apache.xalan.templates.Stylesheet)) in getVariableOrParam() 521 while ( !(prev.getParentNode() instanceof org.apache.xalan.templates.Stylesheet) ) in getVariableOrParam() 523 org.apache.xalan.templates.ElemTemplateElement savedprev = prev; in getVariableOrParam() 527 if (prev instanceof org.apache.xalan.templates.ElemVariable) in getVariableOrParam() 529 vvar = (org.apache.xalan.templates.ElemVariable) prev; in getVariableOrParam()
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
D | test-template.rb | 77 templates = @group.templates 78 templates.should_not be_empty 79 templates.should equal @group::TEMPLATES 81 names = templates.keys 86 template_class = templates[ template_name ]
|
/external/v8/tools/testrunner/local/ |
D | progress.py | 193 def __init__(self, templates): argument 195 self.templates = templates 212 print self.templates['stdout'] % stdout 215 print self.templates['stderr'] % stderr 235 status = self.templates['status_line'] % { 252 templates = { 260 super(ColorProgressIndicator, self).__init__(templates) 269 templates = { 275 super(MonochromeProgressIndicator, self).__init__(templates)
|
/external/autotest/puppylab/ |
D | results_mocker.py | 15 from autotest_lib.puppylab import templates 98 templates.job_keyvals_template % 119 templates.success_job_template % test_info) 122 templates.success_job_template % test_info) 125 templates.success_test_template % test_info)
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | CodeGenTreeWalker.g | 116 protected STGroup templates; 156 ST elementST = templates.getInstanceOf( name ); 194 if ( tryUnchecked && templates.isDefined( name + "Unchecked" + suffix ) ) 195 elementST = templates.getInstanceOf( name + "Unchecked" + suffix ); 197 elementST = templates.getInstanceOf( name + suffix ); 292 this.templates = generator.getTemplates(); 410 // Save old templates ptr and restore later. Base templates include Dbg. 411 STGroup saveGroup = templates; 414 templates = generator.getBaseTemplates(); 461 $code = templates.getInstanceOf(stName); [all …]
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t042ast.g | 251 /** templates tested: 259 /** templates tested: 269 /** templates tested: 277 /** templates tested: 295 /** templates tested: 302 /** templates tested: 309 /** templates tested: 316 /** templates tested:
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/ |
D | template-output.rb | 55 templates = ANTLR3::Template::Group.new do 61 text = parse( <<-'END', 'a + b', :templates => templates ) 179 templates = ANTLR3::Template::Group.new do 185 text = parse( <<-'END', 'abc', :templates => templates )
|