/external/jsoncpp/test/data/ |
test_preserve_comment_01.expected | 6 /* Comment before 'second' 8 .second=2
|
/art/test/113-multidex/src/ |
Main.java | 21 Inf1 second = new Second(); local 22 System.out.println(second.getClass().getName()); 23 second.zcall(); 24 second.zcall1(); 25 second.zcall2(); 26 second.zcall3(); 27 second.zcall4(); 28 second.zcall5(); 29 second.zcall6() [all...] |
/external/curl/lib/ |
strequal.c | 34 int curl_strequal(const char *first, const char *second) 37 return !(strcasecmp)(first, second); 39 return !(strcmpi)(first, second); 41 return !(stricmp)(first, second); 43 while(*first && *second) { 44 if(toupper(*first) != toupper(*second)) { 48 second++; 50 return toupper(*first) == toupper(*second); 57 int curl_strnequal(const char *first, const char *second, size_t max) 60 return !strncasecmp(first, second, max) [all...] |
rawstr.c | 98 int Curl_raw_equal(const char *first, const char *second) 100 while(*first && *second) { 101 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) 105 second++; 110 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second)); 113 int Curl_raw_nequal(const char *first, const char *second, size_t max) 115 while(*first && *second && max) { 116 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) { 121 second++; 126 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second); [all...] |
/frameworks/base/graphics/java/android/graphics/ |
SumPathEffect.java | 23 * (e.g. first(path) + second(path)) 25 public SumPathEffect(PathEffect first, PathEffect second) { 27 second.native_instance); 30 private static native long nativeCreate(long first, long second);
|
/art/test/MultiDex/ |
Main.java | 19 Second second = new Second(); local 20 System.out.println(second.getSecond());
|
/art/test/MultiDexModifiedSecondary/ |
Main.java | 19 Second second = new Second(); local 20 System.out.println(second.getSecond());
|
/external/clang/test/Frontend/ |
verify-fatal.c | 6 #error second fatal 7 // expected-error@-1 {{second fatal}} 11 // CHECK-NEXT: Line 6 (directive at {{.*}}verify-fatal.c:7): second fatal
|
/art/runtime/ |
class_reference.h | 31 if (lhs.second < rhs.second) { 33 } else if (lhs.second > rhs.second) {
|
/external/valgrind/memcheck/tests/ |
clireq_nofill.stdout.exp | 3 *s=0x5 after second MEMPOOL_ALLOC 6 *s=0x5 after second MALLOCLIKE_BLOCK
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
MultiClassKey.java | 8 private Class<?> second; field in class:MultiClassKey 14 public MultiClassKey(Class<?> first, Class<?> second) { 15 set(first, second); 18 public void set(Class<?> first, Class<?> second) { 20 this.second = second; 27 + ", second=" + second 45 if (!second.equals(that.second)) { [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Pair.java | 11 * A pair of objects: first and second. 14 * @param <S> second object type 19 public final S second; field in class:Pair 21 protected Pair(F first, S second) { 23 this.second = second; 29 * @param second must be non-null 32 public static <F, S> Pair<F, S> of(F first, S second) { 33 if (first == null || second == null) { 36 return new Pair<F, S>(first, second); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Pair.java | 10 * A pair of objects: first and second. 13 * @param <S> second object type 17 public final S second; field in class:Pair 19 protected Pair(F first, S second) { 21 this.second = second; 27 * @param second must be non-null 30 public static <F, S> Pair<F, S> of(F first, S second) { 31 if (first == null || second == null) { 34 return new Pair<F, S>(first, second); [all...] |
/external/testng/src/main/java/org/testng/internal/collections/ |
Pair.java | 11 private final B second; field in class:Pair 13 public Pair(A first, B second) { 15 this.second = second; 22 public B second() { method in class:Pair 23 return second; 31 result = prime * result + ((second == null) ? 0 : second.hashCode()); 55 if (second == null) { 56 if (other.second != null) [all...] |
/frameworks/base/core/java/android/util/ |
Pair.java | 28 public final S second; field in class:Pair 34 * @param second the second object in the pair 36 public Pair(F first, S second) { 38 this.second = second; 55 return Objects.equals(p.first, first) && Objects.equals(p.second, second); 65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode()) [all...] |
/external/droiddriver/src/io/appium/droiddriver/finders/ |
ChainFinder.java | 24 * first Finder as context for the second Finder. It is conceptually similar to 27 * second(first(context)). 29 * Note typically first Finder finds the ancestor, then second Finder finds the 35 private final Finder second; field in class:ChainFinder 37 protected ChainFinder(Finder first, Finder second) { 39 this.second = Preconditions.checkNotNull(second); 44 return String.format("Chain{%s, %s}", first, second); 49 return second.find(first.find(context));
|
/frameworks/av/media/img_utils/include/img_utils/ |
Pair.h | 32 S second; member in class:android::img_utils::Pair 36 Pair(const Pair& o) : first(o.first), second(o.second) {} 38 Pair(const F& f, const S& s) : first(f), second(s) {}
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/ |
ChromosomePair.java | 29 /** the second chromosome in the pair. */ 30 private final Chromosome second; field in class:ChromosomePair 36 * @param c2 the second chromosome. 41 second = c2; 54 * Access the second chromosome. 56 * @return the second chromosome. 59 return second;
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/ |
arrow.pass.cpp | 24 assert(p->second == 4); 26 p->second = 6; 28 assert(p->second == 6);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/ |
arrow.pass.cpp | 24 assert(p->second == 4); 26 p->second = 6; 28 assert(p->second == 6);
|
/ndk/tests/device/multi-static-instances/jni/ |
main.cpp | 16 A* second = A::instance(); local 18 if (first != second) { 19 fprintf(stderr, "ERROR: instance() returned two distinct addresses: %p %p\n", first, second);
|
/external/llvm/test/MC/AsmParser/ |
macros-argument-parsing.s | 11 .macro double first = -1, second = -1 14 .long \second 34 double 5, second = 6 42 double second = 8 46 double second = 9, first = 10 50 double second + 11 51 # CHECK: .long second+11 54 double , second + 12 56 # CHECK: .long second+12 58 double second [all...] |
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
erase_key.pass.cpp | 44 assert(m.begin()->second == 1.5); 46 assert(next(m.begin())->second == 2.5); 48 assert(next(m.begin(), 2)->second == 3.5); 50 assert(next(m.begin(), 3)->second == 4.5); 52 assert(next(m.begin(), 4)->second == 5.5); 54 assert(next(m.begin(), 5)->second == 6.5); 56 assert(next(m.begin(), 6)->second == 7.5); 58 assert(next(m.begin(), 7)->second == 8.5); 64 assert(m.begin()->second == 1.5); 66 assert(next(m.begin())->second == 2.5) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/ |
erase_key.pass.cpp | 44 assert(m.begin()->second == 1.5); 46 assert(next(m.begin())->second == 2.5); 48 assert(next(m.begin(), 2)->second == 3.5); 50 assert(next(m.begin(), 3)->second == 4.5); 52 assert(next(m.begin(), 4)->second == 5.5); 54 assert(next(m.begin(), 5)->second == 6.5); 56 assert(next(m.begin(), 6)->second == 7.5); 58 assert(next(m.begin(), 7)->second == 8.5); 64 assert(m.begin()->second == 1.5); 66 assert(next(m.begin())->second == 2.5) [all...] |
/art/runtime/interpreter/mterp/x86_64/ |
bindiv.S | 1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"} 10 GET_WIDE_VREG $second, %rcx # ecx <- vCC 13 GET_VREG $second, %rcx # ecx <- vCC 15 test${suffix} $second, $second 17 cmp${suffix} $$-1, $second 20 idiv${suffix} $second
|