HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1676 - 1700 of 3019) sorted by null

<<61626364656667686970>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java 471 // The other possibility is that the system timed us out.
841 OutputStream out = pingClient.getOutputStream(); local
842 out.write(new byte[256]);
861 out.write(new byte[256]);
868 out.close();
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 332 // detected) can be handled by the server out of order leading to test failure.
388 OutputStream out = conn.getOutputStream(); local
391 out.write('x');
397 out.write(buf, 0, Math.min(buf.length, n - i));
400 out.close();
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java 409 * Either figure out how to make getMessage() with a date range work without this
633 * Figure out what command we are going to run:
774 // TODO: Figure out what kinds of exceptions might actually be thrown
803 OutputStream out = tempBody.getOutputStream(); local
1062 final CountingOutputStream out = new CountingOutputStream(tempOut); local
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 590 FileOutputStream out = new FileOutputStream(new File(dir, filename)); local
591 StreamResult result = new StreamResult(out);
593 out.flush();
594 out.close();
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 2402 XmlSerializer out = new FastXmlSerializer(); local
3527 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
InputMethodManagerService.java 3400 final XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java 437 final XmlSerializer out = new FastXmlSerializer(); local
438 out.setOutput(stream, "utf-8");
439 out.startDocument(null, true);
440 out.startTag(null, TAG_BODY);
441 out.attribute(null, ATTR_VERSION, Integer.toString(DB_VERSION));
442 mZenModeHelper.writeXml(out);
443 mRankingHelper.writeXml(out);
444 out.endTag(null, TAG_BODY);
445 out.endDocument();
846 long[] out = new long[len]; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/
gmaven-runtime-support-1.5.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-junit.jar 
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java 492 OutputStream out = conn.getOutputStream(); local
495 out.write('x');
501 out.write(buf, 0, Math.min(buf.length, n - i));
504 out.close();
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityRecord.java 421 // This starts out true, since the initial state of an activity
    [all...]
  /bionic/libc/kernel/uapi/rdma/
ib_user_cm.h 54 __u16 out; member in struct:ib_ucm_cmd_hdr
  /bootable/recovery/updater/
blockimg.c 62 RangeSet* out = malloc(sizeof(RangeSet) + num * sizeof(int)); local
63 if (out == NULL) {
68 out->count = num / 2;
69 out->size = 0;
72 out->pos[i] = strtol(strtok_r(NULL, ",", &save), NULL, 0);
74 out->size += out->pos[i];
76 out->size -= out->pos[i];
80 return out;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_FilesTest.java 495 File out = new File(path); local
496 File dir = out.getParentFile();
499 copier.copyToExternalStorage(resid, out);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ForEachTest.java 67 Allocation out = Allocation.createTyped(mRS, t); local
68 fe_all.forEach_test_i8(in, out);
81 out = Allocation.createTyped(mRS, t);
82 fe_all.forEach_test_i8_2(in, out);
95 out = Allocation.createTyped(mRS, t);
96 fe_all.forEach_test_i8_3(in, out);
109 out = Allocation.createTyped(mRS, t);
110 fe_all.forEach_test_i8_4(in, out);
123 out = Allocation.createTyped(mRS, t);
124 fe_all.forEach_test_i16(in, out);
    [all...]
KernelTest.java 67 Allocation out = Allocation.createTyped(mRS, t); local
68 kernel_all.forEach_test_i8(in, out);
81 out = Allocation.createTyped(mRS, t);
82 kernel_all.forEach_test_i8_2(in, out);
95 out = Allocation.createTyped(mRS, t);
96 kernel_all.forEach_test_i8_3(in, out);
109 out = Allocation.createTyped(mRS, t);
110 kernel_all.forEach_test_i8_4(in, out);
123 out = Allocation.createTyped(mRS, t);
124 kernel_all.forEach_test_i16(in, out);
    [all...]
TestAbs.java 39 public byte out; field in class:TestAbs.ArgumentsCharUchar
45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
46 script.forEach_testAbsCharUchar(inValue, out);
47 verifyResultsAbsCharUchar(inValue, out, false);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 1), INPUTSIZE); local
53 scriptRelaxed.forEach_testAbsCharUchar(inValue, out);
54 verifyResultsAbsCharUchar(inValue, out, true);
60 private void verifyResultsAbsCharUchar(Allocation inValue, Allocation out, boolean relaxed) {
64 out.copyTo(arrayOut);
70 // Figure out what the outputs should have been
101 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
108 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 2), INPUTSIZE); local
157 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
164 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 3), INPUTSIZE); local
213 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
220 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_8, 4), INPUTSIZE); local
268 public short out; field in class:TestAbs.ArgumentsShortUshort
274 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
281 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 1), INPUTSIZE); local
330 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
337 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 2), INPUTSIZE); local
386 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
393 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 3), INPUTSIZE); local
442 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
449 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_16, 4), INPUTSIZE); local
497 public int out; field in class:TestAbs.ArgumentsIntUint
503 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
510 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 1), INPUTSIZE); local
559 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
566 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 2), INPUTSIZE); local
615 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
622 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 3), INPUTSIZE); local
671 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
678 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.UNSIGNED_32, 4), INPUTSIZE); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLEarlyCCSTest.java 382 OutputStream out,
399 out,
416 OutputStream out,
439 out.write(createChangeCipherSpecRecord(record.versionMajor, record.versionMinor));
440 out.flush();
446 out.write(recordBytes);
447 out.flush();
  /dalvik/tools/hprof-conv/
