HomeSort by relevance Sort by last modified time
    Searched full:reverse (Results 1 - 25 of 3684) 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 }
11 declare void @reverse(%frame.reverse* inalloca align 4)
19 %rev_args = alloca inalloca %frame.reverse, align 4
20 %beg = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 0
21 %end = getelementptr %frame.reverse, %frame.reverse* %rev_args, i32 0, i32 1
43 invoke void @reverse(%frame.reverse* inalloca align 4 %rev_args
    [all...]
  /external/openfst/src/script/
reverse.cc 19 #include <fst/script/reverse.h>
24 void Reverse(const FstClass &fst1, MutableFstClass *fst2) {
25 if (!ArcTypesMatch(fst1, *fst2, "Reverse")) return;
29 Apply<Operation<ReverseArgs> >("Reverse", fst1.ArcType(), &args);
32 REGISTER_FST_OPERATION(Reverse, StdArc, ReverseArgs);
33 REGISTER_FST_OPERATION(Reverse, LogArc, ReverseArgs);
34 REGISTER_FST_OPERATION(Reverse, Log64Arc, ReverseArgs);
  /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/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/toybox/scripts/
mkstatus.py 24 # Create reverse mappings: command is in which
26 reverse={} variable
29 try: reverse[j].append(i)
30 except: reverse[j]=[i]
34 if ("ready" in reverse[i]) and ("pending" in reverse[i]): print "barf", i
37 if ("ready" in reverse[i]) or ("pending" in reverse[i]): continue
44 print "all commands=%s" % len(reverse)
58 def categorize(reverse, i, skippy="")
    [all...]
  /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...]
  /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/openfst/src/include/fst/script/
reverse.h 22 #include <fst/reverse.h>
30 void Reverse(ReverseArgs *args) {
34 Reverse(fst1, fst2);
37 void Reverse(const FstClass &fst1, MutableFstClass *fst2);
  /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/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:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/operators/
unary.py 13 __all__ = ['complement', 'reverse']
48 def reverse(G, copy=True): function
49 """Return the reverse directed graph of G.
66 raise nx.NetworkXError("Cannot reverse an undirected graph.")
68 return G.reverse(copy=copy)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/traversal/
breadth_first_search.py 16 def bfs_edges(G, source, reverse=False):
20 if reverse and isinstance(G, nx.DiGraph):
37 def bfs_tree(G, source, reverse=False):
41 T.add_edges_from(bfs_edges(G,source,reverse=reverse))
  /external/openfst/src/include/fst/
reverse.h 0 // reverse.h
35 // reverse of A transduces the reverse of x to the reverse of y with
36 // weight a.Reverse().
38 // Typically, a = a.Reverse() and Arc = RevArc (e.g. for
43 void Reverse(const Fst<Arc> &ifst, MutableFst<RevArc> *ofst) {
69 RevArc oarc(0, 0, final.Reverse(), os);
77 RevArc oarc(iarc.ilabel, iarc.olabel, iarc.weight.Reverse(), os);

Completed in 2364 milliseconds

1 2 3 4 5 6 7 8 91011>>