HomeSort by relevance Sort by last modified time
    Searched full:reverse (Results 1 - 25 of 5045) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
Vectorwise_reverse.cpp 3 cout << "Here is the rowwise reverse of m:" << endl << m.rowwise().reverse() << endl;
4 cout << "Here is the colwise reverse of m:" << endl << m.colwise().reverse() << endl;
6 cout << "Here is the coefficient (1,0) in the rowise reverse of m:" << endl
7 << m.rowwise().reverse()(1,0) << endl;
9 //m.colwise().reverse()(1,0) = 4;
MatrixBase_reverse.cpp 3 cout << "Here is the reverse of m:" << endl << m.reverse() << endl;
4 cout << "Here is the coefficient (1,0) in the reverse of m:" << endl
5 << m.reverse()(1,0) << endl;
7 m.reverse()(1,0) = 4;
  /external/icu/icu4c/source/layoutex/
LXUtilities.h 21 static void reverse(le_int32 array[], le_int32 count);
22 static void reverse(float array[], le_int32 count);
  /external/eigen/test/
array_reverse.cpp 16 template<typename MatrixType> void reverse(const MatrixType& m) function
30 MatrixType m1_r = m1.reverse();
31 // Verify that MatrixBase::reverse() works
38 Reverse<MatrixType> m1_rd(m1);
39 // Verify that a Reverse default (in both directions) of an expression works
46 Reverse<MatrixType, BothDirections> m1_rb(m1);
47 // Verify that a Reverse in both directions of an expression works
54 Reverse<MatrixType, Vertical> m1_rv(m1);
55 // Verify that a Reverse in the vertical directions of an expression works
62 Reverse<MatrixType, Horizontal> m1_rh(m1)
    [all...]
  /external/llvm/test/CodeGen/X86/
