/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | NameConstraints.java | 114 private static GeneralSubtree[] cloneSubtree(GeneralSubtree[] subtrees) in cloneSubtree() argument 116 if (subtrees != null) in cloneSubtree() 118 GeneralSubtree[] rv = new GeneralSubtree[subtrees.length]; in cloneSubtree() 120 System.arraycopy(subtrees, 0, rv, 0, rv.length); in cloneSubtree()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | NameConstraints.java | 118 private static GeneralSubtree[] cloneSubtree(GeneralSubtree[] subtrees) in cloneSubtree() argument 120 if (subtrees != null) in cloneSubtree() 122 GeneralSubtree[] rv = new GeneralSubtree[subtrees.length]; in cloneSubtree() 124 System.arraycopy(subtrees, 0, rv, 0, rv.length); in cloneSubtree()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/ |
D | NameConstraints.java | 118 private static GeneralSubtree[] cloneSubtree(GeneralSubtree[] subtrees) in cloneSubtree() argument 120 if (subtrees != null) in cloneSubtree() 122 GeneralSubtree[] rv = new GeneralSubtree[subtrees.length]; in cloneSubtree() 124 System.arraycopy(subtrees, 0, rv, 0, rv.length); in cloneSubtree()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeWizard.cs | 253 … public FindTreeWizardContextVisitor(TreeWizard outer, TreePattern tpattern, IList subtrees) { in FindTreeWizardContextVisitor() argument 256 _subtrees = subtrees; in FindTreeWizardContextVisitor() 275 IList subtrees = new List<object>(); in Find() 288 Visit(t, rootTokenType, new FindTreeWizardContextVisitor(this, tpattern, subtrees)); in Find() 289 return subtrees; in Find()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeWizard.cs | 289 … public FindTreeWizardContextVisitor( TreeWizard outer, TreePattern tpattern, IList subtrees ) in FindTreeWizardContextVisitor() argument 293 _subtrees = subtrees; in FindTreeWizardContextVisitor() 316 IList subtrees = new List<object>(); in Find() 330 Visit( t, rootTokenType, new FindTreeWizardContextVisitor( this, tpattern, subtrees ) ); in Find() 331 return subtrees; in Find()
|
/external/ltp/testcases/kernel/fs/fs_bind/ |
D | README | 42 to mnt2. Shared subtrees allow propagation whereas bind mounts do not. 44 subtrees: 50 For further details on these types of subtrees please see your kernel source's 93 combination with the various kinds of subtrees. The regression and cloneNS
|
/external/antlr/runtime/Ruby/test/unit/ |
D | test-tree-wizard.rb | 484 subtrees = @wizard.find(tree, "(A B)").map { |t| t.to_s } 485 assert_equal(%w(foo big), subtrees) 490 subtrees = @wizard.find( tree, A ).map { |t| t.to_s } 491 assert_equal(%w(A foo big), subtrees)
|
/external/ltp/runtest/ |
D | fs_bind | 1 #DESCRIPTION:Bind mounts and shared subtrees
|
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
D | wizard.rb | 366 subtrees = [] 367 visit_pattern( tree, pattern ) { | t, | subtrees << t } 368 return( subtrees )
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeWizard.java | 216 final List<Object> subtrees = new ArrayList<Object>(); in find() local 234 subtrees.add(t); in find() 238 return subtrees; in find()
|
/external/antlr/runtime/Python3/antlr3/ |
D | treewizard.py | 433 subtrees = [] 449 subtrees.append(tree) 453 return subtrees
|
/external/antlr/runtime/Python/antlr3/ |
D | treewizard.py | 433 subtrees = [] 449 subtrees.append(tree) 453 return subtrees
|
/external/antlr/runtime/ObjC/Framework/ |
D | TreeWizard.m | 80 [(AMutableArray *)object2/* subtrees */ addObject:t]; 364 /** Return a List of subtrees matching pattern. */ 367 AMutableArray *subtrees = [AMutableArray arrayWithCapacity:100]; 386 subtrees.add(t); 391 …itor *contextVisitor = [ANTLRVisitor newANTLRVisitor:1 Actor:self Object:tpattern Object:subtrees]; 393 return subtrees; 436 /** For all subtrees that match the pattern, execute the visit action.
|
/external/antlr/runtime/Python/unittests/ |
D | testtreewizard.py | 674 subtrees = wiz.find(t, "(A B)") 675 found = [str(node) for node in subtrees] 683 subtrees = wiz.find(t, wiz.getTokenType('A')) 684 found = [str(node) for node in subtrees]
|
/external/antlr/runtime/Python3/unittests/ |
D | testtreewizard.py | 672 subtrees = wiz.find(t, "(A B)") 673 found = [str(node) for node in subtrees] 681 subtrees = wiz.find(t, wiz.getTokenType('A')) 682 found = [str(node) for node in subtrees]
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | RewriteEmptyStreamException.as | 30 /** Ref to ID or expr but no tokens in ID stream or subtrees in expr stream */
|
D | RewriteRuleElementStream.as | 52 /** The list of tokens or subtrees we are tracking */
|
/external/llvm/test/CodeGen/X86/ |
D | switch-density.ll | 19 ; Should pivot around 400 for two subtrees with two jump tables each.
|
D | misched-matrix.ll | 12 ; uniform set of bottom-up subtrees (unrolled matrix multiply).
|
/external/python/cpython2/Demo/comparisons/ |
D | README | 45 anywhere in those subtrees. A bogus symbolic link is one that cannot
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | encode_asn1.py | 593 def _encode_general_subtree(backend, subtrees): argument 594 if subtrees is None: 598 for name in subtrees:
|
D | decode_asn1.py | 456 subtrees = [] 462 subtrees.append(name) 464 return subtrees
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
D | TestTreeWizard.java | 405 final List<? extends Object> subtrees = wiz.find(t, "(A B)"); in testFindPattern() local 406 List<? extends Object> elements = subtrees; in testFindPattern()
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | switch-density.ll | 19 ; Should pivot around 400 for two subtrees with two jump tables each.
|
D | misched-matrix.ll | 12 ; uniform set of bottom-up subtrees (unrolled matrix multiply).
|