HomeSort by relevance Sort by last modified time
    Searched defs:second (Results 301 - 325 of 1918) sorted by null

<<11121314151617181920>>

  /development/tools/bugreport/src/com/android/bugreport/inspector/
Inspector.java 366 final char second = className.charAt(1); local
368 if (first == 'I' && Character.isUpperCase(second)) {
793 begin.add(Calendar.SECOND, -seconds);
838 end.add(Calendar.SECOND, 3);
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 4 template < class _T1, class _T2 > struct pair { _T2 second; }; member in struct:std::pair
70 return ((const actualtype *) this)->second;
74 const char *p = ((const actualtype *) this)->second - 2;
214 // CHECK-tokens: Identifier: "second" [4:55 - 4:61] FieldDecl=second:4:55 (Definition)
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
DefaultMethodClassFixer.java 148 AbstractInsnNode second = iterator.next(); local
149 if (second.getOpcode() != Opcodes.POP) {
  /external/guice/core/test/com/google/inject/
TypeConversionTest.java 396 Date second = injector.getInstance(Key.get(Date.class, NumericValue.class)); local
397 assertSame(first, second);
  /external/icu/icu4c/source/test/intltest/
measfmttest.cpp 1997 Measure second[] = { local
    [all...]
  /external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
CoreImpl.java 111 HANDLE_SIZE * handles.size() + FLAG_SIZE * index, handle.second.getFlags());
166 new MessagePipeHandleImpl(this, result.getValue().second));
188 new DataPipeConsumerHandleImpl(this, result.getValue().second));
501 public IntegerPair(Integer first, Integer second) {
502 super(first, second);
  /external/libtextclassifier/
types.h 42 // the first codepoint of the span, and the second element is the index of the
48 return a.first < b.second && b.first < a.second;
52 return span.first < span.second && span.first >= 0 && span.second >= 0;
88 // first token in the span, and the second element is the index of the token one
95 return token_span.second - token_span.first;
108 std::min(token_span1.second, token_span2.second)};
116 token_span.second + num_tokens_right}
378 int second; member in struct:libtextclassifier2::DateParseData
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPendingIntentTest.java 149 Intent[] intents = {new Intent("first"), new Intent("second")};
164 Intent second = shadowActivity.getNextStartedActivity(); local
165 assertThat(second).isNotNull();
166 assertThat(second).isSameAs(intents[1]);
167 assertThat(second.getIntExtra("TEST", -1)).isEqualTo(23);
  /external/v8/src/
feedback-vector.cc 788 Object* second = array->get(1); local
789 if (second->IsWeakCell() || second->IsUndefined(isolate)) return 3;
790 DCHECK(IC::IsHandler(second));
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.h 396 unsigned second; /*0-60 (to allow for leap seconds)*/ member in struct:LodePNGTime
688 Second byte: uppercase = public, lowercase = private
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/job/
JobStoreTest.java 395 final JobStatus second = jobStatusSet.getAllJobs().iterator().next(); local
396 assertTasksEqual(first, second.getJob());
402 private void assertTasksEqual(JobInfo first, JobInfo second) {
403 assertEquals("Different task ids.", first.getId(), second.getId());
404 assertEquals("Different components.", first.getService(), second.getService());
405 assertEquals("Different periodic status.", first.isPeriodic(), second.isPeriodic());
406 assertEquals("Different period.", first.getIntervalMillis(), second.getIntervalMillis());
408 second.getInitialBackoffMillis());
410 second.getBackoffPolicy());
413 second.isRequireCharging())
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowStateTests.java 246 final WindowState second = createWindow(null, TYPE_APPLICATION, appWindowToken, "second"); local
247 second.mAttrs.flags |= WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
255 second.prepareWindowToDisplayDuringRelayout(false /*wasVisible*/);
263 second.mAttrs.flags |= WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON;
271 second.prepareWindowToDisplayDuringRelayout(false /*wasVisible*/);
  /frameworks/base/tests/net/java/android/net/
