Searched defs:out (Results 251 - 275 of 2458) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/gfx/
H A Dcolor_utils_unittest.cc49 SkColor out = HSLToSkColor(hsl, 255); local
50 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
51 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
52 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
62 SkColor out = HSLToSkColor(hsl, 255); local
63 EXPECT_EQ(SkColorGetR(out), SkColorGetR(rgb));
64 EXPECT_EQ(SkColorGetG(out), SkColorGetG(rgb));
65 EXPECT_EQ(SkColorGetB(out), SkColorGetB(rgb));
/external/chromium_org/ui/views/
H A Ddebug_utils.cc17 std::wostringstream* out) {
20 *out << L' ';
21 *out << base::UTF8ToWide(view->GetClassName());
22 *out << L' ';
23 *out << view->id();
24 *out << L' ';
25 *out << view->x() << L"," << view->y() << L",";
26 *out << view->bounds().right() << L"," << view->bounds().bottom();
27 *out << L' ';
28 *out << vie
15 PrintViewHierarchyImp(const View* view, int indent, std::wostringstream* out) argument
35 PrintFocusHierarchyImp(const View* view, int indent, std::wostringstream* out) argument
60 std::wostringstream out; local
68 std::wostringstream out; local
[all...]
/external/clang/lib/Basic/
H A DObjCRuntime.cpp28 raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) { argument
30 case ObjCRuntime::MacOSX: out << "macosx"; break;
31 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break;
32 case ObjCRuntime::iOS: out << "ios"; break;
33 case ObjCRuntime::GNUstep: out << "gnustep"; break;
34 case ObjCRuntime::GCC: out << "gcc"; break;
35 case ObjCRuntime::ObjFW: out << "objfw"; break;
38 out << '-' << value.getVersion();
40 return out;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DFixedSizeInsn.java58 public final void writeTo(AnnotatedOutput out) { argument
59 getOpcode().getFormat().writeTo(out, this);
H A DOddSpacer.java49 public void writeTo(AnnotatedOutput out) { argument
51 out.writeShort(InsnFormat.codeUnit(Opcodes.NOP, 0));
H A DZeroSizeInsn.java47 public final void writeTo(AnnotatedOutput out) { argument
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm10x.java69 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
70 write(out, opcodeUnit(insn, 0));
H A DForm3rc.java98 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
104 write(out, opcodeUnit(insn, count), (short) cpi, (short) firstReg);
H A DForm5rc.java97 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
103 write(out, opcodeUnit(insn), cpi, (short) count, (short) firstReg);
H A DSpecialFormat.java69 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
74 if (out.annotates()) {
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
H A DHeaderItem.java56 public void writeTo(DexFile file, AnnotatedOutput out) { argument
66 if (out.annotates()) {
67 out.annotate(8, "magic: " + new CstString(magic).toQuoted());
68 out.annotate(4, "checksum");
69 out.annotate(20, "signature");
70 out.annotate(4, "file_size: " +
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
74 out.annotate(4, "link_size: 0");
75 out
[all...]
H A DItem.java77 * @param out {@code non-null;} where to write to
79 public abstract void writeTo(DexFile file, AnnotatedOutput out); argument
H A DMemberIdItem.java61 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
69 if (out.annotates()) {
70 out.annotate(0, indexString() + ' ' + cst.toHuman());
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
72 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
77 out.writeShort(classIdx);
78 out.writeShort(typoidIdx);
79 out.writeInt(nameIdx);
84 * this item, in order that it may be written out
[all...]
H A DStringDataItem.java71 public void writeTo0(DexFile file, AnnotatedOutput out) { argument
75 if (out.annotates()) {
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
81 out.writeUleb128(utf16Size);
82 out.write(bytes);
83 out.writeByte(0);
H A DTypeIdItem.java58 public void writeTo(DexFile file, AnnotatedOutput out) { argument
63 if (out.annotates()) {
64 out.annotate(0, indexString() + ' ' + descriptor.toHuman());
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DExceptionWithContext.java93 public void printStackTrace(PrintStream out) { argument
94 super.printStackTrace(out);
95 out.println(context);
100 public void printStackTrace(PrintWriter out) { argument
101 super.printStackTrace(out);
102 out.println(context);
133 * @param out {@code non-null;} where to print to
135 public void printContext(PrintStream out) { argument
136 out.println(getMessage());
137 out
145 printContext(PrintWriter out) argument
[all...]
H A DLeb128Utils.java129 * Writes {@code value} as an unsigned integer to {@code out}, starting at
132 public static void writeUnsignedLeb128(ByteOutput out, int value) { argument
136 out.writeByte((byte) ((value & 0x7f) | 0x80));
141 out.writeByte((byte) (value & 0x7f));
145 * Writes {@code value} as a signed integer to {@code out}, starting at
148 public static void writeSignedLeb128(ByteOutput out, int value) { argument
157 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
H A DMutf8.java30 * Decodes bytes from {@code in} into {@code out} until a delimiter 0x00 is
33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { argument
38 return new String(out, 0, s);
40 out[s] = a;
48 out[s++] = (char) (((a & 0x1F) << 6) | (b & 0x3F));
55 out[s++] = (char) (((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F));
/external/e2fsprogs/lib/uuid/
H A Dunparse.c51 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument
56 sprintf(out, fmt,
63 void uuid_unparse_lower(const uuid_t uu, char *out) argument
65 uuid_unparse_x(uu, out, fmt_lower);
68 void uuid_unparse_upper(const uuid_t uu, char *out) argument
70 uuid_unparse_x(uu, out, fmt_upper);
73 void uuid_unparse(const uuid_t uu, char *out) argument
75 uuid_unparse_x(uu, out, FMT_DEFAULT);
/external/e2fsprogs/resize/
H A Dtest_extent.c17 void do_test(FILE *in, FILE *out);
19 void do_test(FILE *in, FILE *out) argument
41 fputs(buf, out);
71 fprintf(out, "# Error: %s\n",
78 fputs(no_table, out);
90 fprintf(out, "# Answer: %llu%s\n", num2,
93 ext2fs_extent_dump(extent, out);
105 fprintf(out, "# %llu -> %llu (%llu)\n",
109 fputs("# Syntax error\n", out);
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptions.java67 static void writeExternal (final CoverageOptions options, final DataOutput out) argument
70 out.writeBoolean (options.m_excludeSyntheticMethods);
71 out.writeBoolean (options.m_excludeBridgeMethods);
72 out.writeBoolean (options.m_doSUIDCompensation);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DElementList.java33 public void emit (final HTMLWriter out) argument
38 content.emit (out);
H A DHTMLWriter.java30 public HTMLWriter (final Writer out) argument
32 if (out == null) throw new IllegalArgumentException ("null input: out");
34 m_out = out;
H A DText.java28 public void emit (final HTMLWriter out) argument
33 out.write (Strings.HTMLEscapeSP (m_text));
35 out.write (Strings.HTMLEscape (m_text));

Completed in 1170 milliseconds

<<11121314151617181920>>