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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/except/except.spec/
p9-noexcept.cpp 16 void reverse() noexcept(false)
  /external/clang/test/CodeGen/
2003-11-20-Bitfields.c 4 unsigned int reverse :1; member in struct:face_cachel
  /external/ltp/testcases/kernel/fs/fs_bind/bin/
check_prop 21 reverse=0
25 n) reverse=1
31 if [ $reverse -eq 1 ]
50 if [ $reverse -eq 1 ]
64 if [ $reverse -eq 1 ]
  /external/eigen/doc/snippets/
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;
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;
  /external/tensorflow/tensorflow/core/kernels/
scan_ops.h 31 const bool reverse, const bool exclusive) {
32 // Perform the reverse ops directly with Eigen, which avoids copying the
36 dims[1] = reverse;
39 To32Bit(in).reverse(dims).scan(1, reducer, exclusive).reverse(dims);
  /external/icu/icu4c/source/layoutex/
LXUtilities.h 23 static void reverse(le_int32 array[], le_int32 count);
24 static void reverse(float array[], le_int32 count);
  /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/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...]
  /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/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/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/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/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 15 // reverse(Iter first, Iter last);
28 std::reverse(Iter(ia), Iter(ia));
30 std::reverse(Iter(ia), Iter(ia+sa));
35 std::reverse(Iter(ib), Iter(ib+sb));
41 std::reverse(Iter(ic), Iter(ic+sc));
48 std::reverse(Iter(id), Iter(id+sd));
  /external/libnl/src/
nl-classid-lookup.c 22 " -r, --reverse Do a reverse lookup, i.e. classid to name.\n"
37 int err, reverse = 0, raw = 0; local
47 { "reverse", 0, 0, 'r' },
59 case 'r': reverse = 1; break;
70 * We use rtnl_tc_str2handle() even while doing a reverse lookup. This
78 if (reverse) {
  /external/toybox/scripts/
mkstatus.py 31 # Create reverse mappings: reverse["command"] gives list of categories it's in
33 reverse={} variable
36 try: reverse[j].append(i)
37 except: reverse[j]=[i]
38 print "all commands=%s" % len(reverse)
47 if not i in reverse: unknowns.append(i)
61 def categorize(reverse, i, skippy=""):
65 if skippy: types = filter(lambda a: a != skippy, reverse[i])
66 else: types = reverse[i
    [all...]
  /external/libcxx/test/std/containers/sequences/list/list.ops/
reverse.pass.cpp 12 // void reverse();
25 c1.reverse();
33 c1.reverse();
  /external/u-boot/common/eeprom/
eeprom_field.c 14 char *delimiter, bool reverse)
17 int from = reverse ? field->size - 1 : 0;
18 int to = reverse ? 0 : field->size - 1;
21 for (i = from; i != to; reverse ? i-- : i++)
28 const char *value, bool reverse)
31 int k, j, i = reverse ? len - 1 : 0;
46 if ((reverse && i < 0) || (!reverse && i >= len))
50 if (reverse && i == 0) {
55 tmp[k] = value[reverse ? i - 1 + k : i + k]
    [all...]
  /art/test/950-redefine-intrinsic/src/
RedefinedLongIntrinsics.java 57 public static long reverse(long i) { method in class:RedefinedLongIntrinsics
  /external/antlr/runtime/Python/antlr3/
compat.py 45 l.reverse()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
X509Principal.java 116 * some such, converting it into an ordered set of name attributes. If reverse
122 boolean reverse,
125 super(reverse, dirName);
135 * If reverse is true, create the encoded version of the sequence starting
139 boolean reverse,
143 super(reverse, lookUp, dirName);
  /external/eigen/blas/
double.cpp 28 else if(*incx<0 && *incy>0) return (make_vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(make_vector(y,*n,*incy).cast<double>())).sum();
29 else if(*incx>0 && *incy<0) return (make_vector(x,*n,*incx).cast<double>().cwiseProduct(make_vector(y,*n,-*incy).reverse().cast<double>())).sum();
30 else if(*incx<0 && *incy<0) return (make_vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(make_vector(y,*n,-*incy).reverse().cast<double>())).sum();
  /external/mesa3d/bin/
get-pick-list.sh 15 git log --reverse --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
20 git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable' $latest_branchpoint..origin/master |\
get-typod-pick-list.sh 19 git log --reverse --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
24 git log --reverse --pretty=%H -i --grep='^CC:.*mesa-dev' $latest_branchpoint..origin/master |\
  /external/python/pyasn1/pyasn1/compat/
binary.py 29 bitstring.reverse()

Completed in 668 milliseconds

1 2 3 4 5 6 7 8 91011>>