/frameworks/base/core/jni/ |
android_view_SurfaceControl.cpp | 665 bool out = false; local 667 status_t status = ctrl->getTransformToDisplayInverse(&out); 671 return out;
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
RegisteredServicesCacheTest.java | 308 public void writeAsXml(TestServiceType item, XmlSerializer out) throws IOException { 309 out.attribute(null, "type", item.type); 310 out.attribute(null, "value", item.value);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/ |
TaskCardView.java | 168 TypedValue out = new TypedValue(); local 169 res.getValue(R.integer.selected_scale, out, true); 170 float scale = hasFocus ? out.getFloat() : 1;
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
ExifOutputStream.java | 42 * // Write the original jpeg out, the header will be add into the file. 114 * Writes the image out. The input data should be a valid JPEG format. After 129 out.write(buffer, offset, byteToProcess); 149 out.write(mBuffer.array(), 0, 2); 164 out.write(mBuffer.array(), 0, 2); 177 out.write(mBuffer.array(), 0, 4); 180 out.write(mBuffer.array(), 0, 4); 187 out.write(buffer, offset, length); 192 * Writes the one bytes out. The input data should be a valid JPEG format. 222 OrderedDataOutputStream dataOutputStream = new OrderedDataOutputStream(out); [all...] |
/frameworks/base/telecomm/java/android/telecom/ |
ParcelableCallAnalytics.java | 87 public void writeToParcel(Parcel out, int flags) { 88 out.writeInt(mEventName); 89 out.writeLong(mTimeSinceLastEvent); 90 out.writeInt(mVideoState); 179 public void writeToParcel(Parcel out, int flags) { 180 out.writeInt(mEventName); 181 out.writeLong(mTimeSinceLastEvent); 242 public void writeToParcel(Parcel out, int flags) { 243 out.writeInt(mName); 244 out.writeLong(mTime) [all...] |
PhoneAccount.java | 656 public void writeToParcel(Parcel out, int flags) { 658 out.writeInt(0); 660 out.writeInt(1); 661 mAccountHandle.writeToParcel(out, flags); 664 out.writeInt(0); 666 out.writeInt(1); 667 mAddress.writeToParcel(out, flags); 670 out.writeInt(0); 672 out.writeInt(1); 673 mSubscriptionAddress.writeToParcel(out, flags) [all...] |
/frameworks/base/telephony/java/com/android/ims/ |
ImsCallProfile.java | 317 public void writeToParcel(Parcel out, int flags) { 318 out.writeInt(mServiceType); 319 out.writeInt(mCallType); 320 out.writeParcelable(mCallExtras, 0); 321 out.writeParcelable(mMediaProfile, 0);
|
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/ |
Main.java | 185 File out = new File(root, "out"); local 186 if (!out.isDirectory()) { 189 File host = new File(out, "host"); 204 private static String getPlatformDirFromHostOut(File out) { 205 if (!out.isDirectory()) { 208 File sdkDir = new File(out, "sdk"); 357 System.out.println("Objects still linked from the DelegateManager:"); 358 DelegateManager.dump(System.out); 620 System.out.println("Warning " + tag + ": " + message) [all...] |
/frameworks/compile/mclinker/lib/Object/ |
ObjectLinker.cpp | 309 SectionMap::iterator out, outBegin, outEnd; local 312 for (out = outBegin; out != outEnd; ++out) { 314 LDSection* out_sect = (*out)->getSection(); 316 inBegin = (*out)->begin(); 317 inEnd = (*out)->end(); 320 if ((*out)->prolog().hasSubAlign()) { 321 evaluator.eval((*out)->prolog().subAlign(), in_align); 326 if ((*out)->prolog().hasSubAlign() 407 SectionMap::iterator out, outBegin, outEnd; local [all...] |
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/ |
LayoutXmlProcessor.java | 114 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(); local 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, String name, List<File> files) [all...] |
/frameworks/native/libs/gui/ |
SurfaceComposerClient.cpp | 274 ComposerState* const out = mComposerStates.editArray(); local 275 return &(out[index].state);
|
/frameworks/native/opengl/tests/hwc/ |
hwcTestLib.cpp | 161 ostringstream out; local 163 out << '[' << this->c1() << ", " 167 return out.str(); 173 ostringstream out; local 175 out << '[' << this->width() << ", " 178 return out.str(); 197 ostringstream out; local 199 out << '['; 200 out << rect.left << ", "; 201 out << rect.top << ", " [all...] |
/frameworks/native/opengl/tools/glgen/src/ |
JniCodeEmitter.java | 130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) { 132 out.println(" /* @hide C function " + jfunc.getCFunc().getOriginal() + " */"); 133 out.println(); 135 out.println(" // C function " + jfunc.getCFunc().getOriginal()); 136 out.println(); 139 emitFunction(jfunc, out, true, false); 142 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) { 143 emitFunction(jfunc, out, false, true); 146 public void emitJavaCode(JFunc jfunc, PrintStream out) { 147 emitFunction(jfunc, out, false, false) [all...] |
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
SetupWizardLayout.java | 129 final TypedValue out = new TypedValue(); local 130 getResources().getValue(R.dimen.suw_illustration_aspect_ratio, out, true); 131 illustrationAspectRatio = out.getFloat();
|
/frameworks/support/compat/java/android/support/v4/app/ |
ShareCompat.java | 57 * to call out the app that the content was shared from. 94 StringBuilder out = new StringBuilder(); local 95 withinStyle(out, text, 0, text.length()); 96 return out.toString(); 99 private static void withinStyle(StringBuilder out, CharSequence text, 105 out.append("<"); 107 out.append(">"); 109 out.append("&"); 111 out.append("&#" + ((int) c) + ";"); 114 out.append(" ") [all...] |
/frameworks/support/design/src/android/support/design/widget/ |
CoordinatorLayout.java | 388 private void getTopSortedChildren(List<View> out) { 389 out.clear(); 396 out.add(child); 400 Collections.sort(out, TOP_SORTED_CHILDREN_COMPARATOR); 559 Log.e(TAG, "Keyline index " + index + " out of range for " + this); 669 * @param out rect to set to the bounds of the descendant view 671 void getDescendantRect(View descendant, Rect out) { 672 ViewGroupUtils.getDescendantRect(this, descendant, out); 813 * Called to lay out each individual child view unless a 817 * @param child child view to lay out 1136 final Rect out = mTempRect2; local 1138 child.getMeasuredHeight(), parent, out, layoutDirection); local [all...] |
/frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/ |
MediaRouterJellybean.java | 49 List out = new ArrayList(count); local 51 out.add(router.getRouteAt(i)); 53 return out; 60 List out = new ArrayList(count); local 62 out.add(router.getCategoryAt(i)); 64 return out; 186 List out = new ArrayList(count); local 188 out.add(group.getRouteAt(i)); 190 return out; 245 ArrayList out = new ArrayList() local [all...] |
/hardware/intel/audio_media/hdmi/ |
tinyaudio_hw.c | 45 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 147 * following order: hw device > out stream 224 static int start_output_stream(struct stream_out *out) 226 struct audio_device *adev = out->dev; 239 out->pcm_config.channels, 240 out->pcm_config.rate, 241 out->pcm_config.period_size, 242 out->pcm_config.period_count, 243 out->pcm_config.format); 245 out->pcm_config.start_threshold = 0 281 struct stream_out *out = (struct stream_out *)stream; local 295 struct stream_out *out = (struct stream_out *)stream; local 325 struct stream_out *out = (struct stream_out *)stream; local 347 struct stream_out *out = (struct stream_out *)stream; local 378 struct stream_out *out = (struct stream_out *)stream; local 472 struct stream_out *out = (struct stream_out *)stream; local 495 struct stream_out *out = (struct stream_out *)stream; local 549 struct stream_out *out = (struct stream_out *)stream; local 568 struct stream_out *out = (struct stream_out *)stream; local 685 struct stream_out *out; local 789 struct stream_out *out = (struct stream_out *)stream; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans16_dspr2.c | 1222 int32_t out; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_idct.c | 120 int16_t out[4 * 4]; local 121 int16_t *outptr = out; 135 temp_in[j] = out[j * 4 + i]; 146 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local 147 out = dct_const_round_shift(out * cospi_16_64); 148 a1 = ROUND_POWER_OF_TWO(out, 4); 205 int16_t out[8 * 8]; local 206 int16_t *outptr = out; 220 temp_in[j] = out[j * 8 + i] 231 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local 293 int16_t out[4 * 4]; local 401 int16_t out[8 * 8]; local 425 int16_t out[8 * 8] = { 0 }; local 615 int16_t out[16 * 16]; local 819 int16_t out[16 * 16]; local 843 int16_t out[16 * 16] = { 0 }; local 870 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local 1248 int16_t out[32 * 32]; local 1285 int16_t out[32 * 32] = {0}; local 1313 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_dct.c | 57 int16_t *out = intermediate; local 87 out[0] = fdct_round_shift(temp1); 88 out[2] = fdct_round_shift(temp2); 91 out[1] = fdct_round_shift(temp1); 92 out[3] = fdct_round_shift(temp2); 95 out += 4; 97 // Setup in/out for next pass. 99 out = output; 163 int16_t out[4 * 4]; local 164 int16_t *outptr = &out[0] 325 int16_t *out = intermediate; local 575 int16_t out[64]; local 972 int16_t out[256]; local [all...] |
/hardware/libhardware_legacy/audio/ |
audio_hw_hal.cpp | 123 const struct legacy_stream_out *out = local 125 return out->legacy_out->sampleRate(); 130 struct legacy_stream_out *out = local 140 const struct legacy_stream_out *out = local 142 return out->legacy_out->bufferSize(); 147 const struct legacy_stream_out *out = local 149 return (audio_channel_mask_t) out->legacy_out->channels(); 154 const struct legacy_stream_out *out = local 157 return (audio_format_t) out->legacy_out->format(); 162 struct legacy_stream_out *out local 171 struct legacy_stream_out *out = local 178 const struct legacy_stream_out *out = local 186 struct legacy_stream_out *out = local 204 const struct legacy_stream_out *out = local 224 const struct legacy_stream_out *out = local 232 struct legacy_stream_out *out = local 240 struct legacy_stream_out *out = local 248 const struct legacy_stream_out *out = local 256 const struct legacy_stream_out *out = local 498 struct legacy_stream_out *out; local 547 struct legacy_stream_out *out = reinterpret_cast<struct legacy_stream_out *>(stream); local [all...] |
/hardware/qcom/audio/legacy/alsa_sound/ |
audio_hw_hal.cpp | 144 const struct qcom_stream_out *out = local 146 return out->qcom_out->sampleRate(); 151 struct qcom_stream_out *out = local 161 const struct qcom_stream_out *out = local 163 return out->qcom_out->bufferSize(); 168 const struct qcom_stream_out *out = local 170 return out->qcom_out->channels(); 175 const struct qcom_stream_out *out = local 177 return (audio_format_t)out->qcom_out->format(); 182 struct qcom_stream_out *out local 191 struct qcom_stream_out *out = local 198 const struct qcom_stream_out *out = local 206 struct qcom_stream_out *out = local 224 const struct qcom_stream_out *out = local 244 const struct qcom_stream_out *out = local 252 struct qcom_stream_out *out = local 260 struct qcom_stream_out *out = local 268 const struct qcom_stream_out *out = local 286 const struct qcom_stream_out *out = local 525 struct qcom_stream_out *out; local 562 struct qcom_stream_out *out; local 613 struct qcom_stream_out *out = reinterpret_cast<struct qcom_stream_out *>(stream); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
SerializationStressTest3.java | 347 private void writeObject(java.io.ObjectOutputStream out) 349 ObjectOutputStream.PutField fields = out.putFields(); 352 // Use fields.write() instead of out.writeFields(); 353 fields.write(out); 366 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 367 DataOutputStream dos = new DataOutputStream(out); 379 new ByteArrayInputStream(out.toByteArray())); 391 System.out.println("Error " + err + " when testing BLOCKDATALONG"); 407 System.out.println("Obj = " + objToSave); 419 System.out.println("Error when obj = " + objToSave) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/ |
SAXParserTestSupport.java | 107 // System.out.println(str.toString()); 127 System.out.println("IOException during processing the file: " 152 System.out.println("for "+KEYS[i]+": original:" + 154 System.out.println(); 155 System.out.println(" result:" + result.get(KEYS[i])); 156 System.out.println(); 200 System.out.print(data_isStartDocument.toString() + SEPARATOR_DATA + 361 System.out.print(data_isStartDocument.toString() + SEPARATOR_DATA +
|