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

1 23 4 5 6 7 8 91011>>

  /tools/tradefederation/core/prod-tests/src/com/android/ota/tests/
OtaStabilityTestTest.java 74 IRemoteTest second = iterator.next(); local
75 assertEquals(3, ((OtaStabilityTest)second).getIterations());
  /tools/tradefederation/core/src/com/android/tradefed/util/
Pair.java 25 public final B second; field in class:Pair
27 public Pair(A first, B second) {
29 this.second = second;
53 if (this.second == null) {
54 if (pair.second != null) {
57 } else if (!this.second.equals(pair.second)) {
68 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
ContentObservableTest.java 60 MyContentObserver second = new MyContentObserver(); local
61 mContentObservable.registerObserver(second);
68 assertTrue(second.hasChanged());
  /build/kati/
rule.cc 141 StringPiece second = rest.substr(0, index); local
144 for (StringPiece tok : WordScanner(second)) {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
NanoTimeGranularityTester.java 39 long second = System.nanoTime(); local
47 total += second - first;
48 total += third - second;
  /external/guava/guava-tests/test/com/google/common/escape/
EscapersTest.java 79 Escaper second = builder.build(); local
85 assertEquals("Xhe-Xuick-Xrown-Xox$", second.escape("The Quick Brown Fox!"));
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
NodeComparator.java 44 * Creates a new composite comparator with a second search criterion.
46 * @param second
47 * second criterion comparator
51 public NodeComparator second(final Comparator<ICoverageNode> second) { method in class:NodeComparator
60 return result == 0 ? second.compare(o1, o2) : result;
  /external/libchrome/base/profiler/
tracked_time_unittest.cc 42 Duration second = Duration::FromMilliseconds(kSecondMilliseconds); local
45 EXPECT_EQ(kSecondMilliseconds, second.InMilliseconds());
47 Duration sum = first + second;
  /external/mockito/src/test/java/org/mockitousage/stacktrace/
PointingStackTraceToActualInvocationInOrderTest.java 35 second(); method
43 private void second() { method in class:PointingStackTraceToActualInvocationInOrderTest
87 assertThat(e).hasMessageContaining("second(");
109 assertThat(e).hasMessageContaining("second(");
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementPolicy.java 80 join(jep.second);
121 final ElementPolicy first, second; field in class:JoinedElementPolicy
123 JoinedElementPolicy(ElementPolicy first, ElementPolicy second) {
125 this.second = second;
130 return elementName != null ? second.apply(elementName, attrs) : null;
  /external/testng/src/test/java/test/jarpackages/
JarPackagesTest.java 33 String second = tla.getPassedTests().get(1).getName(); local
34 boolean fThenG = "f".equals(first) && "g".equals(second);
35 boolean gThenF = "g".equals(first) && "f".equals(second);
44 String second = tla.getPassedTests().get(1).getName(); local
45 boolean fThenG = "f".equals(first) && "g".equals(second);
46 boolean gThenF = "g".equals(first) && "f".equals(second);
  /external/v8/src/
dateparser.cc 74 int& second = comp_[2]; local
84 !IsSecond(second) || !IsMillisecond(millisecond)) {
86 if (hour != 24 || minute != 0 || second != 0 || millisecond != 0) {
93 output->set(SECOND, Smi::FromInt(second));
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemRequestRectAboveThinFirstItemTest.java 53 // having the second item call requestRectangleOnScreen with a rect above
61 final View second = mListView.getChildAt(1); local
63 second.getDrawingRect(rect);
64 rect.offset(0, -2 * second.getBottom());
  /libcore/luni/src/test/java/libcore/java/time/
DurationTest.java 139 Duration second = Duration.ofSeconds(1); local
146 second.addTo(temporal);
151 second.subtractFrom(temporal);
  /system/core/logcat/tests/
logcat_benchmark.cpp 41 int second; member in class:timestamp
50 &minute, &second, &millisecond) == 6;
67 ((second < T.second) ||
68 ((second == T.second) &&
  /system/tools/aidl/tests/
aidl_test_client_parcelables.cpp 60 SimpleParcelable("second", 1),
125 PersistableBundle second; local
128 second.putLong(String16("test_long"), 222222l);
130 const vector<PersistableBundle> original{first, second, third};
  /cts/hostsidetests/services/activityandwindowmanager/activitymanager/appSecondUid/src/android/server/cts/second/
LaunchBroadcastReceiver.java 17 package android.server.cts.second;
  /cts/tests/tests/graphics/src/android/graphics/cts/
SumPathEffectTest.java 64 PathEffect second = new DashPathEffect(new float[] { 10, 5 }, 5); local
65 paint.setPathEffect(second);
68 SumPathEffect sumPathEffect = new SumPathEffect(second, first);
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 143 String second = WORDS_TO_REPLACE[i * 2 + 1]; local
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
  /developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ElizaResponder.java 143 String second = WORDS_TO_REPLACE[i * 2 + 1]; local
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
  /development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
ElizaResponder.java 143 String second = WORDS_TO_REPLACE[i * 2 + 1]; local
146 parts[j] = second;
147 } else if (parts[j].equals(second)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_generators.py 1188 def second(): function in function:Knights.__init__
    [all...]
  /external/clang/test/Index/
index-templates.cpp 78 U second; member in struct:Pair
  /external/clang/test/SemaCXX/
typo-correction-cxx11.cpp 43 A *second; member in struct:NewTypoExprFromResolvingTypoAmbiguity::pair
57 auto &new_anotation = new_it.second; // expected-note {{'new_anotation' declared here}}
  /external/libchrome/base/time/
time_mac.cc 116 // Core Foundation uses a double second count since 2001-01-01 00:00:00 UTC.
184 exploded.day_of_month, exploded.hour, exploded.minute, exploded.second,
228 int second, day_of_week; local
235 &exploded->minute, &second, &day_of_week);
237 exploded->second = floor(second);

Completed in 815 milliseconds

1 23 4 5 6 7 8 91011>>