inalloca-invoke.ll 5 %frame.reverse = type { %Iter, %Iter }
12 declare void @reverse(%frame.reverse* inalloca align 4)
20 %rev_args = alloca inalloca %frame.reverse, align 4
21 %beg = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 0
22 %end = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 1
44 invoke void @reverse(%frame.reverse* inalloca align 4 %rev_args
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/patches.android/
0010-Add-enough-symlink-to-rename-file-path-with-replace-.patch 15 .../reverse.iterators/reverse.iter.ops/reverse.iter.op!EQ | 1 +
16 .../reverse.iterators/reverse.iter.ops/reverse.iter.op+EQ | 1 +
17 .../reverse.iterators/reverse.iter.ops/reverse.iter.op-EQ | 1 +
18 .../reverse.iterators/reverse.iter.ops/reverse.iter.opEQ | 1
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t052importT5.g 5 tokens { C; B; A; } /// reverse order
  /external/clang/test/CodeGen/
2003-11-20-Bitfields.c 4 unsigned int reverse :1; member in struct:face_cachel
  /external/v8/test/mjsunit/es6/
typedarray-reverse.js 34 assertArrayLikeEquals(a.reverse(), [3, 2, 1], constructor);
38 assertArrayLikeEquals(a.reverse(), [4, 3, 2, 1], constructor);
43 assertThrows(function () { a.reverse.call({ length: 0 }); }, TypeError);
45 // Array.reverse works on array-like objects
47 a.reverse.call(x);
53 assertEquals(0, a.reverse.length);
  /external/guava/guava-tests/test/com/google/common/base/
ConverterTest.java 62 assertEquals(STR_VAL, STR_TO_LONG.reverse().convert(LONG_VAL));
80 Converter<Long, String> reverseConverter = STR_TO_LONG.reverse();
83 assertEquals(LONG_VAL, reverseConverter.reverse().convert(STR_VAL));
88 assertSame(STR_TO_LONG, reverseConverter.reverse());
90 assertEquals("string2long.reverse()", reverseConverter.toString());
93 .addEqualityGroup(STR_TO_LONG, STR_TO_LONG.reverse().reverse())
94 .addEqualityGroup(STR_TO_LONG.reverse(), STR_TO_LONG.reverse())
100 assertEquals(converter, converter.reverse().reverse())
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
CounterComparator.java 59 private final boolean reverse; field in class:CounterComparator
65 private CounterComparator(final CounterValue value, final boolean reverse) {
67 this.reverse = reverse;
72 return reverse ? -cmp : cmp;
76 * Creates a new version of this comparator that sorts in reverse order.
78 * @return reverse comparator
80 public CounterComparator reverse() { method in class:CounterComparator
81 return new CounterComparator(value, !reverse);
  /external/eigen/Eigen/src/Core/
Reverse.h 17 /** \class Reverse
20 * \brief Expression of the reverse of a vector or matrix
22 * \param MatrixType the type of the object of which we are taking the reverse
24 * This class represents an expression of the reverse of a vector.
25 * It is the return type of MatrixBase::reverse() and VectorwiseOp::reverse()
28 * \sa MatrixBase::reverse(), VectorwiseOp::reverse()
34 struct traits<Reverse<MatrixType, Direction> >
70 template<typename MatrixType, int Direction> class Reverse
191 DenseBase<Derived>::reverse() function in class:Eigen::DenseBase
199 DenseBase<Derived>::reverse() const function in class:Eigen::DenseBase
    [all...]
  /external/icu/icu4c/source/data/brkitr/
title.txt 16 # safe-reverse rule.
27 # Reverse Rules
28 !!reverse;
42 # Safe Reverse: the exact forward rule must not start in the middle
43 # of a word, so the safe reverse skips over any Cased characters,
50 # Safe Forward, nothing needs to be done, the exact Reverse rules will
  /external/droiddriver/src/io/appium/droiddriver/scroll/
Direction.java 31 public LogicalDirection reverse() { method
37 public LogicalDirection reverse() { method
41 public abstract LogicalDirection reverse(); method in class:Direction.LogicalDirection
48 public PhysicalDirection reverse() { method
59 public PhysicalDirection reverse() { method
70 public PhysicalDirection reverse() { method
81 public PhysicalDirection reverse() { method
90 public abstract PhysicalDirection reverse(); method in class:Direction.PhysicalDirection
153 return horizontalForwardDirection().reverse();
157 return verticalForwardDirection().reverse();
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
X509CertificatePair.java 48 * CA. The reverse certificate of the CertificatePair contains a certificate
49 * issued by this CA to another CA. When both the forward and the reverse
61 * reverse [1] Certificate OPTIONAL
79 private X509Certificate reverse; field in class:X509CertificatePair
96 * @param reverse The reverse component of the certificate pair
100 public X509CertificatePair(X509Certificate forward, X509Certificate reverse)
102 if (forward == null && reverse == null) {
108 this.reverse = reverse;
    [all...]
  /development/samples/devbytes/animation/PropertyAnimations/res/animator/
combo.xml 7 android:repeatMode="reverse"
13 android:repeatMode="reverse"
27 android:repeatMode="reverse"
33 android:repeatMode="reverse"
  /device/sample/frameworks/PlatformLibrary/java/com/example/android/platform_library/
PlatformLibrary.java 40 /* reverse a string, for no very good reason */
41 String reverse = reverseString("Android!"); local
43 Log.i("PlatformLibrary", "getInt: " + result + ", '" + reverse + "'");
62 * Native method that returns a new string that is the reverse of
  /external/replicaisland/res/anim/
button_flicker.xml 7 android:repeatMode="reverse"
fade_in_out.xml 7 android:repeatMode="reverse"
wait_message_fade.xml 7 android:repeatMode="reverse"
  /external/clang/test/SemaTemplate/
example-typelist.cpp 49 class reverse { class
50 typedef typename reverse<typename T::tail>::type reversed_tail;
52 typedef typename reverse<typename reversed_tail::tail>::type most_of_tail;
56 typename reverse<cons<typename T::head, most_of_tail> >::type> type;
60 class reverse<cons<Head> > { class
66 class reverse<nil> { class
71 int reverse0[is_same<reverse<unsigned_inttypes>::type,
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
reversename.py 16 """DNS Reverse Map Names.
18 @var ipv4_reverse_domain: The DNS IPv4 reverse-map domain, in-addr.arpa.
20 @var ipv6_reverse_domain: The DNS IPv6 reverse-map domain, ip6.arpa.
33 value is the reverse-map domain name of the address.
45 parts.reverse()
49 """Convert a reverse map domain name into textual address form.
50 @param name: an IPv4 or IPv6 address in reverse-map form.
57 labels.reverse()
64 labels.reverse()
75 raise dns.exception.SyntaxError('unknown reverse-map address family'
    [all...]
  /external/iptables/extensions/
libxt_rpfilter.man 1 Performs a reverse path filter test on a packet.
11 Used to specifiy that the reverse path filter test should match
15 Also use the packets' nfmark value when performing the reverse path route lookup.
23 reverse path filter test, match those that have failed it.
25 Example to log and drop packets failing the reverse path filter test:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python2/crcmod/
predefined.py 43 REVERSE = True
50 # Name Identifier-name, Poly Reverse Init-value XOR-out Check
52 [ 'crc-8-darc', 'Crc8Darc', 0x139, REVERSE, 0x00, 0x00, 0x15, ],
55 [ 'crc-8-maxim', 'Crc8Maxim', 0x131, REVERSE, 0x00, 0x00, 0xA1, ],
56 [ 'crc-8-rohc', 'Crc8Rohc', 0x107, REVERSE, 0xFF, 0x00, 0xD0, ],
57 [ 'crc-8-wcdma', 'Crc8Wcdma', 0x19B, REVERSE, 0x00, 0x00, 0x25, ],
59 [ 'crc-16', 'Crc16', 0x18005, REVERSE, 0x0000, 0x0000, 0xBB3D, ],
63 [ 'crc-16-dnp', 'Crc16Dnp', 0x13D65, REVERSE, 0xFFFF, 0xFFFF, 0xEA82, ],
66 [ 'crc-16-maxim', 'Crc16Maxim', 0x18005, REVERSE, 0xFFFF, 0xFFFF, 0x44C2, ],
67 [ 'crc-16-mcrf4xx', 'Crc16Mcrf4xx', 0x11021, REVERSE, 0xFFFF, 0x0000, 0x6F91, ]
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
predefined.py 43 REVERSE = True
50 # Name Identifier-name, Poly Reverse Init-value XOR-out Check
52 [ 'crc-8-darc', 'Crc8Darc', 0x139, REVERSE, 0x00, 0x00, 0x15, ],
55 [ 'crc-8-maxim', 'Crc8Maxim', 0x131, REVERSE, 0x00, 0x00, 0xA1, ],
56 [ 'crc-8-rohc', 'Crc8Rohc', 0x107, REVERSE, 0xFF, 0x00, 0xD0, ],
57 [ 'crc-8-wcdma', 'Crc8Wcdma', 0x19B, REVERSE, 0x00, 0x00, 0x25, ],
59 [ 'crc-16', 'Crc16', 0x18005, REVERSE, 0x0000, 0x0000, 0xBB3D, ],
63 [ 'crc-16-dnp', 'Crc16Dnp', 0x13D65, REVERSE, 0xFFFF, 0xFFFF, 0xEA82, ],
66 [ 'crc-16-maxim', 'Crc16Maxim', 0x18005, REVERSE, 0xFFFF, 0xFFFF, 0x44C2, ],
67 [ 'crc-16-mcrf4xx', 'Crc16Mcrf4xx', 0x11021, REVERSE, 0xFFFF, 0x0000, 0x6F91, ]
    [all...]

Completed in 718 milliseconds

1 2 3 4 5 6 7 8 91011>>