HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2901 - 2925 of 5424) sorted by null

<<111112113114115116117118119120>>

  /frameworks/base/core/java/android/provider/
MediaStore.java 2395 final Bundle out = client.call("getDocumentId", path, in); local
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 629 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) {
630 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
631 out.print(" mDestroyed="); out.println(mDestroyed);
632 out.print(prefix); out.print("mVisible="); out.print(mVisible);
633 out.print(" mReportedVisible="); out.println(mReportedVisible)
    [all...]
  /frameworks/base/core/java/android/text/
TextUtils.java 1473 SpannableStringBuilder out = new SpannableStringBuilder(okFormat); local
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java 653 // Clear out old views
722 * and fill out its layout paramters.
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 419 TypedValue out = new TypedValue(); local
420 mContext.getTheme().resolveAttribute(attrId, out, true);
421 return out.resourceId;
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 218 private static void extractText(TtmlNode node, long startUs, long endUs, StringBuilder out,
221 out.append(node.mText);
223 out.append("\n");
228 int length = out.length();
230 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag); local
232 if (pTag && length != out.length()) {
233 out.append("\n");
252 StringBuilder out) {
254 out.append(node.mText);
256 out.append("<br/>")
263 extractTtmlFragment(node.mChildren.get(i), startUs, endUs, out); local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
MOManager.java 510 throw new IOException("Failed to remove " + fqdn + " out of MO tree");
528 try (BufferedOutputStream out =
530 moTree.marshal(out);
531 out.flush();
668 // to do that so it is commented out:
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
FusedPrintersProvider.java 116 /** Last known location, can be null or out of date */
406 * Check if the location is acceptable. This is to filter out excessively old or inaccurate
1006 FileOutputStream out = null; local
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsState.java 589 FileOutputStream out = null; local
591 out = destination.startWrite();
594 serializer.setOutput(out, StandardCharsets.UTF_8.name());
617 destination.finishWrite(out);
626 destination.failWrite(out);
628 IoUtils.closeQuietly(out);
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 37 * Handles laying out, decoding, and drawing of tiles in GL
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
359 private void getRange(Rect out,
385 out.set(left, top, right, bottom);
  /frameworks/base/services/core/java/com/android/server/
VibratorService.java 342 long[] out = new long[ar.length]; local
344 out[i] = ar[i];
346 return out;
397 // they're repeating. Let other effects just play out until they're done.
475 // Callback for whenever the current vibration has finished played out
608 // If the state changes out from under us then just reset.
858 // command. Instead we figure out how long our next "on" period is
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 248 // Figure out the window of time that we should be augmenting (if any)
316 // We purposefully clear out packet counters to indicate
481 public void write(DataOutputStream out) throws IOException {
493 out.writeInt(FILE_MAGIC);
494 out.writeInt(VERSION_UNIFIED_INIT);
496 out.writeInt(keysByIdent.size());
499 ident.writeToStream(out);
501 out.writeInt(keys.size());
504 out.writeInt(key.uid);
505 out.writeInt(key.set)
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
InstantAppRegistry.java 319 // Sorry, you are out of luck - different signatures - nuke data
521 try (FileOutputStream out = new FileOutputStream(iconFile)) {
522 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
1084 FileOutputStream out = null; local
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 175 // Correctly read out the phone entry based on requested provider
204 * (filters out separators.)
2229 char[] out = input.toCharArray(); local
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 690 // Figure out the number of rows and columns in the N-patch
908 png_bytep out = outRows[j]; local
996 *out++ = idx;
1090 png_bytep out = outRows[j]; local
1118 png_bytep out = outRows[j]; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 875 // write out symbol
896 // write out symbol
1756 SectionMap::iterator out, prev, outBegin, outEnd; local
2079 SectionMap::iterator out, outBegin, outEnd; local
2115 SectionMap::iterator out, outBegin, outEnd; local
2358 SectionMap::iterator out, outBegin, outEnd; local
2416 SectionMap::iterator out, outBegin, outEnd; local
    [all...]
  /frameworks/native/cmds/installd/
InstalldNativeService.cpp 198 auto out = std::fstream(StringPrintf("/proc/self/fd/%d", fd)); local
201 out << dump_permission.toString8() << endl;
206 out << "installd is happy!" << endl;
210 out << endl << "Storage mounts:" << endl;
212 out << " " << n.first << " = " << n.second << endl;
215 out << endl << "Quota reverse mounts:" << endl;
217 out << " " << n.first << " = " << n.second << endl;
223 out << endl << "Per-UID cache quotas:" << endl;
225 out << " " << n.first << " = " << n.second << endl;
229 out << endl
    [all...]
  /frameworks/native/libs/gui/
Surface.cpp 1621 ANativeWindowBuffer* out; local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java 231 // TODO(mplass): figure out where we need locking in hidl world. b/33383725
448 WifiNative.ScanCapabilities out = capabilities; local
452 out.max_scan_cache_size = cap.maxCacheSize;
453 out.max_ap_cache_per_scan = cap.maxApCachePerScan;
454 out.max_scan_buckets = cap.maxBuckets;
455 out.max_rssi_sample_size = 0;
456 out.max_scan_reporting_threshold = cap.maxReportingThreshold;
717 WifiLinkLayerStats out = new WifiLinkLayerStats();
718 // unpopulated: out.status, out.SSID, out.BSSI
2262 WifiNative.RoamingCapabilities out = capabilities; local
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduParser.java 1194 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 477 snprintf(buf, sizeof(buf), "Out range ElementAt X %i of %i", x, t->getLODDimX(0));
483 snprintf(buf, sizeof(buf), "Out range ElementAt Y %i of %i", y, t->getLODDimY(0));
489 snprintf(buf, sizeof(buf), "Out range ElementAt Z %i of %i", z, t->getLODDimZ(0));
718 Allocation* out = nullptr; local
720 out = (Allocation*)allocs[numInputs].p;
721 CHECK_OBJ(out);
722 out->incSysRef();
724 rsrForEach(rsc, s, slot, numInputs, numInputs > 0 ? inputs : nullptr, out,
730 out->decSysRef();
736 ::rs_allocation out,
    [all...]
  /frameworks/support/exifinterface/tests/src/android/support/media/
ExifInterfaceTest.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertController.java 387 TypedValue out = new TypedValue(); local
388 mContext.getTheme().resolveAttribute(attrId, out, true);
389 return out.resourceId;
    [all...]
  /hardware/qcom/audio/hal/
audio_hw.h 275 struct stream_out *out; member in union:stream_ptr
360 snd_device_t last_logged_snd_device[AUDIO_USECASE_MAX][2]; /* [out, in] */
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DecimalFormatTest.java 113 // into Long unless the value is out of the bound of Long or
521 // IllegalArgumentException will be thrown out
536 // NullPointerException will be thrown out.
563 StringBuffer out = format.format(new Long(Long.MAX_VALUE), new StringBuffer(), pos); local
564 assertTrue("Wrong result L1: " + out, out.toString().equals("9,223,372,036,854,775,807"));
568 out = format.format(new Long(Long.MIN_VALUE), new StringBuffer(), pos);
569 assertTrue("Wrong result L2: " + out, out.toString().equals("-9,223,372,036,854,775,808"));
573 out = format.format(new java.math.BigInteger(String.valueOf(Long.MAX_VALUE))
    [all...]

Completed in 473 milliseconds

<<111112113114115116117118119120>>