/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | RecognizerSharedState.java | 43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE]; field in RecognizerSharedState 123 if ( this.following.length < state.following.length ) { in RecognizerSharedState() 124 this.following = new BitSet[state.following.length]; in RecognizerSharedState() 126 System.arraycopy(state.following, 0, this.following, 0, state.following.length); in RecognizerSharedState()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRRecognizerSharedState.m | 6 // modification, are permitted provided that the following conditions 9 // notice, this list of conditions and the following disclaimer. 11 // notice, this list of conditions and the following disclaimer in the 35 @synthesize following; 70 following = [[AMutableArray arrayWithCapacity:10] retain]; 101 following = [[AMutableArray arrayWithCapacity:10] retain]; 130 if ( [following count] < [aState.following count] ) { 131 // following = new BitSet[state.following.size]; 133 [following setArray:aState.following]; 176 if ( following ) [following release]; [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
D | group-file-parser.rb | 194 @state.following.push( TOKENS_FOLLOWING_group_name_IN_group_spec_85 ) 196 @state.following.pop 220 @state.following.push( TOKENS_FOLLOWING_member_IN_group_spec_108 ) 222 @state.following.pop 348 @state.following.push( TOKENS_FOLLOWING_parameter_declaration_IN_member_203 ) 350 @state.following.pop 445 @state.following.push( TOKENS_FOLLOWING_parameters_IN_parameter_declaration_280 ) 447 @state.following.pop 457 @state.following.push( TOKENS_FOLLOWING_parameters_IN_parameter_declaration_293 ) 459 @state.following.pop [all …]
|
/external/libxml2/test/XPath/tests/ |
D | chaptersprefol | 1 /following::* 4 /child::EXAMPLE/following::* 6 /child::EXAMPLE/child::chapter[3]/following::* 8 /child::EXAMPLE/child::chapter[1]/image/following::*
|
/external/netperf/doc/examples/ |
D | snapshot_script | 127 echo Testing with the following command line: 141 echo Testing with the following command line: 155 echo Testing with the following command line: 168 echo Testing with the following command line: 183 echo Testing with the following command line: 194 echo Testing with the following command line: 208 echo Testing with the following command line:
|
/external/freetype/ |
D | README.android | 3 The following modules are disabled in include/freetype/config/ftmodule.h: 13 The following options are disabled in include/freetype/config/ftoption.h: 19 The following option is enabled to support color fonts. 23 The following commit is cherry-picked from the upstream: 30 The following three commits are cherry-picked with some adjustment to apply:
|
/external/fsck_msdos/ |
D | NOTICE | 6 * modification, are permitted provided that the following conditions 9 * notice, this list of conditions and the following disclaimer. 11 * notice, this list of conditions and the following disclaimer in the 14 * must display the following acknowledgement: 40 * modification, are permitted provided that the following conditions 43 * notice, this list of conditions and the following disclaimer. 45 * notice, this list of conditions and the following disclaimer in the 48 * must display the following acknowledgement: 74 * modification, are permitted provided that the following conditions 77 * notice, this list of conditions and the following disclaimer. [all …]
|
/external/libopus/celt/arm/ |
D | armopts.s.in | 4 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 11 notice, this list of conditions and the following disclaimer in the 27 ; Set the following to 1 if we have EDSP instructions 31 ; Set the following to 1 if we have ARMv6 media instructions. 34 ; Set the following to 1 if we have NEON (some ARMv7)
|
D | armopts_gnu.s | 28 @ Set the following to 1 if we have EDSP instructions 32 @ Set the following to 1 if we have ARMv6 media instructions. 35 @ Set the following to 1 if we have NEON (some ARMv7)
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
D | BreakIteratorTest.java | 151 assertEquals(100, cbr.following(pos)); in testFollowing() 152 assertEquals(103, wbr.following(pos)); in testFollowing() 153 assertEquals(104, lbr.following(pos)); in testFollowing() 154 assertEquals(116, sbr.following(pos)); in testFollowing() 182 cbr.following(pos); in testCurrent() 183 wbr.following(pos); in testCurrent() 184 lbr.following(pos); in testCurrent() 185 sbr.following(pos); in testCurrent()
|
/external/ipsec-tools/src/racoon/ |
D | NOTICE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in the 34 modification, are permitted provided that the following conditions 37 notice, this list of conditions and the following disclaimer. 39 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in the 92 modification, are permitted provided that the following conditions [all …]
|
/external/ipsec-tools/ |
D | NOTICE | 5 modification, are permitted provided that the following conditions 8 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer in the 34 modification, are permitted provided that the following conditions 37 notice, this list of conditions and the following disclaimer. 39 notice, this list of conditions and the following disclaimer in the 63 modification, are permitted provided that the following conditions 66 notice, this list of conditions and the following disclaimer. 68 notice, this list of conditions and the following disclaimer in the 92 modification, are permitted provided that the following conditions [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognizerSharedState.cs | 57 public BitSet[] following; field in Antlr.Runtime.RecognizerSharedState 153 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState() 163 following = (BitSet[])state.following.Clone(); in RecognizerSharedState()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognizerSharedState.cs | 59 public BitSet[] following; field in Antlr.Runtime.RecognizerSharedState 156 following = new BitSet[BaseRecognizer.InitialFollowStackSize]; in RecognizerSharedState() 167 following = (BitSet[])state.following.Clone(); in RecognizerSharedState()
|
/external/openssh/ |
D | README.tun | 8 The following brief instructions on how to use this feature use 14 have to add the following option to the ssh server configuration file 35 following configuration in /etc/hostname.tun0 to set up the layer 3 46 interface, like the following example for /etc/bridgename.bridge0: 55 remote host by default, use the following ssh client configuration for 66 The following example describes a client configuration to connect to 83 The following network plan illustrates the previous configuration in 106 the following command: 116 to use the following command lines:
|
/external/libxml2/test/XPath/xptr/ |
D | chaptersrange | 1 xpointer(//chapter[position() = 2]/range-to(following::chapter[1])) 2 xpointer(//chapter[position() <= 2]/range-to(following::chapter[1])) 3 xpointer(//chapter[position() = last()]/range-to(following::chapter[1]))
|
/external/smali/ |
D | NOTICE | 2 and released under the following license: 9 modification, are permitted provided that the following conditions 12 notice, this list of conditions and the following disclaimer. 14 notice, this list of conditions and the following disclaimer in the 34 under the following license: 41 modification, are permitted provided that the following conditions are 45 notice, this list of conditions and the following disclaimer. 47 copyright notice, this list of conditions and the following disclaimer 69 and are used in accordance with the following license: 89 following license
|
/external/bsdiff/ |
D | LICENSE | 1 This project governed by the following BSD-style licenses. Check each file 10 modification, are permitted providing that the following conditions 13 notice, this list of conditions and the following disclaimer. 15 notice, this list of conditions and the following disclaimer in the 35 modification, are permitted provided that the following conditions are 39 notice, this list of conditions and the following disclaimer. 41 copyright notice, this list of conditions and the following disclaimer
|
D | NOTICE | 1 This project governed by the following BSD-style licenses. Check each file 10 modification, are permitted providing that the following conditions 13 notice, this list of conditions and the following disclaimer. 15 notice, this list of conditions and the following disclaimer in the 35 modification, are permitted provided that the following conditions are 39 notice, this list of conditions and the following disclaimer. 41 copyright notice, this list of conditions and the following disclaimer
|
/external/netcat/ |
D | NOTICE | 9 * modification, are permitted provided that the following conditions 12 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer in the 37 * modification, are permitted provided that the following conditions 40 * notice, this list of conditions and the following disclaimer. 42 * notice, this list of conditions and the following disclaimer in the 62 * modification, are permitted provided that the following conditions 66 * notice, this list of conditions and the following disclaimer. 68 * notice, this list of conditions and the following disclaimer in the
|
/external/boringssl/src/ |
D | LICENSE | 17 The following are Google-internal bug numbers where explicit permission from 31 * modification, are permitted provided that the following conditions 35 * notice, this list of conditions and the following disclaimer. 38 * notice, this list of conditions and the following disclaimer in 43 * software must display the following acknowledgment: 56 * 6. Redistributions of any form whatsoever must retain the following 92 * the following conditions are aheared to. The following conditions 106 * modification, are permitted provided that the following conditions 109 * notice, this list of conditions and the following disclaimer. 111 * notice, this list of conditions and the following disclaimer in the [all …]
|
/external/syslinux/com32/lib/libpng/ |
D | LICENSE | 8 If you modify libpng you may insert additional notices immediately following 16 with the following individual added to the list of Contributing Authors 23 with the following individuals added to the list of Contributing Authors 29 and with the following additions to the disclaimer: 41 with the following individuals added to the list of Contributing Authors: 50 with the following individuals added to the list of Contributing Authors: 63 is defined as the following set of individuals: 81 to the following restrictions:
|
/external/curl/tests/data/ |
D | test1024 | 21 This server reply is for testing a Location: following with cookies 32 This server reply is for testing a Location: following with cookies 41 If this is received, the location following worked 64 If this is received, the location following worked 75 HTTP Location: following with cookies
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIAPITest.java | 190 q = wordIter1.following(2); in TestFirstNextFollowing() 192 q = wordIter1.following(22); in TestFirstNextFollowing() 196 q = wordIter1.following(wordIter1.last()); in TestFirstNextFollowing() 221 p = charIter1.following(charIter1.last()); in TestFirstNextFollowing() 247 q = sentIter1.following(1); in TestFirstNextFollowing() 249 q = sentIter1.following(10); in TestFirstNextFollowing() 251 q = sentIter1.following(20); in TestFirstNextFollowing() 253 p = sentIter1.following(sentIter1.last()); in TestFirstNextFollowing() 283 q = lineIter1.following(60); in TestFirstNextFollowing() 285 q = lineIter1.following(1); in TestFirstNextFollowing() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBIAPITest.java | 191 q = wordIter1.following(2); in TestFirstNextFollowing() 193 q = wordIter1.following(22); in TestFirstNextFollowing() 197 q = wordIter1.following(wordIter1.last()); in TestFirstNextFollowing() 222 p = charIter1.following(charIter1.last()); in TestFirstNextFollowing() 248 q = sentIter1.following(1); in TestFirstNextFollowing() 250 q = sentIter1.following(10); in TestFirstNextFollowing() 252 q = sentIter1.following(20); in TestFirstNextFollowing() 254 p = sentIter1.following(sentIter1.last()); in TestFirstNextFollowing() 284 q = lineIter1.following(60); in TestFirstNextFollowing() 286 q = lineIter1.following(1); in TestFirstNextFollowing() [all …]
|