NetworkStatsTest.java 399 final NetworkStats second = new NetworkStats(TEST_START, 2) local
407 first.combineAllValues(second);
    [all...]
  /frameworks/support/legacy/core-ui/src/main/java/androidx/legacy/app/
ActionBarDrawerToggle.java 533 final View second = parent.getChildAt(1); local
534 final View up = first.getId() == android.R.id.home ? second : first;
  /libcore/luni/src/main/java/libcore/icu/
ICU.java 80 final int second = string.indexOf('_', first + 1); local
81 final int third = string.indexOf('_', second + 1);
85 } else if (second == -1) {
100 // If we're here, the length of the second half is either 1 or greater
112 final String secondString = string.substring(first + 1, second);
113 final String thirdString = string.substring(second + 1);
116 // The second subtag is a script.
129 // The second string is a region, and the third a variant.
142 final String secondString = string.substring(first + 1, second);
145 outputArray[IDX_REGION] = string.substring(second + 1, third)
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 453 // one second after what we need.
713 private int second; field in class:ZoneInfo.WallTime
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Long.java 79 * radix specified by the second argument.
149 * unsigned integer value in the radix specified by the second
494 * radix specified by the second argument. The characters in the
641 * radix specified by the second argument. An unsigned integer
703 int second = Character.digit(s.charAt(len - 1), radix); local
704 if (second < 0) {
707 long result = first * radix + second;
757 * with the radix given by the second argument. The first
759 * {@code long} in the radix specified by the second
    [all...]
  /libcore/ojluni/src/main/java/java/time/
LocalTime.java 101 * often viewed as hour-minute-second.
187 * Nanos per second.
217 * The second.
219 private final byte second; field in class:LocalTime
282 * The second and nanosecond fields will be set to zero.
299 * Obtains an instance of {@code LocalTime} from an hour, minute and second.
301 * This returns a {@code LocalTime} with the specified hour, minute and second.
306 * @param second the second-of-minute to represent, from 0 to 59
310 public static LocalTime of(int hour, int minute, int second) {
1667 int second = 0; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 278 int second = t.second; local
282 t.second = second;
299 // we may need to take the second visible position, since the first one maybe the one
  /prebuilts/sdk/28/optional/
android.test.runner.jar 
  /prebuilts/sdk/current/optional/
android.test.runner.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 258 String second = children.get(1).getName(); local
259 if ((first.equals(FQCN_IMAGE_VIEW) && second.equals(FQCN_TEXT_VIEW))
260 || (first.equals(FQCN_TEXT_VIEW) && second.equals(FQCN_IMAGE_VIEW))) {
  /system/libfmq/include/fmq/
MessageQueue.h 283 first(regionFirst), second(regionSecond) {}
287 second = other.second;
342 * Returns a const reference to the second MemRegion in the
345 inline const MemRegion& getSecondRegion() const { return second; }
352 * and second MemRegions and the base addresses to be used for
365 MemRegion second; member in struct:android::hardware::MessageQueue::MemTransaction
460 size_t secondRegionLength = second.getLength();
470 return second.getAddress() + idx - firstRegionLength;
481 size_t secondRegionLength = second.getLength()
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
PlaybackFragment.java 637 * if first animator is still running, reverse it; otherwise start second animator.
639 static void reverseFirstOrStartSecond(ValueAnimator first, ValueAnimator second,
647 second.start();
649 second.end();
655 * End first or second animator if they are still running.
657 static void endAll(ValueAnimator first, ValueAnimator second) {
660 } else if (second.isStarted()) {
661 second.end();
    [all...]
PlaybackSupportFragment.java 630 * if first animator is still running, reverse it; otherwise start second animator.
632 static void reverseFirstOrStartSecond(ValueAnimator first, ValueAnimator second,
640 second.start();
642 second.end();
648 * End first or second animator if they are still running.
650 static void endAll(ValueAnimator first, ValueAnimator second) {
653 } else if (second.isStarted()) {
654 second.end();
    [all...]

Completed in 725 milliseconds

<<11121314151617181920>>