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

1 2 3 4 5 6 7 8 9

  /external/oprofile/pp/
common_option.h 33 std::list<std::string> second; member in struct:options::spec
  /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;
ArrayUtils.java 42 * @param secondArray The second array, which will be sorted based on the values in the first array
44 * @param <B> the type of element in the second array
55 public B second; field in class:ArrayUtils.element
68 secondArray[i] = elements[i].second;
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/animation/
AnimationPair.java 27 private final Animation second; field in class:AnimationPair
29 AnimationPair(Animation first, Animation second) {
31 this.second = second;
38 public Animation second() { method in class:AnimationPair
39 return second;
  /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);
  /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/chromium/chrome/browser/
browser_commands_unittest.cc 28 // Select the second tab.
35 // Navigate to the second tab using the next accelerators.
130 // Select the second tab and make it go forward in a new background tab.
148 TabContents* second = browser()->GetTabContentsAt(2); local
149 EXPECT_EQ(url2, second->GetURL());
150 EXPECT_TRUE(second->controller().CanGoBack());
151 EXPECT_FALSE(second->controller().CanGoForward());
157 CommitPendingLoad(&second->controller());
  /external/clang/test/SemaCXX/
non-empty-class-size-zero.cpp 15 int second; member in struct:Y
  /external/v8/test/mjsunit/regress/
regress-931.js 36 function second() { sequence += "2"; return "f"; } function
40 var result = (first()[second()](third(), fourth()))
  /frameworks/base/core/java/android/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 first.equals(other.first) && second.equals(other.second);
63 result = 31 * result + second.hashCode();
70 * @param b the second object in the pai
    [all...]
  /bionic/libstdc++/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /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);
  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 31 struct { unsigned int first; unsigned int second; } UIntPairVal; member in struct:llvm::GenericValue::__anon8716::__anon8717
  /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) { }
  /frameworks/av/media/mtp/
MtpUtils.cpp 33 second (00-59). The ".s" is optional, and represents tenths of a second.
37 int year, month, day, hour, minute, second; local
41 &year, &month, &day, &hour, &minute, &second) != 6)
44 // skip optional tenth of second
54 tm.tm_sec = second;
  /ndk/sources/cxx-stl/gabi++/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /ndk/sources/cxx-stl/system/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/system/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/system/include/
stl_pair.h 69 _T2 second; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
87 (!(__y.first < __x.first) && __x.second < __y.second);

Completed in 1809 milliseconds

1 2 3 4 5 6 7 8 9