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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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);
  /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 };
  /art/runtime/
class_reference.h 31 if (lhs.second < rhs.second) {
33 } else if (lhs.second > rhs.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/droiddriver/src/com/google/android/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/chromium_org/mojo/public/java/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/lldb/test/functionalities/data-formatter/rdar-10449092/
main.cpp 15 int second; member in struct:foo
22 mine.second = 0xFF00FF00;
  /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...]
  /frameworks/support/v4/java/android/support/v4/util/
Pair.java 26 public final S second; field in class:Pair
32 * @param second the second object in the pair
34 public Pair(F first, S second) {
36 this.second = second;
53 return objectsEqual(p.first, first) && objectsEqual(p.second, second);
67 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
test_utils.h 15 const FeatureMap& second);
test_utils.cc 16 const FeatureMap& second) {
19 std::map<std::string, double> sorted_second(second.features().begin(),
20 second.features().end());
  /external/lldb/test/functionalities/data-formatter/rdar-9973992/
main.cpp 14 int second; member in struct:Summarize
25 summarize_t second; member in struct:TwoSummarizes
36 printf ("Summarize: first: %d second: %d and address: 0x%p\n", mine.first, mine.second, mine_ptr); // Set break point at this line.
37 printf ("Global summarize: first: %d second: %d.\n", global_mine.first, global_mine.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/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);
  /external/lldb/test/functionalities/data-formatter/rdar-9973865/
main.cpp 14 int second; member in struct:Summarize
27 printf ("Summarize: first: %d second: %d and address: 0x%p\n", mine.first, mine.second, mine_ptr); // Set break point at this line.
28 printf ("Global summarize: first: %d second: %d.\n", global_mine.first, global_mine.second);
  /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/chromium_org/third_party/WebKit/Source/core/css/
Pair.h 39 static PassRefPtrWillBeRawPtr<Pair> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> first, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> second,
42 return adoptRefWillBeNoop(new Pair(first, second, identicalValuesPolicy));
46 CSSPrimitiveValue* second() const { return m_second.get(); } function in class:WebCore::FINAL
50 void setSecond(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> second) { m_second = second; }
55 return generateCSSString(first()->cssText(), second()->cssText(), m_identicalValuesPolicy);
73 Pair(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> first, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> second, IdenticalValuesPolicy identicalValuesPolicy)
75 , m_second(second)
78 static String generateCSSString(const String& first, const String& second, IdenticalValuesPolicy identicalValuesPolicy)
80 if (identicalValuesPolicy == DropIdenticalValues && first == second)
    [all...]
  /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/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...]
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util_unittest.cc 34 EXPECT_FALSE(foo_iter->second.wildcard);
35 EXPECT_FALSE(foo_iter->second.exception);
36 EXPECT_FALSE(foo_iter->second.is_private);
39 EXPECT_FALSE(bar_iter->second.wildcard);
40 EXPECT_FALSE(bar_iter->second.exception);
41 EXPECT_FALSE(bar_iter->second.is_private);
54 EXPECT_FALSE(foo_bar_iter->second.wildcard);
55 EXPECT_FALSE(foo_bar_iter->second.exception);
56 EXPECT_FALSE(foo_bar_iter->second.is_private);
59 EXPECT_FALSE(bar_iter->second.wildcard)
    [all...]
  /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 )}

Completed in 6300 milliseconds

1 2 3 4 5 6 7 8 91011>>