HomeSort by relevance Sort by last modified time
    Searched refs:bos (Results 126 - 150 of 328) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/winsys/i915/drm/
i915_drm_batchbuffer.c 80 drm_intel_bo *bos[num_of_buffers + 1]; local
83 bos[0] = drm_batch->bo;
85 bos[i+1] = intel_bo(buffer[i]);
87 ret = drm_intel_bufmgr_check_aperture_space(bos, num_of_buffers);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
LogTest.java 125 final ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
128 ShadowLog.stream = new PrintStream(bos);
130 assertThat(new String(bos.toByteArray()), equalTo("D/tag: msg\n"));
133 assertTrue(new String(bos.toByteArray()).contains("RuntimeException"));
  /libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java 34 private ByteArrayOutputStream bos; field in class:OldDataInputStreamTest
354 dis = new DataInputStream(new ByteArrayInputStream(bos.toByteArray()));
362 bos = new ByteArrayOutputStream();
363 os = new DataOutputStream(bos);
OldInputStreamReaderTest.java 51 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
52 OutputStreamWriter osw = new OutputStreamWriter(bos);
57 fis = new ByteArrayInputStream(bos.toByteArray());
  /external/droiddriver/src/io/appium/droiddriver/finders/
ByXPath.java 199 BufferedOutputStream bos = null; local
201 bos = FileUtils.open(path);
208 transformer.transform(new DOMSource(domNode), new StreamResult(bos));
216 if (bos != null) {
218 bos.close();
  /frameworks/data-binding/extensions/library/src/androidTest/java/android/databinding/
ObservableParcelTest.java 179 ByteArrayOutputStream bos = null; local
182 bos = new ByteArrayOutputStream();
183 oos = new ObjectOutputStream(bos);
187 closeQuietly(bos);
193 bis = new ByteArrayInputStream(bos.toByteArray());
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartInputStream.java 156 BufferedOutputStream bos = new BufferedOutputStream(fos); local
162 _bout.writeTo(bos);
166 _out = bos;
262 BufferedOutputStream bos = null; local
265 bos = new BufferedOutputStream(new FileOutputStream(_file));
266 _bout.writeTo(bos);
267 bos.flush();
271 if (bos != null)
272 bos.close();
  /external/protobuf/java/src/test/java/com/google/protobuf/
LiteralByteStringTest.java 242 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
243 stringUnderTest.writeTo(bos);
244 byte[] roundTripBytes = bos.toByteArray();
271 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
276 output.writeTo(bos);
278 Arrays.equals(referenceBytes, bos.toByteArray()));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 61 BufferedOutputStream bos = new BufferedOutputStream(fos); local
62 out = new DataOutputStream(bos);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-antlr.jar 
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java 44 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
45 ZipOutputStream zos = new ZipOutputStream(bos);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 136 StringBuffer bos; local
138 OutputStream eos(bos, false); // Not writing BOM
152 EXPECT_EQ(bos.GetSize(), bos2.GetSize());
153 EXPECT_EQ(0, memcmp(bos.GetString(), bos2.GetString(), bos2.GetSize()));
177 StringBuffer bos; local
178 Writer<StringBuffer> writer(bos);
191 EXPECT_EQ(bos.GetSize(), bos2.GetSize());
192 EXPECT_EQ(0, memcmp(bos.GetString(), bos2.GetString(), bos2.GetSize()));
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 380 final BufferedOutputStream bos = new BufferedOutputStream(fos); local
382 writer.write(bos);
383 bos.flush();
386 IoUtils.closeQuietly(bos);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
ICUTestCase.java 151 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
152 ObjectOutputStream oos = new ObjectOutputStream(bos);
156 ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipInputStreamTest.java 53 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
54 ZipOutputStream zos = new ZipOutputStream(bos);
60 zipBytes = bos.toByteArray();
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationMember.java 310 ByteArrayOutputStream bos = new ByteArrayOutputStream( local
312 ObjectOutputStream oos = new ObjectOutputStream(bos);
316 ByteArrayInputStream bis = new ByteArrayInputStream(bos
  /cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java 619 BufferedOutputStream bos = null; local
621 bos = new BufferedOutputStream(new FileOutputStream(filename));
623 bmp.compress(Bitmap.CompressFormat.PNG, 90, bos);
626 if (bos != null) bos.close();
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 93 private ByteArrayOutputStream bos = new ByteArrayOutputStream(); field in class:ANTLR3
451 bos.close();
461 Matcher m = p.matcher(bos.toString());
627 bos.close();
651 Matcher m = p.matcher(bos.toString());
760 psh = new PumpStreamHandler(out, bos);
762 psh = new PumpStreamHandler(out, new TeeOutputStream(err, bos));
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SealedObjectTest.java 73 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
74 ObjectOutputStream oos = new ObjectOutputStream(bos);
78 bos.toByteArray()));
  /bionic/libc/kernel/uapi/drm/
msm_drm.h 120 __u64 __user bos; member in struct:drm_msm_gem_submit
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 353 ByteArrayOutputStream bos = new ByteArrayOutputStream(); local
354 System.setErr(new PrintStream(bos));
367 assertTrue(bos.toString().indexOf("testPublish_Record1") >= 0);
372 assertTrue(bos.toString().indexOf("testPublish_Record2") >= 0);
  /external/kernel-headers/original/uapi/drm/
msm_drm.h 153 * one) entry in the submit->bos[] table.
182 __u64 __user bos; /* in, ptr to array of submit_bo's */ member in struct:drm_msm_gem_submit
  /external/libdrm/freedreno/msm/
msm_drm.h 160 * one) entry in the submit->bos[] table.
189 uint64_t __user bos; /* in, ptr to array of submit_bo's */ member in struct:drm_msm_gem_submit
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DataInputStreamTest.java 34 private ByteArrayOutputStream bos; field in class:DataInputStreamTest
617 dis = new DataInputStream(new ByteArrayInputStream(bos.toByteArray()));
625 bos = new ByteArrayOutputStream();
626 os = new DataOutputStream(bos);
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 

Completed in 975 milliseconds

1 2 3 4 56 7 8 91011>>