Searched defs:out (Results 376 - 400 of 520) sorted by relevance

<<11121314151617181920>>

/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
H A DLayoutXmlProcessor.java114 Preconditions.check(input.getRootOutputFolder().mkdirs(), "out dir should be re-created");
178 final File out = convertToOutFile(file);
179 FileUtils.deleteQuietly(out);
397 StringBuilder out = new StringBuilder();
398 out.append("ResourceInput{")
402 logFiles(out, "added", mAdded);
403 logFiles(out, "removed", mRemoved);
404 logFiles(out, "changed", mChanged);
405 return out.toString();
409 private static void logFiles(StringBuilder out, Strin argument
[all...]
/frameworks/native/cmds/installd/
H A Dotapreopt.cpp468 std::vector<std::string>& out) {
473 out.push_back("--runtime-arg");
476 out.push_back(StringPrintf("%s%s", prefix, value->c_str()));
478 out.push_back(*value);
483 // Stores the system properties read out of the B partition. We need to use these properties
465 AddCompilerOptionFromSystemProperty(const char* system_property, const char* prefix, bool runtime, std::vector<std::string>& out) argument
/frameworks/native/libs/ui/
H A DRegion.cpp840 void Region::dump(String8& out, const char* what, uint32_t /* flags */) const argument
845 out.appendFormat(" Region %s (this=%p, count=%" PRIdPTR ")\n",
848 out.appendFormat(" [%3d, %3d, %3d, %3d]\n", head->left, head->top,
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.cpp67 const Allocation* out = closure->mReturnValue; local
68 const uint32_t ostep = out->mHal.state.elementSizeBytes;
69 const uint8_t* ptr = (uint8_t *)(out->mHal.drvState.lod[0].mallocPtr) +
72 ptr += out->mHal.drvState.lod[0].stride * kinfo->current.y;
304 // The output filename has to be the last, in case we need to pop it out and
/frameworks/support/design/src/android/support/design/widget/
H A DBottomSheetBehavior.java199 // First let the parent lay it out
477 // The view is not laid out yet; modify mState and let onLayoutChild handle it later
705 public void writeToParcel(Parcel out, int flags) { argument
706 super.writeToParcel(out, flags);
707 out.writeInt(state);
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java57 * to call out the app that the content was shared from.
92 StringBuilder out = new StringBuilder();
93 withinStyle(out, text, 0, text.length());
94 return out.toString();
97 private static void withinStyle(StringBuilder out, CharSequence text, argument
103 out.append("&lt;");
105 out.append("&gt;");
107 out.append("&amp;");
109 out.append("&#" + ((int) c) + ";");
112 out
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp148 /*out*/ACameraCaptureSession** session) {
280 const ACaptureRequest* request, /*out*/sp<CaptureRequest>& outReq) {
474 sp<IGraphicBufferProducer>& out) {
486 out = surface->getIGraphicBufferProducer();
492 ANativeWindow* anw, sp<Surface>& out) {
504 out = surface;
654 ALOGE("Frame number out of order. Expect %" PRId64 " but get %" PRId64,
701 ALOGE("%s: Error: request index %d out of bound (size %zu)",
1109 // Clear the session sp before we send out the message
1111 // before cbh goes out o
472 getIGBPfromAnw( ANativeWindow* anw, sp<IGraphicBufferProducer>& out) argument
491 getSurfaceFromANativeWindow( ANativeWindow* anw, sp<Surface>& out) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp142 FILE *out = fopen(filename.string(), "wb"); local
161 out),
170 fclose(out);
171 out = NULL;
878 CHECK_EQ(writeJpegFile("/sdcard/out.jpg",
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp185 MediaBuffer *out; local
186 CHECK_EQ(mBufferGroup->acquire_buffer(&out), (status_t)OK);
188 ssize_t n = mExtractor->mDataSource->readAt(offset, out->data(), size);
194 out->set_range(0, size);
196 out->meta_data()->setInt64(kKeyTime, timeUs);
199 out->meta_data()->setInt32(kKeyIsSyncFrame, 1);
203 *buffer = out;
207 mSplitter->append(out);
208 out->release();
209 out
322 read(MediaBuffer **out) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp191 uint8 *out, int blkwidth, int blkheight)
216 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */
218 *((uint32*)out) = result; /* write 4 bytes */
219 out += 4;
223 out += out_offset;
236 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */
238 *((uint32*)out) = result; /* write 4 bytes */
239 out += 4;
243 out += out_offset;
255 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byt
190 eCreateAlign(uint8 *ref, int picpitch, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
268 eHorzInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
558 eHorzInterp2MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
717 eHorzInterp3MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
781 eVertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1083 eVertInterp2MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
1148 eVertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1306 eDiagonalInterpMC(uint8 *in1, uint8 *in2, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1649 eFullPelMC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1838 uint8 *ref, *out; local
1931 uint8 *ref, *out; local
1981 uint8 *ref, *out; local
2024 int32 *out; local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp477 static bool MakeURL(const char *baseURL, const char *url, AString *out) { argument
478 out->clear();
491 out->setTo(url);
493 ALOGV("base:'%s', url:'%s' => '%s'", baseURL, url, out->c_str());
505 out->setTo(baseURL, pathStart - baseURL);
507 out->setTo(baseURL);
510 out->append(url);
533 out->setTo(baseURL, end);
535 out->setTo(baseURL);
538 out
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp849 AString out; local
873 out.append(", ");
875 out.append(tmp);
888 ALOGV("accessUnit contains nal types %s", out.c_str());
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp243 ALOGE("AudioMixer::getTrackName out of available tracks");
1075 void AudioMixer::track__genericResample(track_t* t, int32_t* out, size_t outFrameCount, argument
1089 volumeRampStereo(t, out, outFrameCount, temp, aux);
1091 volumeStereo(t, out, outFrameCount, temp, aux);
1098 volumeRampStereo(t, out, outFrameCount, temp, aux);
1104 t->resampler->resample(out, outFrameCount, t->bufferProvider);
1109 void AudioMixer::track__nop(track_t* t __unused, int32_t* out __unused,
1114 void AudioMixer::volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, argument
1136 *out++ += (vl >> 16) * l;
1137 *out
1157 volumeStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) argument
1186 track__16BitsStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) argument
1278 track__16BitsMono(track_t* t, int32_t* out, size_t frameCount, int32_t* temp __unused, int32_t* aux) argument
1448 int32_t *out = t1.mainBuffer; local
1542 int32_t *out = t1.mainBuffer; local
1599 int32_t* out = t.mainBuffer; local
1692 volumeRampMulti(uint32_t channels, TO* out, size_t frameCount, const TI* in, TA* aux, TV *vol, const TV *volinc, TAV *vola, TAV volainc) argument
1736 volumeMulti(uint32_t channels, TO* out, size_t frameCount, const TI* in, TA* aux, const TV *vol, TAV vola) argument
1776 volumeMix(TO *out, size_t outFrames, const TI *in, TA *aux, bool ramp, AudioMixer::track_t *t) argument
1822 TO* out = reinterpret_cast<TO*>(t->mainBuffer); local
1871 track__Resample(track_t* t, TO* out, size_t outFrameCount, TO* temp, TA* aux) argument
1902 track__NoResample(track_t* t, TO* out, size_t frameCount, TO* temp __unused, TA* aux) argument
1921 convertMixerFormat(void *out, audio_format_t mixerOutFormat, void *in, audio_format_t mixerInFormat, size_t sampleCount) argument
[all...]
/frameworks/base/core/java/android/app/job/
H A DJobInfo.java417 public void writeToParcel(Parcel out, int flags) { argument
418 out.writeInt(jobId);
419 out.writePersistableBundle(extras);
420 out.writeParcelable(service, flags);
421 out.writeInt(requireCharging ? 1 : 0);
422 out.writeInt(requireDeviceIdle ? 1 : 0);
423 out.writeTypedArray(triggerContentUris, flags);
424 out.writeLong(triggerContentUpdateDelay);
425 out.writeLong(triggerContentMaxDelay);
426 out
523 writeToParcel(Parcel out, int flags) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java696 public void writeToParcel(Parcel out, int flags) { argument
697 out.writeString(mAddress);
1169 * @return true confirmation has been sent out
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java482 * system may carve out a portion of the overall progress to represent
660 * the system may carve out a portion of the overall progress to
729 public void fsync(@NonNull OutputStream out) throws IOException { argument
730 if (out instanceof FileBridge.FileBridgeOutputStream) {
731 ((FileBridge.FileBridgeOutputStream) out).fsync();
1192 * system may carve out a portion of the overall progress to represent
/frameworks/base/core/java/android/net/
H A DUri.java700 * Parses an authority out of the given URI string.
737 * Parses a path out of this given URI string.
1091 // Parse out user info and then port.
1790 * @param out parcel to write to
1793 public static void writeToParcel(Parcel out, Uri uri) { argument
1795 out.writeInt(NULL_TYPE_ID);
1797 uri.writeToParcel(out, 0);
/frameworks/base/core/java/android/text/
H A DHtml.java267 StringBuilder out = new StringBuilder();
268 withinHtml(out, text, option);
269 return out.toString();
276 StringBuilder out = new StringBuilder();
277 withinStyle(out, text, 0, text.length());
278 return out.toString();
281 private static void withinHtml(StringBuilder out, Spanned text, int option) { argument
283 encodeTextAlignmentByDiv(out, text, option);
287 withinDiv(out, text, 0, text.length(), option);
290 private static void encodeTextAlignmentByDiv(StringBuilder out, Spanne argument
326 withinDiv(StringBuilder out, Spanned text, int start, int end, int option) argument
406 withinBlockquote(StringBuilder out, Spanned text, int start, int end, int option) argument
415 withinBlockquoteIndividual(StringBuilder out, Spanned text, int start, int end) argument
480 withinBlockquoteConsecutive(StringBuilder out, Spanned text, int start, int end) argument
517 withinParagraph(StringBuilder out, Spanned text, int start, int end) argument
643 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
[all...]
/frameworks/base/core/java/android/view/
H A DDisplay.java1020 * For example, applications running on a 4K display may have their UI laid out and rendered
1036 * For example, applications running on a 4K display may have their UI laid out and rendered
1105 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1106 out.writeInt(mModeId);
1107 out.writeInt(mWidth);
1108 out.writeInt(mHeight);
1109 out.writeFloat(mRefreshRate);
1320 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1321 out.writeInt(mId);
1322 out
[all...]
H A DInputDevice.java907 public void writeToParcel(Parcel out, int flags) { argument
908 out.writeInt(mId);
909 out.writeInt(mGeneration);
910 out.writeInt(mControllerNumber);
911 out.writeString(mName);
912 out.writeInt(mVendorId);
913 out.writeInt(mProductId);
914 out.writeString(mDescriptor);
915 out.writeInt(mIsExternal ? 1 : 0);
916 out
[all...]
H A DSurfaceView.java854 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
H A DViewDebug.java302 * @param out The output writer
305 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
505 BufferedWriter out = null;
507 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
510 profileViewAndChildren(view, out);
512 out.write("-1 -1 -1");
513 out.newLine();
515 out.write("DONE.");
516 out.newLine();
520 if (out !
527 profileViewAndChildren(final View view, BufferedWriter out) argument
532 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
840 dumpv2(@onNull final View view, @NonNull ByteArrayOutputStream out) argument
966 dumpViewHierarchy(Context context, ViewGroup group, BufferedWriter out, int level, boolean skipChildren, boolean includeProperties) argument
997 dumpView(Context context, View view, BufferedWriter out, int level, boolean includeProperties) argument
1100 dumpViewProperties(Context context, Object view, BufferedWriter out) argument
1106 dumpViewProperties(Context context, Object view, BufferedWriter out, String prefix) argument
1168 exportMethods(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1251 exportFields(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1345 writeEntry(BufferedWriter out, String prefix, String name, String suffix, Object value) argument
1356 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
1373 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
1441 writeValue(BufferedWriter out, Object value) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java144 * In and out animations.
428 // flush out the old child
449 * optionally with the with the {@link #getOutAnimation() out animation} and
454 * @param animate Whether or not to use the in and out animations, defaults
494 // This section clears out any items that are in our active views list
742 // if the data changes, mWhichChild might be out of the bounds of the adapter
794 public void writeToParcel(Parcel out, int flags) { argument
795 super.writeToParcel(out, flags);
796 out.writeInt(this.whichChild);
H A DExpandableListView.java1303 public void writeToParcel(Parcel out, int flags) { argument
1304 super.writeToParcel(out, flags);
1305 out.writeList(expandedGroupMetadataList);
H A DSpinner.java643 // Clear out old views
712 * and fill out its layout paramters.
910 public void writeToParcel(Parcel out, int flags) { argument
911 super.writeToParcel(out, flags);
912 out.writeByte((byte) (showDropdown ? 1 : 0));

Completed in 4336 milliseconds

<<11121314151617181920>>