HomeSort by relevance Sort by last modified time
    Searched refs:second (Results 1 - 25 of 6113) 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-multidex/
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
  /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/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...]
  /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...]
  /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/libchrome/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());
  /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/icu/android_icu4j/src/main/java/android/icu/number/
LocalizedNumberRangeFormatter.java 31 * @param second
32 * The second number in the range, usually to the right in LTR locales.
37 public FormattedNumberRange formatRange(int first, int second) {
39 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second);
40 return formatImpl(dq1, dq2, first == second);
49 * @param second
50 * The second number in the range, usually to the right in LTR locales.
55 public FormattedNumberRange formatRange(double first, double second) {
57 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second);
60 return formatImpl(dq1, dq2, first == second);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
LocalizedNumberRangeFormatter.java 30 * @param second
31 * The second number in the range, usually to the right in LTR locales.
37 public FormattedNumberRange formatRange(int first, int second) {
39 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second);
40 return formatImpl(dq1, dq2, first == second);
49 * @param second
50 * The second number in the range, usually to the right in LTR locales.
56 public FormattedNumberRange formatRange(double first, double second) {
58 DecimalQuantity dq2 = new DecimalQuantity_DualStorageBCD(second);
61 return formatImpl(dq1, dq2, first == second);
    [all...]
  /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);
  /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/swiftshader/third_party/llvm-7.0/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...]
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
insert_rvalue.pass.cpp 36 assert(r.second);
39 assert(r.first->second == 3);
42 assert(!r.second);
45 assert(r.first->second == 3);
48 assert(r.second);
51 assert(r.first->second == 4);
54 assert(r.second);
57 assert(r.first->second == 4);
65 assert(r.second);
68 assert(r.first->second == 3)
    [all...]
  /external/libevent/sample/
hostcheck.c 123 static int Curl_raw_equal(const char *first, const char *second)
125 while(*first && *second) {
126 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second))
130 second++;
135 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second));
138 static int Curl_raw_nequal(const char *first, const char *second, size_t max)
140 while(*first && *second && max) {
141 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) {
146 second++;
151 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second);
    [all...]

Completed in 2290 milliseconds

1 2 3 4 5 6 7 8 91011>>