Searched refs:os (Results 1 - 25 of 3367) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventSocketProxy.java78 OutputStream os = socket.getOutputStream();
79 OutputStreamWriter osw = new OutputStreamWriter(os, "UTF8");
H A DRemoteDebugEventSocketListener.java195 OutputStream os = channel.getOutputStream();
196 OutputStreamWriter osw = new OutputStreamWriter(os, "UTF8");
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py44 import sys, os namespace
60 version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
101 version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
114 saveto = os.path.join(to_dir, egg_name)
116 if not os.path.exists(saveto): # Avoid repeated downloads
145 return os.path.realpath(saveto)
160 if egg and os.path.exists(egg):
161 os.unlink(egg)
195 base = os.path.basename(name)
H A Dsetup.py5 import os namespace
36 path = os.path.join(os.path.dirname(__file__), path)
37 if os.path.isdir(path):
38 for root, dirs, files in os.walk(path, topdown=True):
44 filePath = os.path.join(root, name)
48 os.unlink(filePath)
83 testDir = os.path.join(os.path.dirname(__file__), 'unittests')
84 if not os
[all...]
H A Dxmlrunner.py10 import os.path namespace
171 stream = file(os.path.join(self._path, filename), "w")
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py4 import os namespace
29 inputPath = os.path.splitext(__file__)[0] + '.input'
41 outputPath = os.path.splitext(__file__)[0] + '.output'
H A Dt018llstar.py4 import os namespace
15 inputPath = os.path.splitext(__file__)[0] + '.input'
24 outputPath = os.path.splitext(__file__)[0] + '.output'
H A Dt019lexer.py1 import os namespace
12 inputPath = os.path.splitext(__file__)[0] + '.input'
H A Dt020fuzzy.py1 import os namespace
15 inputPath = os.path.splitext(__file__)[0] + '.input'
27 outputPath = os.path.splitext(__file__)[0] + '.output'
H A Dt021hoist.py1 import os namespace
H A Dt055templates.py8 import os namespace
H A Dt056lexer.py8 import os namespace
H A Dtestbase.py3 import os namespace
17 os.unlink(path)
30 testbasedir = os.path.join(
31 os.path.realpath(tempfile.gettempdir()),
64 if 'CLASSPATH' not in os.environ:
67 baseDir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', '..'))
68 libDir = os.path.join(baseDir, 'lib')
70 jar = os
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestdottreegen.py3 import os namespace
H A Dteststreams.py3 import os namespace
250 path = os.path.join(os.path.dirname(__file__), 'teststreams.input1')
273 path = os.path.join(os.path.dirname(__file__), 'teststreams.input2')
H A Dtesttree.py3 import os namespace
H A Dtesttreewizard.py3 import os namespace
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DSocketHandlerTest.java718 OutputStream os = s.getOutputStream();
719 os.write(1);
720 os.close();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java1240 OutputStream os = peerSocket.getOutputStream();
1268 os
1279 os.write(respAuthenticationRequired.getBytes("UTF-8"));
1290 os = peerSocket.getOutputStream();
1306 os
1318 os.write(plainResponse.getBytes("UTF-8"));
1337 os = peerSocket.getOutputStream();
1360 os
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/
H A DSystemProcessTest.java36 OutputStream os = process.getOutputStream();
37 os.write("10 5 abcde".getBytes());
38 os.close();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DExcludedProxyTest.java126 OutputStream os = s.getOutputStream();
127 os.write("GET / HTTP/1.0\r\n\r\n".getBytes());
143 OutputStream os = s.getOutputStream();
144 os.write("GET / HTTP/1.0\r\n\r\n".getBytes());
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DDigestOutputStreamTest.java243 OutputStream os = new ByteArrayOutputStream(MY_MESSAGE_LEN);
244 DigestOutputStream dos = new DigestOutputStream(os, null);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory1Test.java443 ByteArrayOutputStream os = new ByteArrayOutputStream();
444 ObjectOutputStream oos = new ObjectOutputStream(os);
454 byte[] arr = os.toByteArray();
554 ByteArrayOutputStream os = new ByteArrayOutputStream();
556 ObjectOutputStream oos = new ObjectOutputStream(os);
561 byte[] arr = os.toByteArray();
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java194 public static void putObjectToStream(Object obj, OutputStream os) argument
196 ObjectOutputStream oos = new ObjectOutputStream(os);

Completed in 713 milliseconds

1234567891011>>