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

1 2 3 4 5 6 7 8 91011>>

  /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/mesa3d/src/compiler/glsl/glcpp/tests/
118-comment-becomes-space.c 2 */second
  /frameworks/base/core/java/com/android/internal/util/
IntPair.java 27 public static long of(int first, int second) {
28 return (((long)first) << 32) | ((long)second & 0xffffffffL);
35 public static int second(long intPair) { method in class:IntPair
  /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/626-const-class-linking/src/
ClassPair.java 19 public Class<?> second; field in class:ClassPair
21 public ClassPair(Class<?> first, Class<?> second) {
23 this.second = second;
29 String second_loader_name = second.getClassLoader().getClass().getName();
30 System.out.println("second: " + second.getName() + " class loader: " + second_loader_name);
  /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
  /external/curl/lib/
strcase.c 109 int Curl_strcasecompare(const char *first, const char *second)
111 while(*first && *second) {
112 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second))
116 second++;
121 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second));
124 int Curl_safe_strcasecompare(const char *first, const char *second)
126 if(first && second)
128 return Curl_strcasecompare(first, second);
131 return (NULL == first && NULL == second);
137 int Curl_strncasecompare(const char *first, const char *second, size_t max
    [all...]
  /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 13 * A pair of objects: first and second.
16 * @param <S> second object type
21 public final S second; field in class:Pair
23 protected Pair(F first, S second) {
25 this.second = second;
31 * @param second must be non-null
34 public static <F, S> Pair<F, S> of(F first, S second) {
35 if (first == null || second == null) {
38 return new Pair<F, S>(first, second);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 12 * A pair of objects: first and second.
15 * @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...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
Pair.java 25 public final B second; field in class:Pair
27 public Pair(A first, B second) {
29 this.second = second;
53 if (this.second == null) {
54 if (pair.second != null) {
57 } else if (!this.second.equals(pair.second)) {
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [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));
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
Pair.java 12 * @param <S> Type of the second element.
17 public final S second; field in class:Pair
23 * @param second the second element of the pair.
25 public Pair(F first, S second) {
27 this.second = second;
46 return equals(first, p.first) && equals(second, p.second);
54 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Pair.java 23 * @param <S> Second type.
27 public final S second; field in class:Pair
29 public Pair(F first, S second) {
31 this.second = second;
40 return equal(p.first, first) && equal(p.second, second);
45 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
  /cts/tests/framework/base/activitymanager/appSecondUid/src/android/server/am/second/
SecondActivity.java 17 package android.server.am.second;
SecondActivityNoEmbedding.java 17 package android.server.am.second;
  /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);

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>