HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 976 - 1000 of 5424) sorted by null

<<31323334353637383940>>

  /libcore/ojluni/src/main/java/sun/security/x509/
GeneralSubtree.java 190 * @params out the DerOutputStream to encode this object to.
192 public void encode(DerOutputStream out) throws IOException {
209 out.write(DerValue.tag_Sequence, seq);
InhibitAnyPolicyExtension.java 98 DerOutputStream out = new DerOutputStream(); local
99 out.putInteger(skipCerts);
100 this.extensionValue = out.toByteArray();
170 * @param out the DerOutputStream to encode the extension to.
172 public void encode(OutputStream out) throws IOException {
181 out.write(tmp.toByteArray());
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/serial/
TCKWeekFieldsSerialization.java 54 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
105 ObjectOutputStream out = new ObjectOutputStream(baos); local
106 out.writeObject(wf);
  /libcore/ojluni/src/test/java/time/tck/java/time/zone/serial/
TCKFixedZoneRulesSerialization.java 57 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
103 ObjectOutputStream out = new ObjectOutputStream(baos); local
104 out.writeObject(test);
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 38 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestTrustManager
61 out.println("TestTrustManager.<init> extendedTrustManager=" + trustManager);
67 out.println("TestTrustManager.<init> trustManager=" + trustManager);
74 out.print("TestTrustManager.checkClientTrusted "
80 out.println("OK");
82 e.printStackTrace(out);
91 out.print("(fallback to X509TrustManager) ");
95 out.print("TestTrustManager.checkClientTrusted "
102 out.println("OK")
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_Exec.java 76 * Starts the specified process, collects its output from standard out and
93 String out = ""; local
95 out = outFuture.get(30, TimeUnit.SECONDS);
106 "Failed to execute " + builder.command() + "; output was:\n" + out);
110 return out;
  /packages/apps/Car/libs/car-radio-service/src/com/android/car/radio/service/
RadioStation.java 60 public void writeToParcel(Parcel out, int flags) {
61 out.writeInt(mChannelNumber);
62 out.writeInt(mSubChannelNumber);
63 out.writeInt(mBand);
64 out.writeParcelable(mRds, 0);
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
DurableUtils.java 33 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
34 d.write(new DataOutputStream(out));
35 return out.toByteArray();
85 public static void writeNullableString(DataOutputStream out, String value) throws IOException {
87 out.write(1);
88 out.writeUTF(value);
90 out.write(0);
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetDecoder.java 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
72 if (!out.hasRemaining())
74 out.put((char)shift);
79 if (!out.hasRemaining())
81 CoderResult result = handleBase64(in, out, b);
94 if (!out.hasRemaining())
96 out.put((char)b);
115 * @param out The output buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) {
    [all...]
UTF7StyleCharsetEncoder.java 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) {
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
146 if (out.remaining() < 4)
150 unshift(out, ch);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
Romkan.java 188 StrSegment[] out; local
190 out = new StrSegment[1];
191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to);
192 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start);
194 out = new StrSegment[2];
195 out[0] = new StrSegment(match.substring(0, match.length() - 1),
197 out[1] = new StrSegment(match.substring(match.length() - 1),
199 text.replaceStrSegment(1, out, MAX_LENGTH - start);
RomkanFullKatakana.java 192 StrSegment[] out; local
194 out = new StrSegment[1];
195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to);
196 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start);
198 out = new StrSegment[2];
199 out[0] = new StrSegment(match.substring(0, match.length() - 1),
201 out[1] = new StrSegment(match.substring(match.length() - 1),
203 text.replaceStrSegment(1, out, MAX_LENGTH - start);
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 62 result out(state_type& __state, function
182 result out(state_type& __state,
279 result out(state_type& __state,
  /prebuilts/ndk/r11/sources/android/ndk_helper/
vecmath.cpp 40 Vec4 out; local
41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11];
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15];
45 return out;
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 62 result out(state_type& __state, function
182 result out(state_type& __state,
279 result out(state_type& __state,
  /prebuilts/ndk/r13/sources/android/ndk_helper/
vecmath.cpp 40 Vec4 out; local
41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11];
44 out.w_ = x_ * rhs.f_[12] + y_ * rhs.f_[13] + z_ * rhs.f_[14] + w_ * rhs.f_[15];
45 return out;
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_codecvt.h 62 result out(state_type& __state, function
182 result out(state_type& __state,
279 result out(state_type& __state,
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
intermOut.cpp 33 //ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
70 // 2. Print out a text based description of the tree.
126 TInfoSink& out = infoSink; local
128 OutputTreeText(out, node, depth);
131 case EOpAssign: out.debug << "move second child to first child"; break;
132 case EOpAddAssign: out.debug << "add second child into first child"; break;
133 case EOpSubAssign: out.debug << "subtract second child into first child"; break;
134 case EOpMulAssign: out.debug << "multiply second child into first child"; break;
135 case EOpVectorTimesMatrixAssign: out.debug << "matrix mult second child into first child"; break;
136 case EOpVectorTimesScalarAssign: out.debug << "vector scale second child into first child"; break
192 TInfoSink& out = infoSink; local
380 TInfoSink& out = infoSink; local
564 TInfoSink& out = infoSink; local
698 TInfoSink& out = infoSink; local
736 TInfoSink& out = infoSink; local
763 TInfoSink& out = infoSink; local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 68 DataOutputStream out = new DataOutputStream(new BufferedOutputStream(stream)); local
70 mHeader.write(out);
71 out.flush();
73 mColorMode.write(out);
74 mImageResources.write(out);
75 mLayersMasksInfo.write(out);
76 mLayersInfo.write(out);
77 out.flush();
79 mLayersInfo.writeImageData(out);
80 out.flush()
    [all...]
  /system/libhidl/transport/
HidlBinderSupport.cpp 94 const void *out; local
101 &out);
107 // Always safe to access out[string.size()] because we read size+1 bytes
108 if (static_cast<const char *>(out)[string.size()] != '\0') {
  /test/vts/drivers/hal/common/utils/
InterfaceSpecUtil.cpp 79 std::ostringstream out; local
81 out << "V";
84 out << (version_long / DEFAULT_FACTOR);
86 out << ".";
88 out << "_";
94 out << (version_long / factor);
99 return out.str();
  /tools/tradefederation/core/src/com/android/tradefed/util/
TarUtil.java 117 FileOutputStream out = null; local
120 out = new FileOutputStream(outputFile);
121 IOUtils.copy(in, out);
124 StreamUtil.close(out);
138 GZIPOutputStream out = null; local
141 out = new GZIPOutputStream(new FileOutputStream(outputFile));
143 IOUtils.copy(in, out);
150 StreamUtil.close(out);
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 152 CollectingOutputReceiver out = new CollectingOutputReceiver(); local
153 getDevice().executeShellCommand("pm move-primary-storage " + vol.uuid, out, 2,
155 assertSuccess(out.getOutput());
172 out = new CollectingOutputReceiver();
173 getDevice().executeShellCommand("pm move-primary-storage internal", out, 2,
175 assertSuccess(out.getOutput());
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTestCase.java 66 // controls out of its boundary for some first time setup that obscures the text edit and/or
125 OutputStream out = getInstrumentation().getContext().getContentResolver() local
128 out.write(data);
130 out.close();
  /cts/tests/tests/content/src/android/content/pm/cts/
InstallSessionTransferTest.java 103 try (OutputStream out = session.openWrite(name, 0, -1)) {
104 Streams.copy(in, out);
235 try (OutputStream out = session.openWrite("invalid", 0, 2)) {
236 out.write(new byte[]{23, 42});
237 out.flush();

Completed in 144 milliseconds

<<31323334353637383940>>