/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/ |
partition.h | 16 PyObject* out;
local 24 out = PyTuple_New(3);
25 if (!out)
32 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len));
33 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0));
34 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0));
37 PyTuple_SET_ITEM(out, 0, (PyObject*) str_obj);
39 PyTuple_SET_ITEM(out, 1, (PyObject*) STRINGLIB_EMPTY);
41 PyTuple_SET_ITEM(out, 2, (PyObject*) STRINGLIB_EMPTY);
43 return out;
66 PyObject* out; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/ |
partition.h | 16 PyObject* out;
local 24 out = PyTuple_New(3);
25 if (!out)
32 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len));
33 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0));
34 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0));
37 PyTuple_SET_ITEM(out, 0, (PyObject*) str_obj);
39 PyTuple_SET_ITEM(out, 1, (PyObject*) STRINGLIB_EMPTY);
41 PyTuple_SET_ITEM(out, 2, (PyObject*) STRINGLIB_EMPTY);
43 return out;
66 PyObject* out; local [all...] |
/external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/ |
default.pass.cpp | 22 std::ostrstream out; local 26 out << i << ' ' << d << ' ' << s << std::ends; 27 assert(out.str() == std::string("123 4.5 dog")); 28 out.freeze(false);
|
/external/libcxx/test/std/re/re.results/re.results.form/ |
form4.pass.cpp | 32 std::string out = m.format(fmt); local 33 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 41 std::string out = m.format(fmt, std::regex_constants::format_sed); local 42 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 50 std::string out = m.format(fmt, std::regex_constants::format_sed); local 51 assert(out == "match: cdefghi, m[1]: efg, m[2]: e"); 60 std::wstring out = m.format(fmt); local 61 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 69 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local 70 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2") 78 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local [all...] |
/external/libcxx/test/support/ |
demangle.h | 37 char* out = __cxxabiv1::__cxa_demangle(mangled_name, nullptr, nullptr, &status); local 38 if (out != nullptr) { 39 std::string res(out); 40 std::free(out);
|
/external/lzma/Java/Tukaani/src/ |
XZSeekEncDemo.java | 47 XZOutputStream out = new XZOutputStream(System.out, options); local 57 out.write(buf, 0, size); 61 out.endBlock(); 66 out.finish();
|
XZEncDemo.java | 32 XZOutputStream out = new XZOutputStream(System.out, options); local 37 out.write(buf, 0, size); 39 out.finish();
|
/external/python/cpython2/Objects/stringlib/ |
partition.h | 16 PyObject* out; local 24 out = PyTuple_New(3); 25 if (!out) 32 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len)); 33 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); 34 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0)); 37 PyTuple_SET_ITEM(out, 0, (PyObject*) str_obj); 39 PyTuple_SET_ITEM(out, 1, (PyObject*) STRINGLIB_EMPTY); 41 PyTuple_SET_ITEM(out, 2, (PyObject*) STRINGLIB_EMPTY); 43 return out; 66 PyObject* out; local [all...] |
/external/valgrind/none/tests/mips32/ |
MemCpyTest.c | 35 int i, out; local 51 : "=&r" (out)
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue8613.go | 9 var out int var 14 out = 1 / zero
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue8613.go | 9 var out int var 14 out = 1 / zero
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/ |
default.pass.cpp | 21 std::ostrstream out; local 25 out << i << ' ' << d << ' ' << s << std::ends; 26 assert(out.str() == std::string("123 4.5 dog"));
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/ |
form4.pass.cpp | 31 std::string out = m.format(fmt); local 32 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 40 std::string out = m.format(fmt, std::regex_constants::format_sed); local 41 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 49 std::string out = m.format(fmt, std::regex_constants::format_sed); local 50 assert(out == "match: cdefghi, m[1]: efg, m[2]: e"); 59 std::wstring out = m.format(fmt); local 60 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 68 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local 69 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2") 77 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/ |
default.pass.cpp | 22 std::ostrstream out; local 26 out << i << ' ' << d << ' ' << s << std::ends; 27 assert(out.str() == std::string("123 4.5 dog")); 28 out.freeze(false);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.results/re.results.form/ |
form4.pass.cpp | 32 std::string out = m.format(fmt); local 33 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 41 std::string out = m.format(fmt, std::regex_constants::format_sed); local 42 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2"); 50 std::string out = m.format(fmt, std::regex_constants::format_sed); local 51 assert(out == "match: cdefghi, m[1]: efg, m[2]: e"); 60 std::wstring out = m.format(fmt); local 61 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e"); 69 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local 70 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2") 78 std::wstring out = m.format(fmt, std::regex_constants::format_sed); local [all...] |
/system/media/audio_utils/tests/ |
limiter_tests.c | 33 float out = limiter(in); local 34 printf("%g,%g\n", in, out); 36 out = limiter(-in); 37 printf("%g,%g\n", -in, out);
|
/system/netd/libnetdutils/ |
Socket.cpp | 26 std::array<char, INET6_ADDRSTRLEN> out = {}; local 27 auto* rv = inet_ntop(AF_INET6, &addr, out.data(), out.size()); 31 return std::string(out.data());
|
/external/emma/core/java12/com/vladium/jcd/compiler/ |
CodeGen.java | 26 public static void load_local_object_var (final ByteArrayOStream out, final int index) 30 out.write (_aload_0 + index); // aload_n 34 out.write2 (_aload, 39 out.write4 (_wide, 46 public static void store_local_object_var (final ByteArrayOStream out, final int index) 50 out.write (_astore_0 + index); // astore_n 54 out.write2 (_astore, 59 out.write4 (_wide, 68 public static void push_int_value (final ByteArrayOStream out, final ClassDef cls, final int value) 72 out.write (_iconst_0 + value) [all...] |
/external/r8/src/test/examples/jumbostring/ |
JumboString.java | 17 System.out.println("zzzz - jumbo string"); 28 PrintStream out = new PrintStream( local 31 out.println( 33 out.println( 35 out.println("// BSD-style license that can be found in the LICENSE file."); 36 out.println("package jumbostring;"); 37 out.println(); 38 out.println("class StringPool" + fileNumber + " {"); 42 out.println(" public static final String s" + i + " = \"" + i + "\";"); 44 out.println("}") [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ProxyOutputStream.java | 41 // the proxy is stored in a protected superclass variable named 'out' 50 out.write(idx); 59 out.write(bts); 70 out.write(bts, st, end); 78 out.flush(); 86 out.close();
|
ProxyWriter.java | 43 // the proxy is stored in a protected superclass variable named 'out' 52 out.write(idx); 61 out.write(chr); 72 out.write(chr, st, end); 81 out.write(str); 92 out.write(str, st, end); 100 out.flush(); 108 out.close();
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
DeltaOutputStream.java | 18 private FinishableOutputStream out; field in class:DeltaOutputStream 31 DeltaOutputStream(FinishableOutputStream out, DeltaOptions options) { 32 this.out = out; 54 out.write(filterBuf); 60 out.write(filterBuf, 0, len); 75 out.flush(); 88 out.finish(); 99 if (out != null) { 101 out.close() [all...] |
/art/test/121-modifiers/src-java/ |
Asm.java | 98 OutputStream out = new FileOutputStream(clazz + ".out"); local 99 out.write(b, 0, b.length); 100 out.close();
|
/external/apache-http/src/org/apache/http/impl/io/ |
IdentityOutputStream.java | 58 private final SessionOutputBuffer out; field in class:IdentityOutputStream 63 public IdentityOutputStream(final SessionOutputBuffer out) { 65 if (out == null) { 68 this.out = out; 79 this.out.flush(); 84 this.out.flush(); 91 this.out.write(b, off, len); 102 this.out.write(b);
|
/external/okhttp/okio/okio/src/main/java/okio/ |
Okio.java | 60 /** Returns a sink that writes to {@code out}. */ 61 public static Sink sink(OutputStream out) { 62 return sink(out, new Timeout()); 65 private static Sink sink(final OutputStream out, final Timeout timeout) { 66 if (out == null) throw new IllegalArgumentException("out == null"); 76 out.write(head.data, head.pos, toCopy); 90 out.flush(); 94 out.close(); 102 return "sink(" + out + ")" [all...] |