HomeSort by relevance Sort by last modified time
    Searched refs:following (Results 1 - 25 of 1956) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libopus/celt/arm/
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)
armopts_gnu.s 5 modification, are permitted provided that the following conditions
9 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
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)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
parallel-bad-2.l 2 [^:]*:5: Error: parallel instruction not following another instruction
3 [^:]*:8: Error: parallel instruction not following another instruction
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 7 modification, are permitted provided that the following conditions
10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
43 public BitSet[] following = new BitSet[BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE]; field in class:RecognizerSharedState
123 if ( this.following.length < state.following.length ) {
124 this.following = new BitSet[state.following.length];
126 System.arraycopy(state.following, 0, this.following, 0, state.following.length)
    [all...]
  /external/ltp/testcases/kernel/containers/
README 23 The tests requires the Kernel to be compiled with the following config's
35 (e.g: utsname etc..) tests and report results. Please refer the following
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
noargs_a7.s 1 #Test if the following mnemonics are recognized for ARC700
noargs_hs.s 1 #Test if the following mnemonics are recognized for ARC HS
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
inval-seg.s 2 # All the following should be illegal
inval-seg.l 8 2 [ ]*# All the following should be illegal
x86-64-inval-seg.s 2 # All the following should be illegal
x86-64-inval-seg.l 10 2 [ ]*# All the following should be illegal
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 13 this.following = [];
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68k/
p13050-1.s 1 # The following addressing mode is forbidden even on isab or higher (PR13050)
p11673.s 1 # The following addressing mode is allowed on isab and higher
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmList.java 38 private final CsmElement following; field in class:CsmList
57 return following;
68 public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, CsmElement preceeding, CsmElement following) {
73 this.following = following;
95 if (!nodeList.isEmpty() && following != null) {
96 following.prettyPrint(node, printer);
115 if (!values.isEmpty() && following != null) {
116 following.prettyPrint(node, printer);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a-it-bad.l 7 .*:40: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Short branches, Undefined, SVC, LDM/STM
8 .*:43: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Miscellaneous 16-bit instructions
9 .*:49: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Literal loads
10 .*:52: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Hi-register ADD, MOV, CMP, BX, BLX using pc
11 .*:55: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Short branches, Undefined, SVC, LDM/STM
13 .*:58: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Short branches, Undefined, SVC, LDM/STM
15 .*:61: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: ADD/SUB sp, sp #imm
16 .*:65: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: ADD/SUB sp, sp #imm
17 .*:68: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: ADD/SUB sp, sp #imm
18 .*:72: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: ADD/SUB sp, sp #im
    [all...]
attr-order.s 1 @ This test ensures that the following attributes
udf.l 2 ^[^:]*:16: IT blocks containing 16-bit Thumb instructions of the following class are deprecated in ARMv8: Short branches, Undefined, SVC, LDM/STM
  /compatibility/cdd/3_software/
3_15_instant-apps.md 3 Device implementations MUST satisfy the following requirements:
9 unless one of the following is true:
  /cts/tools/selinux/
SELinuxNeverallowTestFrame.py 143 assertTrue("The following errors were encountered when validating the SELinux"
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 11 * modification, are permitted provided that the following conditions
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
56 //public List<BitSet> following;
57 public BitSet[] following; field in class:Antlr.Runtime.RecognizerSharedState
152 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
153 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
163 following = (BitSet[])state.following.Clone();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 11 * modification, are permitted provided that the following conditions
14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
58 //public List<BitSet> following;
59 public BitSet[] following; field in class:Antlr.Runtime.RecognizerSharedState
155 //following = new List<BitSet>( BaseRecognizer.InitialFollowStackSize );
156 following = new BitSet[BaseRecognizer.InitialFollowStackSize];
167 following = (BitSet[])state.following.Clone();
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-h8300/
relax-4.s 1 ; Relaxation is possible for following bit manipulation instructions
  /packages/apps/Gallery/
Android.mk 14 # Use the following include to make our test apk.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
syms.d 3 # The following targets use an unusual .set syntax...

Completed in 546 milliseconds

1 2 3 4 5 6 7 8 91011>>