/libcore/luni/src/test/java/libcore/java/lang/ |
OldRuntimeTest.java | 475 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 478 Runtime.getRuntime().getLocalizedOutputStream(out); 483 byte[] returned = out.toByteArray();
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/ |
HttpsURLConnectionTest.java | 181 System.out.println("Expected exception was thrown: " + e.getMessage()); 610 System.out.println("Got expected IOException: " + e.getMessage()); 650 System.out.println("Expected exception was thrown: " + e.getMessage()); 660 System.out.println(); 661 System.out.println("------------------------"); 662 System.out.println("------ " + getName()); 663 System.out.println("------------------------"); 670 FileOutputStream out = new FileOutputStream(store); local 675 out.write(buf, 0, read); 678 out.close() [all...] |
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/ |
SerializationTest.java | 474 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 475 putObjectToStream(initial, out); 476 ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
|
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
c_wlocale_win32.c | 38 WORD out[2];
local 40 GetStringTypeW(CT_CTYPE1, buf, -1, out);
42 return (_Locale_mask_t)(MapCtypeMask(out[0]) & which_bits);
|
/ndk/sources/cxx-stl/stlport/src/ |
ios.cpp | 76 const ios_base::openmode ios_base::out; member in class:ios_base
|
/ndk/sources/host-tools/make-3.81/ |
ansi2knr.c | 65 lpd 2000-04-12 backs out Eggert's changes because of bugs: 234 FILE *out = stdout; local 280 out = fopen(output_name, "w"); 281 if ( out == NULL ) { 301 fprintf(out, "#line 1 \"%s\"\n", filename); 315 convert1(buf, out, 1, convert_varargs); 328 convert1(buf, out, 0, convert_varargs); 329 fputs(more, out); 339 fputs(buf, out); 350 wl: fputs(buf, out); [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) 31 ImageType yimg = out; 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) 76 ImageType yimg = out; 121 ImageType out = ImageUtils::allocateImage(width, height, 1); local 122 ImageType outCopy = out; 143 return out; 146 ImageType ImageUtils::rgb2gray(ImageType out, ImageType in, int width, int height) 149 ImageType gray = out; 151 ImageType outCopy = out; [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
StructuredNameEditorView.java | 251 public void writeToParcel(Parcel out, int flags) { 252 out.writeParcelable(mSuperState, 0); 254 out.writeInt(mChanged ? 1 : 0); 255 out.writeParcelable(mSnapshot, 0);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/ |
Rfc822Output.java | 62 /** A less-than-perfect pattern to pull out <body> content */ 117 * @param message the message to write out 118 * @param out the output stream to write the message to 123 public static void writeTo(Context context, Message message, OutputStream out, 131 final OutputStream stream = new BufferedOutputStream(out, 1024); 196 // Write out the attachments until we run out 208 out.flush(); 214 private static void writeOneAttachment(Context context, Writer writer, OutputStream out, 232 // Set up input stream and write it out via base6 [all...] |
/packages/apps/Email/tests/src/com/android/email/activity/ |
ContactStatusLoaderTest.java | 172 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 173 bitmap.compress(Bitmap.CompressFormat.JPEG, 50, out); 174 return out.toByteArray();
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
ImageUtils.cpp | 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height) 31 ImageType yimg = out; 73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height) 76 ImageType yimg = out; 121 ImageType out = ImageUtils::allocateImage(width, height, 1); local 122 ImageType outCopy = out; 143 return out; 146 ImageType ImageUtils::rgb2gray(ImageType out, ImageType in, int width, int height) 149 ImageType gray = out; 151 ImageType outCopy = out; [all...] |
/packages/apps/Nfc/src/com/android/nfc/ |
RegisteredComponentCache.java | 98 StringBuilder out = new StringBuilder("ComponentInfo: "); local 99 out.append(resolveInfo); 100 out.append(", techs: "); 102 out.append(tech); 103 out.append(", "); 105 return out.toString();
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FileSystemUtils.java | 401 OutputStream out = null; local 407 out = proc.getOutputStream(); 438 IOUtils.closeQuietly(out);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
Builder.java | 194 StringBuffer out = new StringBuffer(); local 197 out.append(head.image); 200 addSpecials(out, head.specialToken); 202 out.append(tail.image); 204 return out.toString(); 207 private void addSpecials(StringBuffer out, Token specialToken) { 209 addSpecials(out, specialToken.specialToken); 210 out.append(specialToken.image);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
MoreKeySpec.java | 179 ArrayList<String> out = null; local 183 if (out == null) { 184 out = CollectionUtils.arrayAsList(array, 0, i); 186 } else if (out != null) { 187 out.add(entry); 190 if (out == null) { 193 return out.toArray(new String[out.size()]); 202 ArrayList<String> out = null; local 210 if (out != null) [all...] |
/system/core/cpio/ |
mkbootfs.c | 87 static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize) 99 fix_stat(out, s); 100 // fprintf(stderr, "_eject %s: mode=0%o\n", out, s->st_mode); 118 out, 124 if(strlen(out) != (unsigned int)olen) die("ACK!"); 149 static void _archive(char *in, char *out, int ilen, int olen); 155 static void _archive_dir(char *in, char *out, int ilen, int olen) 163 in, out, ilen, olen); 210 out[olen] = '/'; 211 memcpy(out + olen + 1, names[i], t + 1) 274 char out[8192]; local [all...] |
/system/core/fastboot/ |
usb_linux.c | 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 60 * under 2 seconds) but we'll time out after 3 seconds just in case. 124 int in, out; local 197 out = -1; 224 out = ept->bEndpointAddress; 229 info.has_bulk_out = (out != -1); 233 *ept_out_id = out; 306 int n, in, out, ifc; local 335 &in, &out, &ifc) == 0) { 339 usb->ep_out = out; [all...] |
/system/core/fastbootd/other/sign/src/ |
SignImg.java | 133 System.out.println("Usage: signimg data private_key certificate output"); 136 System.out.println("Signing the image"); 142 System.out.println("File read sucessfully"); 147 System.out.println("Content read sucessfully"); 150 System.out.println("Certificate read sucessfully"); 163 System.out.println("Signed"); 172 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 178 System.out.println("Exception during programm execution: " + ex.getMessage());
|
/system/core/init/ |
bootchart.c | 125 FILE* out; local 135 out = fopen( LOG_HEADER, "w" ); 136 if (out == NULL) 151 fprintf(out, "version = %s\n", VERSION); 152 fprintf(out, "title = Boot chart for Android ( %s )\n", date); 153 fprintf(out, "system.uname = %s\n", uname); 154 fprintf(out, "system.release = 0.0\n"); 155 fprintf(out, "system.cpu = %s\n", cpu); 156 fprintf(out, "system.kernel.options = %s\n", cmdline); 157 fclose(out); [all...] |
/system/core/libcutils/ |
str_parms.c | 300 float out; local 308 out = strtof(value, &end); 312 *val = out;
|
/system/core/toolbox/upstream-netbsd/bin/dd/ |
dd.c | 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 78 IO in, out; /* input/output state */ variable 179 if (out.name == NULL) { 181 out.fd = STDOUT_FILENO; 182 out.name = "stdout"; 183 out.ops = &ddfops_stdfd; 185 out.ops = prog_ops; 188 out.fd = ddop_open(out, out.name, O_RDWR | OFLAGS, DEFFILEMODE) [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 338 public void writeToParcel(Parcel out, int flags) { 339 out.writeInt(TAG); 340 out.writeInt(this.viewId); 341 out.writeInt(this.emptyViewId); [all...] |
/frameworks/base/services/core/java/com/android/server/net/ |
NetworkPolicyManagerService.java | 1389 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationManagerService.java | 423 final XmlSerializer out = new FastXmlSerializer(); local 424 out.setOutput(stream, "utf-8"); 425 out.startDocument(null, true); 426 out.startTag(null, TAG_BODY); 427 out.attribute(null, ATTR_VERSION, Integer.toString(DB_VERSION)); 428 mZenModeHelper.writeXml(out); 429 mRankingHelper.writeXml(out); 430 out.endTag(null, TAG_BODY); 431 out.endDocument(); 790 long[] out = new long[len] local [all...] |
/dalvik/dx/etc/ |
jasmin.jar | |