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

1 2 3 4 5 67 8 91011>>

  /frameworks/av/media/mtp/
MtpUtils.cpp 52 second (00-59). The ".s" is optional, and represents tenths of a second.
57 int year, month, day, hour, minute, second; local
59 &year, &month, &day, &hour, &minute, &second) != 6)
62 // skip optional tenth of second
79 tm.tm_sec = second;
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryablePair.java 94 } else if (value.second == null) {
95 throw new UnsupportedOperationException("Pair#second must not be null");
99 mNestedTypeMarshalerSecond.marshal(value.second, buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer); local
108 return mConstructor.newInstance(first, second);
140 int secondSize = mNestedTypeMarshalerSecond.calculateMarshalSize(value.second);
  /frameworks/base/core/java/android/security/net/config/
ApplicationConfig.java 91 NetworkSecurityConfig config = entry.second;
109 return bestMatch.second;
133 if (!entry.second.isCleartextTrafficPermitted()) {
162 if (updatedConfigs.add(entry.second)) {
163 entry.second.handleTrustStorageUpdate();
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 77 this.second = s;
82 int second; field in class:HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10 local
223 return new TimeOfDay(hour, minute, second);
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
RecycleAccessibilityEventTest.java 77 AccessibilityEvent second = AccessibilityEvent.obtain(); local
78 assertEquals(first, second);
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsCbEtwsInfo.java 155 int second = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[5]); local
177 time.second = second;
  /frameworks/base/tools/obbtool/
Main.cpp 171 unsigned char first, second; local
173 if (!fromHex(h2, &second)) return false;
174 *b = (first << 4) | second;
  /frameworks/ex/common/java/com/android/common/
LegacyHttpDateTime.java 77 this.second = s;
82 int second; field in class:LegacyHttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10 local
223 return new TimeOfDay(hour, minute, second);
  /frameworks/minikin/include/minikin/
MeasuredText.h 152 float second; member in struct:minikin::HyphenBreak
154 HyphenBreak(uint32_t offset, HyphenationType type, float first, float second)
155 : offset(offset), type(type), first(first), second(second) {}
  /frameworks/minikin/libs/minikin/
LineBreakerUtil.h 91 U16StringPiece secondText = textBuf.substr(hyphenPart.second);
96 const float second = run.measureHyphenPiece(secondText, Range(0, secondText.size()), local
101 out->emplace_back(i, hyph, first, second);
  /frameworks/rs/
rsMap.h 13 Pair(T1 f1, T2 f2) : first(f1), second(f2) {}
16 T2 second; member in class:android::renderscript::Pair
20 Pair<T1, T2> make_pair(T1 first, T2 second) {
21 return Pair<T1, T2>(first, second);
62 return node->entry.second;
76 return node->entry.second;
  /frameworks/support/lifecycle/livedata/src/test/java/androidx/lifecycle/
TransformationsTest.java 77 final LiveData<String> second = new MutableLiveData<>(); local
85 return second;
96 second.setValue("second");
100 verify(observer).onChanged("second");
110 final LiveData<String> second = new MutableLiveData<>(); local
118 return second;
134 second.setValue("second");
138 verify(observer).onChanged("second");
    [all...]
  /frameworks/support/samples/SupportTransitionDemos/src/main/java/com/example/android/support/transition/widget/
FragmentTransitionUsage.java 53 private static final String FRAGMENT_SECOND = "second";
78 final SecondFragment second = new SecondFragment(); local
81 .replace(R.id.container, second, FRAGMENT_SECOND)
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
ActionBarDrawerToggleHoneycomb.java 130 final View second = parent.getChildAt(1); local
131 final View up = first.getId() == android.R.id.home ? second : first;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/
DateTime.java 39 private final int second; field in class:DateTime
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
49 this.second = second;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
107 return second;
  /system/extras/iotop/
iotop.cpp 97 return it->second;
174 bool second = true; local
184 std::vector<pid_t>& pid_list = tgid_it.second;
222 if (!second) {
276 second = false;
  /system/libfmq/tests/
mq_test.cpp 292 * Wait should time out in a second.
375 auto second = tx.getSecondRegion(); local
377 ASSERT_EQ(first.getLength() + second.getLength(), dataLen);
390 second = tx.getSecondRegion();
392 ASSERT_EQ(first.getLength() + second.getLength(), dataLen);
428 auto second = tx.getSecondRegion(); local
431 ASSERT_EQ(nullptr, second.getAddress());
468 auto second = tx.getSecondRegion(); local
471 ASSERT_EQ(nullptr, second.getAddress());
536 auto second = tx.getSecondRegion() local
621 auto second = tx.getSecondRegion(); local
    [all...]
msgq_test_client.cpp 193 // creating second reader process.
441 auto second = tx.getSecondRegion(); local
448 ASSERT_EQ(i, *(second.getAddress() + i - firstRegionLength));
487 auto second = tx.getSecondRegion(); local
491 uint16_t* secondBaseAddress = second.getAddress();
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 76 mHandlesToClose.add(handles.second);
200 new Pair<Handle, Core.HandleSignals>(handles.second, Core.HandleSignals.READABLE));
216 new Pair<Handle, Core.HandleSignals>(handles.second, Core.HandleSignals.READABLE));
236 assertEquals(core, handles.second.getCore());
241 assertEquals(core, handles.second.getCore());
255 handles.second.close();
316 waitResult = handles.second.wait(Core.HandleSignals.READABLE, 1000000L);
320 waitResult = handles.second.wait(Core.HandleSignals.READABLE, 0);
322 waitResult = handles.second.wait(Core.HandleSignals.WRITABLE, 0);
335 checkSendingMessage(handles.first, handles.second);
    [all...]
  /system/tools/aidl/tests/java_app/src/android/aidl/tests/
TestServiceClient.java 527 PersistableBundle second = new PersistableBundle(); local
533 second.putLong(testLongKey, 222222L);
536 input[1] = second;
    [all...]
  /art/runtime/mirror/
dex_cache.h 458 ConversionPair(IntType f, IntType s) : first(f), second(s) { }
462 IntType second; variable
490 uint64_t first, second; local
493 : "=&a"(first), "=&d"(second)
496 return ConversionPair64(first, second);
501 uint64_t first, second; local
508 : "=&a"(first), "=&d"(second)
509 : "r"(target), "b"(value.first), "c"(value.second)
  /art/test/098-ddmc/src/
Main.java 82 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations()); local
83 System.out.println("second > first =" + (second.numberOfEntries > first.numberOfEntries));
  /art/test/626-const-class-linking/src/
Main.java 326 Field second = pair.getClass().getDeclaredField("second"); local
327 return (Class<?>) second.get(pair);
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1UTCTime.java 40 private int second; field in class:Asn1UTCTime
57 second = other.second;
101 return second;
105 second = newSecond;
115 builder.append(twoDigit.format(second));
135 builder.append(twoDigit.format(second));
211 second = Integer.parseInt(result.substring(yearLength + 8, yearLength + 10));
213 second = 0;
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 273 SsaInsn second = phis.get(j); local
274 coInterferePhiRegisters(interference, first.getResult(), second.getSources());
275 coInterferePhiRegisters(interference, second.getResult(), first.getSources());
276 interference.add(first.getResult().getReg(), second.getResult().getReg());

Completed in 724 milliseconds

1 2 3 4 5 67 8 91011>>