Searched refs:out (Results 126 - 150 of 254) sorted by relevance

1234567891011

/packages/apps/Gallery2/jni/filters/
H A DredEyeMath.c72 unsigned char *out, short *rect) {
85 out[row + x] = 1;
87 out[row + x] = mask[row + x];
92 void dialateMask(unsigned char *mask, unsigned char *out, int mw, int mh) { argument
97 out[row + x] = (mask[row + x] | mask[row + x + 1]
71 dialateMaskIfRed(unsigned char *src, int iw, int ih, unsigned char *mask, unsigned char *out, short *rect) argument
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
H A DPgmImage.cpp195 ofstream out(filename.c_str(),std::ios::out |ios::binary);
196 out << format_header << "# " << comment << '\n' << m_w << " " << m_h << '\n' << m_colors << '\n';
198 out.write((char *)(&m_data[0]), m_data.size());
200 out.close();
/packages/apps/Tag/canon/src/com/android/apps/tagcanon/
H A DTagCanon.java87 final ByteArrayOutputStream out = new ByteArrayOutputStream(size);
90 photo.compress(Bitmap.CompressFormat.PNG, 100, out);
91 out.flush();
92 byte[] payload = out.toByteArray();
93 out.close();
/packages/experimental/PrintService2/src/foo/bar/printservice2/
H A DMyPrintService.java77 OutputStream out = null;
79 out = new BufferedOutputStream(new FileOutputStream(file));
86 out.write(buffer, 0, readByteCount);
96 if (out != null) {
98 out.close();
/packages/apps/Email/src/com/android/email/view/
H A DCertificateSelector.java142 public void writeToParcel(Parcel out, int flags) { argument
143 super.writeToParcel(out, flags);
144 out.writeString(mValue);
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DRegisteredServicesCache.java414 XmlSerializer out = new FastXmlSerializer();
415 out.setOutput(fos, "utf-8");
416 out.startDocument(null, true);
417 out.setFeature(XML_INDENT_OUTPUT_FEATURE, true);
418 out.startTag(null, "services");
422 out.startTag(null, "service");
423 out.attribute(null, "component", service.getKey().flattenToString());
424 out.attribute(null, "uid", Integer.toString(service.getValue().uid));
426 group.writeAsXml(out);
428 out
[all...]
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DSuggestionCursorUtil.java131 ListSuggestionCursor out = new ListSuggestionCursor(cursor.getUserQuery());
133 out.add(new SuggestionPosition(cursor, i));
135 return out;
139 ListSuggestionCursor out = new ListSuggestionCursor(cursors[0].getUserQuery());
142 out.add(new SuggestionPosition(cursor, i));
145 return out;
/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Ddbstabsmooth.cpp24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
130 vp_copy_motion(inmot/*in*/, &testMotion/*out*/);
173 // Therefore, break out of this loop
182 vp_copy_motion_no_id(&tmpMotion/*in*/, outmot/*out*/);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out) argument
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out) argument
322 if(in1 == NULL || out
[all...]
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
H A Ddbstabsmooth.cpp24 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out);
25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
130 vp_copy_motion(inmot/*in*/, &testMotion/*out*/);
173 // Therefore, break out of this loop
182 vp_copy_motion_no_id(&tmpMotion/*in*/, outmot/*out*/);
307 static bool vpmotion_add(VP_MOTION *in1, VP_MOTION *in2, VP_MOTION *out) argument
310 if(in1 == NULL || in2 == NULL || out == NULL)
314 out->par[i] = in1->par[i] + in2->par[i];
319 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out) argument
322 if(in1 == NULL || out
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java34 * entire html document. It contains toHTML() method which prints out the html
35 * text, toXHTML for printing out XHTML text and toString() which prints out in
818 * Writes out the attribute in HTML format with all necessary preceding
840 * Writes out the attribute in XHTML format (value is always appended,
877 * Writes out the attribute in its original form as it was parsed..
933 * @param out Destination to which this object appends nodes to replace
936 void filter(Node originalNode, List<Node> out); argument
940 * @param out Destination to which this object appends nodes at the end of
943 void finish(List<Node> out); argument
961 filter(Node originalNode, List<Node> out) argument
984 finish(List<Node> out) argument
999 filter(Node originalNode, List<Node> out) argument
1018 filterTag(Tag originalTag, List<Node> out) argument
1020 filterText(Text originalText, List<Node> out) argument
1022 filterEndTag(EndTag originalEndTag, List<Node> out) argument
1024 filterComment(Comment originalComment, List<Node> out) argument
1056 filter(Node originalNode, List<Node> out) argument
1081 finish(List<Node> out) argument
[all...]
H A DHtmlParser.java245 * due to the sanitizer stripping out nodes between Text nodes. It is
253 List<HtmlDocument.Node> out =
261 mergeTextNodes(textNodes, out);
262 out.add(node);
265 mergeTextNodes(textNodes, out);
266 return out;
1125 System.out.println(doc.toString());
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DIOUtils.java113 PrintWriter out = new PrintWriter(buf);
114 out.println();
1159 OutputStreamWriter out = new OutputStreamWriter(output);
1160 copy(input, out);
1163 out.flush();
1194 OutputStreamWriter out = new OutputStreamWriter(output, encoding);
1195 copy(input, out);
1198 out.flush();
H A DFileUtils.java223 OutputStream out = openOutputStream(file);
224 IOUtils.closeQuietly(out);
1252 OutputStream out = null;
1254 out = openOutputStream(file);
1255 IOUtils.write(data, out, encoding);
1257 IOUtils.closeQuietly(out);
1284 OutputStream out = null;
1286 out = openOutputStream(file);
1287 out.write(data);
1289 IOUtils.closeQuietly(out);
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
H A DHeader.java147 * @param out the OutputStream to write to
150 public void writeTo(OutputStream out) throws IOException { argument
153 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(charString)),8192);
/packages/services/Telephony/src/com/android/phone/settings/fdn/
H A DFdnSetting.java510 protected void onSaveInstanceState(Bundle out) { argument
511 super.onSaveInstanceState(out);
512 out.putBoolean(SKIP_OLD_PIN_KEY, mIsPuk2Locked);
513 out.putInt(PIN_CHANGE_STATE_KEY, mPinChangeState);
514 out.putString(OLD_PIN_KEY, mOldPin);
515 out.putString(NEW_PIN_KEY, mNewPin);
516 out.putString(DIALOG_MESSAGE_KEY, mButtonChangePin2.getDialogMessage().toString());
517 out.putString(DIALOG_PIN_ENTRY_KEY, mButtonChangePin2.getText());
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DStructuredNameEditorView.java252 public void writeToParcel(Parcel out, int flags) { argument
253 out.writeParcelable(mSuperState, 0);
255 out.writeInt(mChanged ? 1 : 0);
256 out.writeParcelable(mSnapshot, 0);
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DUriCodec.java173 ByteArrayOutputStream out = new ByteArrayOutputStream();
187 out.write((byte) ((d1 << 4) + d2));
190 result.append(new String(out.toByteArray(), charset));
191 out.reset();
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
H A DMockImageList.java63 public void writeToParcel(Parcel out, int flags) { argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A Dvignette.rs76 uchar4 out = rsPackColorTo8888(clamp(wsum, 0.f, 1.0f));
77 return out;
/packages/apps/Settings/src/com/android/settings/widget/
H A DSwitchBar.java202 public void writeToParcel(Parcel out, int flags) { argument
203 super.writeToParcel(out, flags);
204 out.writeValue(checked);
205 out.writeValue(visible);
/packages/apps/SpeechRecorder/src/com/android/speechrecorder/
H A DSpeechRecorderActivity.java217 OutputStream out = new FileOutputStream(mUtterance.toString());
223 hdr.write(out);
224 out.write(pcm);
226 out.close();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationActionUtils.java581 public void writeToParcel(final Parcel out, final int flags) { argument
582 out.writeInt(mNotificationActionType.ordinal());
583 out.writeParcelable(mAccount, 0);
584 out.writeParcelable(mConversation, 0);
585 out.writeParcelable(mMessage, 0);
586 out.writeParcelable(mFolder, 0);
587 out.writeLong(mConversationId);
588 out.writeString(mMessageId);
589 out.writeLong(mLocalMessageId);
590 out
[all...]
/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DRecognizerLogger.java247 OutputStream out = new FileOutputStream(mDatedPath + ".wav");
252 hdr.write(out);
253 out.write(pcm);
256 out.close();
/packages/providers/ContactsProvider/
H A DAndroid.mk17 # leaving out code which is tested by other means (e.g. static libraries) that
24 # leaving out code which is tested by other means (e.g. static libraries) that
/packages/apps/Gallery/src/com/android/camera/
H A DImageManager.java82 public void writeToParcel(Parcel out, int flags) { argument
83 out.writeInt(mLocation.ordinal());
84 out.writeInt(mInclusion);
85 out.writeInt(mSort);
86 out.writeString(mBucketId);
87 out.writeParcelable(mSingleImageUri, flags);
88 out.writeInt(mIsEmptyImageList ? 1 : 0);
171 /* This is commented out because isVideo is not calling this now.

Completed in 900 milliseconds

1234567891011