HprofConv.c 18 * Strip Android-specific records out of hprof data, back-converting from
256 static int ebWriteData(ExpandBuf* pBuf, FILE* out)
263 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
433 * data to "out".
435 static int processHeapDump(ExpandBuf* pBuf, FILE* out, int flags)
586 if (ebWriteData(pOutBuf, out) != 0)
599 static int filterData(FILE* in, FILE* out, int flags)
627 if (ebWriteData(pBuf, out) != 0)
637 if (ebWriteData(pBuf, out) != 0)
678 if (processHeapDump(pBuf, out, flags) != 0
707 FILE* out = NULL; local
    [all...]
  /device/generic/goldfish/audio/
audio_hw.c 104 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
117 out->device,
118 out->dev);
125 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
140 out->device = (int)val;
152 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
161 str_parms_add_int(reply, AUDIO_PARAMETER_STREAM_ROUTING, out->device);
186 struct generic_stream_out *out = (struct generic_stream_out *)stream; local
187 struct generic_audio_device *adev = out->dev;
378 struct generic_stream_out *out; local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
75 private PrintStream console = System.out;
183 //System.out.print(numOfTest + ". Running rule: " + rule + "; input: '" + input.testInput + "'");
186 //System.out.println("; Expecting " + test.getExpected() + "; Success?: " + test.getExpected().equals(test.getResult(result)));
249 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
251 ps = new PrintStream(out);
271 if ( out.toString().length()>0 ) {
272 stdout = out.toString();
296 System.setErr(consoleErr); // Reset standard err out
342 ByteArrayOutputStream out = new ByteArrayOutputStream() local
485 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
103 //System.out.println("match "+((TokenStream)input).LT(1));
148 //System.out.println("viable tokens="+follow.toString(getTokenNames()));
149 //System.out.println("LT(1)="+((TokenStream)input).LT(1));
155 //System.out.println("LT(1)=="+((TokenStream)input).LT(1)+" is consistent with what follows; inserting...");
165 * To get out of recovery mode, the parser must successfully match
320 * want to have a lot of information spit out. Override in that case
538 System.out.println("local follow depth "+i+"="+
628 // System.out.println("missing token");
676 //System.out.println("consumeUntil "+tokenType)
    [all...]
  /external/chromium_org/cc/resources/
picture_layer_tiling_unittest.cc 849 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
858 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
875 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
888 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
897 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
906 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
915 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
924 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
933 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
942 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
956 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
970 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
984 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
998 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
1013 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
1028 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
1037 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
1046 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
1062 gfx::Rect out = PictureLayerTiling::ExpandRectEquallyToAreaBoundedBy( local
    [all...]
  /external/chromium_org/chrome/browser/history/
top_sites_impl_unittest.cc 1174 scoped_refptr<base::RefCountedMemory> out; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 401 $out = $this->get_normalized_http_url(); variable
403 $out .= '?'.$post_data;
405 return $out;
421 $out = 'Authorization: OAuth realm="' . OAuthUtil::urlencode_rfc3986($realm) . '"'; variable
424 $out = 'Authorization: OAuth'; variable
432 $out .= ($first) ? ' ' : ',';
433 $out .= OAuthUtil::urlencode_rfc3986($k) .
439 return $out;
569 * figure out the signature with some defaults
753 // Can filter out any non-oauth parameters if needed (default behaviour
780 $out = array(); variable
792 $out = array(); variable
    [all...]

Completed in 644 milliseconds

<<61626364656667686970>>