OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:out
(Results
601 - 625
of
1601
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java
59
OutputStream
out
)
72
out
.write(encodingTable[(a1 >>> 2) & 0x3f]);
73
out
.write(encodingTable[((a1 << 4) | (a2 >>> 4)) & 0x3f]);
74
out
.write(encodingTable[((a2 << 2) | (a3 >>> 6)) & 0x3f]);
75
out
.write(encodingTable[a3 & 0x3f]);
93
out
.write(encodingTable[b1]);
94
out
.write(encodingTable[b2]);
95
out
.write(padding);
96
out
.write(padding);
106
out
.write(encodingTable[b1])
[
all
...]
/external/chromium_org/chrome/browser/history/android/
sqlite_cursor_unittest.cc
224
std::vector<uint8>
out
;
local
225
base::android::JavaByteArrayToByteVector(env, data.obj(), &
out
);
226
EXPECT_EQ(data_bytes->data().size(),
out
.size());
227
EXPECT_EQ(data_bytes->data()[0],
out
[0]);
/external/chromium_org/chrome/browser/search/suggestions/
suggestions_source.cc
46
std::vector<std::string>
out
;
local
47
out
.push_back(kHtmlHeader);
48
out
.push_back(kHtmlBody);
49
out
.push_back("<h1>Suggestions</h1>\n<ul>");
77
out
.push_back(line);
79
out
.push_back("</ul>");
80
out
.push_back(kHtmlFooter);
81
*output = JoinString(
out
, "");
87
std::vector<std::string>
out
;
local
88
out
.push_back(kHtmlHeader)
[
all
...]
/external/chromium_org/chrome/installer/test/
alternate_version_generator_main.cc
30
const char kOut[] = "
out
";
82
L" --
out
=OUT_PATH Path to output file. Default value is\n"
108
// Gets the path to the output file, putting the result in |
out
|.
109
void GetOutPath(const CommandLine& cmd_line, base::FilePath*
out
) {
110
DCHECK(
out
);
113
*
out
= base::FilePath(kDefaultOutPath);
115
*
out
= result;
149
base::FilePath
out
;
local
150
GetOutPath(*cmd_line, &
out
);
151
if (!cmd_line->HasSwitch(switches::kForce) && base::PathExists(
out
)) {
[
all
...]