HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 76 - 100 of 1665) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 288 /* Use zeros in the second half of each attribute pair to try and trick the
291 * Use non-zero in the second half of the last attribute pair to try and
390 GLXContext second = local
394 ASSERT_NE((GLXContext) 0, second);
397 struct glx_context *ctx = (struct glx_context *) second;
  /external/skia/src/core/
SkRecordPattern.h 108 // - first, second, third, ... return the data stored by their respective matchers in the pattern.
142 template <typename T> T* second() { return fRest.template first<T>(); } function in class:SkRecords::Pattern
143 template <typename T> T* third() { return fRest.template second<T>(); }
  /external/skia/src/pathops/
SkPathOpsQuad.h 17 const SkDQuad& second() const { return (const SkDQuad&) pts[2]; } function in struct:SkDQuadPair
  /external/v8/src/regexp/
regexp-utils.cc 162 const uint16_t second = string->Get(index + 1); local
163 if (second >= 0xDC00 && second <= 0xDFFF) {
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 31 SkPathEffect* second = reinterpret_cast<SkPathEffect*>(secondHandle); local
33 sk_ref_sp(second)).release();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DuotoneFilter.java 47 "uniform vec3 second;\n" +
52 " vec3 new_color = (1.0 - energy) * first + energy * second;\n" +
115 float second[] = { Color.red(mSecondColor)/255f, local
120 mProgram.setHostValue("second", second);
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
BugreportProgressServiceTest.java 110 assertEquals(account(expectedEmail), actual.second);
  /frameworks/support/compat/ics/android/support/v4/graphics/
PaintCompatApi14.java 84 paint.getTextBounds(string, 0, length, rects.second);
85 return !rects.first.equals(rects.second);
95 rects.second.setEmpty();
  /libcore/ojluni/src/main/java/java/sql/
Time.java 42 * given values for the hour, minute, and second.
52 * @param second 0 to 59
58 public Time(int hour, int minute, int second) {
59 super(70, 0, 1, hour, minute, second);
93 int second; local
106 second = Integer.parseInt(s.substring(secondColon+1));
111 return new Time(hour, minute, second);
122 int second = super.getSeconds(); local
137 if (second < 10) {
138 secondString = "0" + second;
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapUtility.java 104 int second = Integer.parseInt(range.substring(colonPos + 1)); local
105 if (first < second) {
106 for (int i = first; i <= second; i++) {
110 for (int i = first; i >= second; i--) {
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapUtility.java 108 int second = Integer.parseInt(range.substring(colonPos + 1)); local
109 if (first < second) {
110 for (int i = first; i <= second; i++) {
114 for (int i = first; i >= second; i--) {
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
CSite.h 29 short second; member in struct:__anon44468
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/utils/
PreferenceListCacheTest.java 70 Preference second = createPreference("second"); local
72 Preference[] preferences = new Preference[] {first, second, third};
77 assertEquals(second, mCache.getCachedPreference("second"));
87 Preference second = createPreference("second"); local
89 Preference[] preferences = new Preference[] {first, second, third};
94 assertEquals(second, mCache.getCachedPreference("second"));
105 Preference second = createPreference("second"); local
123 Preference second = createPreference("first"); local
    [all...]
  /packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
FetchDownloadsLoaderTest.java 85 File second = temporaryFolder.newFile(); local
86 fileWriter = new FileWriter(second);
89 second.setLastModified(0);
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
ViewModeTests.java 39 ViewMode second = new ViewMode(); local
40 second.handleRestore(state);
41 assertEquals(ViewMode.CONVERSATION_LIST, second.getMode());
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object member in struct:pair
106 /** The default constructor creates @c first and @c second using their
109 : first(), second() { }
113 : first(__a), second(__b) { }
119 : first(__p.first), second(__p.second) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object member in struct:pair
106 /** The default constructor creates @c first and @c second using their
109 : first(), second() { }
113 : first(__a), second(__b) { }
119 : first(__p.first), second(__p.second) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object member in struct:pair
106 /** The default constructor creates @c first and @c second using their
109 : first(), second() { }
113 : first(__a), second(__b) { }
119 : first(__p.first), second(__p.second) { }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_generators.py 1188 # Generate the second moves.
1189 def second(): function in function:Knights.__init__
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_generators.py 1188 # Generate the second moves.
1189 def second(): function in function:Knights.__init__
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_pair.h 93 * @tparam _T2 Type of second object.
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object member in struct:pair
106 /** The default constructor creates @c first and @c second using their
109 : first(), second() { }
113 : first(__a), second(__b) { }
119 : first(__p.first), second(__p.second) { }
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
iterator.h 69 ++_Base::second; member in class:__gnu_parallel::_IteratorPair::_Base
76 { return _IteratorPair(_Base::first++, _Base::second++); }
83 --_Base::second;
90 { return _IteratorPair(_Base::first--, _Base::second--); }
94 { return _Base::second; }
100 _Base::second = __other.second; member in class:__gnu_parallel::_IteratorPair::_Base
106 { return _IteratorPair(_Base::first + __delta, _Base::second + __delta);

Completed in 853 milliseconds

1 2 34 5 6 7 8 91011>>