HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 101 - 125 of 17003) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/boringssl/src/tool/
file.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
23 bool ReadAll(std::vector<uint8_t> *out, FILE *file) {
24 out->clear();
28 out->resize(128);
31 len += fread(out->data() + len, 1, out->size() - len, file);
34 out->resize(len);
41 if (len == out->size()) {
42 if (out->size() == kMaxSize) {
46 size_t cap = std::min(out->size() * 2, kMaxSize)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
FilterWriter.java 46 protected Writer out; field in class:FilterWriter
51 * @param out a Writer object to provide the underlying stream.
52 * @throws NullPointerException if <code>out</code> is <code>null</code>
54 protected FilterWriter(Writer out) {
55 super(out);
56 this.out = out;
65 out.write(c);
78 out.write(cbuf, off, len);
91 out.write(str, off, len)
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/fuzzer/
FuzzerCodeGenBase.h 43 void GenerateHeaderFile(Formatter &out);
45 void GenerateSourceFile(Formatter &out);
49 virtual void GenerateSourceIncludeFiles(Formatter &out) = 0;
51 virtual void GenerateUsingDeclaration(Formatter &out) = 0;
53 virtual void GenerateGlobalVars(Formatter &out) = 0;
55 virtual void GenerateLLVMFuzzerInitialize(Formatter &out) = 0;
57 virtual void GenerateLLVMFuzzerTestOneInput(Formatter &out) = 0;
58 virtual void GenerateOpenNameSpaces(Formatter &out);
59 virtual void GenerateCloseNameSpaces(Formatter &out);
62 virtual void GenerateWarningComment(Formatter &out);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
thumb-b-bad.l 2 [^:]*:9: Error: branch out of range
3 [^:]*:5: Error: branch out of range
4 [^:]*:8: Error: branch out of range
5 [^:]*:11: Error: branch out of range
6 [^:]*:15: Error: branch out of range
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationDirectoryItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
58 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
59 int classAnnotationsOffset = dexFile.readSmallUint(out.getCursor());
60 out.annotate(4, "class_annotations_off = %s",
63 int fieldsSize = dexFile.readSmallUint(out.getCursor());
64 out.annotate(4, "fields_size = %d", fieldsSize);
66 int annotatedMethodsSize = dexFile.readSmallUint(out.getCursor());
67 out.annotate(4, "annotated_methods_size = %d", annotatedMethodsSize);
69 int annotatedParameterSize = dexFile.readSmallUint(out.getCursor());
70 out.annotate(4, "annotated_parameters_size = %d", annotatedParameterSize)
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/profiler/
ProfilerCodeGenBase.cpp 33 Formatter& out, const ComponentSpecificationMessage& message) {
35 out << "#ifndef __VTS_PROFILER_" << component_fq_name.tokenName()
37 out << "#define __VTS_PROFILER_" << component_fq_name.tokenName()
39 out << "\n\n";
40 GenerateHeaderIncludeFiles(out, message);
41 GenerateUsingDeclaration(out, message);
42 GenerateOpenNameSpaces(out, message);
49 GenerateProfilerMethodDeclForAttribute(out, attribute);
52 out << "extern \"C\" {\n";
53 out.indent()
    [all...]
  /external/google-breakpad/src/client/linux/dump_writer_common/
ucontext_reader.cc 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 void UContextReader::FillCPUContext(RawContextCPU *out, const ucontext *uc,
55 out->context_flags = MD_CONTEXT_X86_FULL |
58 out->gs = regs[REG_GS];
59 out->fs = regs[REG_FS];
60 out->es = regs[REG_ES];
61 out->ds = regs[REG_DS];
63 out->edi = regs[REG_EDI];
64 out->esi = regs[REG_ESI];
65 out->ebx = regs[REG_EBX]
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/util/
Strings.java 20 StringBuilder out = new StringBuilder("\""); local
24 out.append("\\n");
27 out.append("\\t");
30 out.append("\\\\");
33 out.append("\\\'");
36 out.append("\\\"");
39 out.append(in.charAt(pos));
42 out.append('\"');
43 return out.toString();
  /external/e2fsprogs/lib/uuid/
gen_uuid_nt.c 26 // OUT PULONG p1,
27 // OUT PULONG p2,
28 // OUT PULONG p3,
29 // OUT PUCHAR Seed // 6 bytes
82 void uuid_generate(uuid_t out)
87 ((NtAllocateUuids_2000)NtAllocateUuids)(out, ((char*)out)+8, ((char*)out)+12, &seed[0] );
91 NtAllocateUuids(out, ((char*)out)+8, ((char*)out)+12)
    [all...]
  /art/test/965-default-verify/src/
Main.java 18 System.out.println("Create Main instance");
20 System.out.println("Calling functions on concrete Main");
22 System.out.println("Calling functions on interface Iface");
27 System.out.println("Calling verifiable function on Main");
28 System.out.println(m.sayHi());
29 System.out.println("Calling unverifiable function on Main");
32 System.out.println("Unexpected no error Thrown on Main");
34 System.out.println("Expected NSME Thrown on Main");
36 System.out.println("Unexpected Error Thrown on Main");
37 e.printStackTrace(System.out);
    [all...]
  /system/tools/hidl/
generateVts.cpp 32 void AST::emitVtsTypeDeclarations(Formatter& out) const {
35 return iface->emitVtsAttributeDeclaration(out);
43 out << "attribute: {\n";
44 out.indent();
45 type->emitVtsTypeDeclarations(out);
46 out.unindent();
47 out << "}\n\n";
51 void AST::generateVts(Formatter& out) const {
55 out << "component_class: HAL_HIDL\n";
56 out << "component_type_version: " << mPackage.version(
    [all...]
  /art/test/966-default-conflict/src/
Main.java 18 System.out.println("Create Main instance");
20 System.out.println("Calling functions on concrete Main");
22 System.out.println("Calling functions on interface Iface");
24 System.out.println("Calling functions on interface Iface2");
28 System.out.println("Calling non-conflicting function on Main");
29 System.out.println(m.charge());
30 System.out.println("Calling conflicting function on Main");
32 System.out.println(m.sayHi());
33 System.out.println("Unexpected no error Thrown on Main");
35 System.out.println("Unexpected AME Thrown on Main")
    [all...]
  /art/test/967-default-ame/src/
Main.java 18 System.out.println("Create Main instance");
20 System.out.println("Calling functions on concrete Main");
22 System.out.println("Calling functions on interface Iface");
24 System.out.println("Calling functions on interface Iface2");
28 System.out.println("Calling non-abstract function on Main");
29 System.out.println(m.charge());
30 System.out.println("Calling abstract function on Main");
32 System.out.println(m.sayHi());
33 System.out.println("Unexpected no error Thrown on Main");
35 System.out.println("Expected AME Thrown on Main")
    [all...]
  /art/test/024-illegal-access/src/
Main.java 21 System.out.println("ERROR: call 1 not expected to succeed");
24 System.out.println("Got expected failure 1");
27 System.out.println("Got expected failure 1");
32 System.out.println("ERROR: call 2 not expected to succeed");
35 System.out.println("Got expected failure 2");
40 System.out.println("ERROR: call 3 not expected to succeed");
43 System.out.println("Got expected failure 3");
46 System.out.println("Got expected failure 3");
51 System.out.println("ERROR: call 4 not expected to succeed");
54 System.out.println("Got expected failure 4")
    [all...]
  /external/toybox/toys/posix/
echo.c 43 int i = 0, out; local
61 if (!(out = *(c++))) break;
64 if (out == '\\' && *c) {
67 if (n) out = n;
70 out = 0;
71 while (*c>='0' && *c<='7' && n++<3) out = (out*8)+*(c++)-'0';
73 out = 0;
75 if (*c>='0' && *c<='9') out = (out*16)+*(c++)-'0'
    [all...]
  /art/test/077-method-override/src2/
Base.java 19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 // System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
80 System.out.println("overrideStaticWithVirtual: Base")
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string.io/
stream_insert.pass.cpp 26 std::ostringstream out; local
28 out << s;
29 assert(out.good());
30 assert(s == out.str());
33 std::ostringstream out; local
35 out.width(12);
36 out << s;
37 assert(out.good());
38 assert(" " + s == out.str());
41 std::wostringstream out; local
48 std::wostringstream out; local
58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
FinishableWrapperOutputStream.java 25 protected OutputStream out; field in class:FinishableWrapperOutputStream
31 public FinishableWrapperOutputStream(OutputStream out) {
32 this.out = out;
36 * Calls {@link java.io.OutputStream#write(int) out.write(b)}.
39 out.write(b);
43 * Calls {@link java.io.OutputStream#write(byte[]) out.write(buf)}.
46 out.write(buf);
51 out.write(buf, off, len)}.
54 out.write(buf, off, len)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.io/
stream_insert.pass.cpp 26 std::ostringstream out; local
28 out << s;
29 assert(out.good());
30 assert(s == out.str());
33 std::ostringstream out; local
35 out.width(12);
36 out << s;
37 assert(out.good());
38 assert(" " + s == out.str());
41 std::wostringstream out; local
48 std::wostringstream out; local
58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out; local
    [all...]
  /system/tools/hidl/c2hal/
Note.cpp 36 void Note::generateSource(Formatter &out) const {
37 out.setLinePrefix("//");
38 out << "NOTE:\n";
40 out.indent();
42 mDecl->generateSource(out);
44 out << getName();
46 out.unindent();
48 out.unsetLinePrefix();
49 out << "\n";
  /external/vogar/src/vogar/
Vogar.java 207 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]...");
208 System.out.println();
209 System.out.println(" <actions>: .java files, directories, or class names.");
210 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks");
211 System.out.println(" or executable Java classes.");
212 System.out.println();
213 System.out.println(" When passing in a JUnit test class, it may have \"#method_name\"");
214 System.out.println(" appended to it, to specify a single test method.");
215 System.out.println();
216 System.out.println(" [target args]: arguments passed to the target process. This is only useful when")
    [all...]
  /art/test/126-miranda-multidex/src/
MirandaClass.java 38 System.out.println("inInterfaceDummy1");
41 System.out.println("inInterfaceDummy2");
44 System.out.println("inInterfaceDummy3");
47 System.out.println("inInterfaceDummy4");
50 System.out.println("inInterfaceDummy5");
MirandaClass2.java 28 System.out.println("inInterfaceDummy1");
31 System.out.println("inInterfaceDummy2");
34 System.out.println("inInterfaceDummy3");
37 System.out.println("inInterfaceDummy4");
40 System.out.println("inInterfaceDummy5");
  /external/tpm2/
GetRandom.c 13 GetRandom_Out *out // OUT: output parameter list
21 out->randomBytes.t.size = sizeof(TPMU_HA);
23 out->randomBytes.t.size = in->bytesRequested;
25 CryptGenerateRandom(out->randomBytes.t.size, out->randomBytes.t.buffer);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
MatrixUtils.h 63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6];
73 out[2][1] = in[7];
74 out[2][2] = in[8]
    [all...]

Completed in 383 milliseconds

1 2 3 45 6 7 8 91011>>