OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:out
(Results
126 - 150
of
4549
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/art/test/519-bound-load-class/src/
Main.java
29
System.
out
.println((Main)o);
36
System.
out
.println((Main)o);
/build/soong/cmd/soong_glob/
soong_glob.go
17
//
out
build.ninja regenerations when non-matching files are added. See
30
out
= flag.String("o", "", "file to write list of files that match glob")
55
fmt.Fprintf(os.Stderr, "usage: soong_glob -o
out
glob\n")
63
if *
out
== "" {
72
_, err := glob.GlobWithDepFile(flag.Arg(0), *
out
, *
out
+".d", excludes)
29
out
= flag.String("o", "", "file to write list of files that match glob")
var
/cts/hostsidetests/monkey/src/com/android/cts/monkey/
CategoryTest.java
22
String
out
= mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] + " 5000");
local
23
assertTrue(
out
.contains("cmp=com.android.cts.monkey/.MonkeyActivity"));
24
assertTrue(
out
.contains("cmp=com.android.cts.monkey/.BaboonActivity"));
28
String
out
= mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0]
local
30
assertTrue(
out
.contains("cmp=com.android.cts.monkey/.MonkeyActivity"));
31
assertFalse(
out
.contains("cmp=com.android.cts.monkey/.BaboonActivity"));
33
out
= mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0]
35
assertFalse(
out
.contains("cmp=com.android.cts.monkey/.MonkeyActivity"));
36
assertTrue(
out
.contains("cmp=com.android.cts.monkey/.BaboonActivity"));
40
String
out
= mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0
local
[
all
...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java
110
public void writeTo(AnnotatedOutput
out
) {
113
out
.writeShort(0x300 | DalvOps.NOP);
114
out
.writeShort(elemWidth);
115
out
.writeInt(initLength);
123
out
.writeByte((byte) ((CstLiteral32) cst).getIntBits());
130
out
.writeShort((short) ((CstLiteral32) cst).getIntBits());
137
out
.writeInt(((CstLiteral32) cst).getIntBits());
144
out
.writeLong(((CstLiteral64) cst).getLongBits());
154
out
.writeByte(0x00);
/dalvik/dx/src/com/android/dx/command/
DxConsole.java
25
* By default the PrintStream objects link to {@code System.
out
} and
31
* Standard output stream. Links to {@code System.
out
} by default.
33
public static PrintStream
out
= System.
out
;
field in class:DxConsole
/dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java
112
public void writeTo(AnnotatedOutput
out
) {
115
out
.writeShort(Opcodes.FILL_ARRAY_DATA_PAYLOAD);
116
out
.writeShort(elemWidth);
117
out
.writeInt(initLength);
125
out
.writeByte((byte) ((CstLiteral32) cst).getIntBits());
132
out
.writeShort((short) ((CstLiteral32) cst).getIntBits());
139
out
.writeInt(((CstLiteral32) cst).getIntBits());
146
out
.writeLong(((CstLiteral64) cst).getLongBits());
156
out
.writeByte(0x00);
/dalvik/libdex/
Leb128.h
46
* Note: We don't check to see if cur is
out
of
89
* Note: We don't check to see if cur is
out
of
136
u1
out
= data & 0x7f;
local
137
if (
out
!= data) {
138
*ptr++ =
out
| 0x80;
141
*ptr++ =
out
;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java
32
* @param
out
the output stream to wrap
34
public CountingOutputStream(OutputStream
out
) {
35
super(
out
);
49
out
.write(b);
55
out
.write(b);
61
out
.write(b, off, len);