/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;
|
/system/sepolicy/tools/sepolicy-analyze/ |
attribute.c | 6 fprintf(stderr, "\tattribute <name> [-r|--reverse]\n"); 9 static void retrieve_mapping(policydb_t *policydb, struct type_datum *dat, char *name, int reverse) { 13 if (reverse) { 30 static int list_attribute(policydb_t *policydb, char *name, int reverse) 40 if (reverse) { 51 retrieve_mapping(policydb, dat, name, reverse); 57 int reverse = 0; local 61 {"reverse", no_argument, NULL, 'r'}, 68 reverse = 1; 76 if (argc != 2 && !(reverse && argc == 3)) [all...] |
/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/icu/android_icu4j/src/main/java/android/icu/text/ |
LanguageBreakEngine.java | 33 * @param reverse true iff we are iterating backwards (in a call to 41 boolean reverse, int breakType, DictionaryBreakEngine.DequeI foundBreaks);
|
/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));
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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));
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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));
|
/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...] |
/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...] |
/system/update_engine/scripts/update_payload/ |
common.py | 163 def _ObjNameIter(items, base_name, reverse=False, name_format_func=None): 169 reverse: whether iteration should be in reverse order 176 idx, inc = (len(items), -1) if reverse else (1, 1) 177 if reverse: 191 def OperationIter(operations, base_name, reverse=False): 193 return _ObjNameIter(operations, base_name, reverse=reverse, 197 def ExtentIter(extents, base_name, reverse=False): 199 return _ObjNameIter(extents, base_name, reverse=reverse [all...] |
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
reverse.pass.cpp | 12 // void reverse(); 25 c1.reverse(); 33 c1.reverse();
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
reverse.pass.cpp | 12 // void reverse(); 25 c1.reverse(); 33 c1.reverse();
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.ops/ |
reverse.pass.cpp | 12 // void reverse(); 25 c1.reverse(); 33 c1.reverse();
|
/art/test/950-redefine-intrinsic/src/ |
RedefinedLongIntrinsics.java | 57 public static long reverse(long i) { method in class:RedefinedLongIntrinsics
|