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

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Pair.java 33 public final B second; field in class:Pair
35 public Pair(A first, B second) {
37 this.second = second;
  /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 int nativeCreate(int first, int second);
  /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
  /system/extras/tests/bionic/libc/bionic/
lib_relocs.c 6 struct foo { int first, second; }; member in struct:foo
9 int* FooPtr[] = { &Foo.first, &Foo.second };
  /external/valgrind/main/memcheck/tests/
clireq_nofill.stdout.exp 3 *s=0x5 after second MEMPOOL_ALLOC
6 *s=0x5 after second MALLOCLIKE_BLOCK
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 44 private int second; field in class:Kerning
48 return second;
51 public void setSecond(int second) {
52 this.second = second;
65 oc.write(second, "second", 0);
71 second = ic.readInt("second", 0);
  /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.equal(p.first, first) && Objects.equal(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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/webkit/Source/WebCore/css/
Pair.h 40 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
42 return adoptRef(new Pair(first, second));
47 CSSPrimitiveValue* second() const { return m_second.get(); } function in class:WebCore::Pair
50 void setSecond(PassRefPtr<CSSPrimitiveValue> second) { m_second = second; }
54 Pair(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
55 : m_first(first), m_second(second) { }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
iterator.h 61 iterator_pair(const Iterator1& first, const Iterator2& second)
62 : base_type(first, second) { }
69 ++base_type::second; member in class:__gnu_parallel::iterator_pair::base_type
76 { return type(base_type::first++, base_type::second++); }
83 --base_type::second;
90 { return type(base_type::first--, base_type::second--); }
94 { return base_type::second; }
100 base_type::second = other.second; member in class:__gnu_parallel::iterator_pair::base_type
106 { return type(base_type::first + delta, base_type::second + delta);
134 Iterator2 second; member in class:__gnu_parallel::iterator_triple
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.map/unorder.map.modifiers/
emplace.pass.cpp 32 assert(r.second);
35 assert(r.first->second == Emplaceable());
38 assert(r.second);
41 assert(r.first->second == Emplaceable(5, 6));
45 assert(r.second);
48 assert(r.first->second == Emplaceable(6, 7));
insert_rvalue.pass.cpp 33 assert(r.second);
36 assert(r.first->second == 3);
39 assert(!r.second);
42 assert(r.first->second == 3);
45 assert(r.second);
48 assert(r.first->second == 4);
51 assert(r.second);
54 assert(r.first->second == 4);
63 assert(r.second);
66 assert(r.first->second == 3)
    [all...]
insert_const_lvalue.pass.cpp 29 assert(r.second);
32 assert(r.first->second == 3);
35 assert(!r.second);
38 assert(r.first->second == 3);
41 assert(r.second);
44 assert(r.first->second == 4);
47 assert(r.second);
50 assert(r.first->second == 4);
  /external/clang/test/Index/
code-completion.cpp 27 float& overloaded(int i, long second);
28 double& overloaded(float f, int second);
29 int& overloaded(Z z, int second);
61 // CHECK-OVERLOAD: NotImplemented:{ResultType int &}{Text overloaded}{LeftParen (}{Text Z z}{Comma , }{CurrentParameter int second}{RightParen )}
62 // CHECK-OVERLOAD: NotImplemented:{ResultType float &}{Text overloaded}{LeftParen (}{Text int i}{Comma , }{CurrentParameter long second}{RightParen )}
63 // CHECK-OVERLOAD: NotImplemented:{ResultType double &}{Text overloaded}{LeftParen (}{Text float f}{Comma , }{CurrentParameter int second}{RightParen )}
complete-macros.c 21 #define variadic4(first, second, args, ...)
22 #define variadic5(first, second, args ...)
43 // CHECK-VARIADIC: macro definition:{TypedText variadic4}{LeftParen (}{Placeholder first}{Comma , }{Placeholder second}{Comma , }{Placeholder args, ...}{RightParen )} (70)
44 // CHECK-VARIADIC: macro definition:{TypedText variadic5}{LeftParen (}{Placeholder first}{Comma , }{Placeholder second}{Comma , }{Placeholder args...}{RightParen )} (70)
  /external/clang/test/SemaCXX/
non-empty-class-size-zero.cpp 15 int second; member in struct:Y
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.modifiers/
erase_key.pass.cpp 42 assert(m.begin()->second == 1.5);
44 assert(next(m.begin())->second == 2.5);
46 assert(next(m.begin(), 2)->second == 3.5);
48 assert(next(m.begin(), 3)->second == 4.5);
50 assert(next(m.begin(), 4)->second == 5.5);
52 assert(next(m.begin(), 5)->second == 6.5);
54 assert(next(m.begin(), 6)->second == 7.5);
56 assert(next(m.begin(), 7)->second == 8.5);
62 assert(m.begin()->second == 1.5);
64 assert(next(m.begin())->second == 2.5)
    [all...]
insert_cv.pass.cpp 26 assert(r.second);
30 assert(r.first->second == 2.5);
33 assert(r.second);
37 assert(r.first->second == 1.5);
40 assert(r.second);
44 assert(r.first->second == 3.5);
47 assert(!r.second);
51 assert(r.first->second == 3.5);
insert_rv.pass.cpp 30 assert(r.second);
34 assert(r.first->second == 2);
37 assert(r.second);
41 assert(r.first->second == 1);
44 assert(r.second);
48 assert(r.first->second == 3);
51 assert(!r.second);
55 assert(r.first->second == 3);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.modifiers/
insert_iter_iter.pass.cpp 43 assert(m.begin()->second == 1);
45 assert(next(m.begin())->second == 1.5);
47 assert(next(m.begin(), 2)->second == 2);
49 assert(next(m.begin(), 3)->second == 1);
51 assert(next(m.begin(), 4)->second == 1.5);
53 assert(next(m.begin(), 5)->second == 2);
55 assert(next(m.begin(), 6)->second == 1);
57 assert(next(m.begin(), 7)->second == 1.5);
59 assert(next(m.begin(), 8)->second == 2);
erase_key.pass.cpp 43 assert(next(m.begin(), 0)->second == 1);
45 assert(next(m.begin(), 1)->second == 1.5);
47 assert(next(m.begin(), 2)->second == 2);
49 assert(next(m.begin(), 3)->second == 1);
51 assert(next(m.begin(), 4)->second == 1.5);
53 assert(next(m.begin(), 5)->second == 2);
59 assert(next(m.begin(), 0)->second == 1);
61 assert(next(m.begin(), 1)->second == 1.5);
63 assert(next(m.begin(), 2)->second == 2);
65 assert(next(m.begin(), 3)->second == 1)
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
localisglobal.c 21 int aresame(void *first, void *second) {
23 long *s = (long *)second;
  /external/llvm/unittests/ADT/
MapVectorTest.cpp 23 EXPECT_EQ(R.first->second, 2);
24 EXPECT_TRUE(R.second);
29 EXPECT_EQ(R.first->second, 2);
30 EXPECT_FALSE(R.second);
35 EXPECT_EQ(R.first->second, 5);
36 EXPECT_TRUE(R.second);
49 EXPECT_EQ(R.first->second, 7);
50 EXPECT_TRUE(R.second);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/utility/pairs/pairs.pair/
swap.pass.cpp 27 assert(p1.second == 6);
29 assert(p2.second == 4);

Completed in 1437 milliseconds

1 2 3 4 5 6 7 8 91011>>