Searched defs:seen (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DTestCaseUtil.java59 Set<Class<?>> seen) {
72 seen);
84 testCases.addAll(getTests(childTest, flatten, seen));
97 Set<Class<?>> seen) {
108 && !seen.contains(testClass)) {
109 seen.add(testClass);
58 getTests(Test test, boolean flatten, Set<Class<?>> seen) argument
96 invokeSuiteMethodIfPossible(Class testClass, Set<Class<?>> seen) argument
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DDecoder.java93 public DecoderException(byte seen, int pos) { argument
94 super(String.format("Unexpected byte %c seen at position %d", (char)seen, pos));
/frameworks/minikin/libs/minikin/
H A DFontLanguageListCache.cpp84 std::unordered_set<uint64_t> seen; local
93 if (!lang.isUnsupported() && seen.count(identifier) == 0) {
98 seen.insert(identifier);
106 if (!lang.isUnsupported() && seen.count(identifier) == 0) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DScanDetail.java53 //mScanResult.seen = mSeen;
69 long tsf, long seen) {
72 mSeen = seen;
73 //mScanResult.seen = mSeen;
86 mSeen = mScanResult.seen;
110 //mScanResult.seen = mSeen;
186 * Return the time this network was last seen.
193 * Update the time this network was last seen to the current system time.
197 mScanResult.seen = mSeen;
68 ScanDetail(WifiSsid wifiSsid, String bssid, String caps, int level, int frequency, long tsf, long seen) argument
/frameworks/base/services/core/java/com/android/server/
H A DMmsServiceBroker.java145 long timestampMillis, boolean seen, boolean read) throws RemoteException {
151 long timestampSecs, boolean seen, boolean read) throws RemoteException {
375 long timestampMillis, boolean seen, boolean read) throws RemoteException {
383 callingPkg, address, type, text, timestampMillis, seen, read);
388 String messageId, long timestampSecs, boolean seen, boolean read)
397 callingPkg, contentUri, messageId, timestampSecs, seen, read);
374 importTextMessage(String callingPkg, String address, int type, String text, long timestampMillis, boolean seen, boolean read) argument
387 importMultimediaMessage(String callingPkg, Uri contentUri, String messageId, long timestampSecs, boolean seen, boolean read) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java131 * this result was last seen.
136 * Timestamp representing date when this result was last seen, in milliseconds from 1970
139 public long seen; field in class:ScanResult
156 if (seen == 0) {
157 seen = System.currentTimeMillis();
159 long age = seen - previousSeen;
162 // Average the RSSI with previously seen instances of this scan result
450 seen = source.seen;
528 dest.writeLong(seen);
[all...]
H A DWifiConfiguration.java473 * it is seen with good RSSI, it is blacklisted faster)
496 public long age5; // timestamp of the strongest 5GHz BSSID (last time it was seen)
497 public long age24; // timestamp of the strongest 2.4GHz BSSID (last time it was seen)
980 * @param seen value set to candidate
982 public void setSeenInLastQualifiedNetworkSelection(boolean seen) { argument
983 mSeenInLastQualifiedNetworkSelection = seen;
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkPolicyManagerServiceTest.java491 final LinkedHashSet<Long> seen = new LinkedHashSet<Long>();
498 assertUnique(seen, nextCycle);
506 final LinkedHashSet<Long> seen = new LinkedHashSet<Long>();
513 assertUnique(seen, lastCycle);
975 private static void assertUnique(LinkedHashSet<Long> seen, Long value) { argument
976 if (!seen.add(value)) {
977 fail("found duplicate time " + value + " in series " + seen.toString());
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsManager.java1208 * @param seen if the message is seen
1214 boolean seen, boolean read) {
1219 address, type, text, timestampMillis, seen, read);
1241 * @param seen if the message is seen
1248 boolean seen, boolean read) {
1256 contentUri, messageId, timestampSecs, seen, read);
1337 /** Message status property: whether the message has been seen. 1 means seen,
1213 importTextMessage(String address, int type, String text, long timestampMillis, boolean seen, boolean read) argument
1247 importMultimediaMessage(Uri contentUri, String messageId, long timestampSecs, boolean seen, boolean read) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 519 milliseconds