Searched defs:out (Results 1 - 13 of 13) sorted by relevance

/build/kati/
H A Dfind_test.cc41 string out; local
42 if (!FindEmulator::Get()->HandleFind(cmd, fc, Loc(), &out)) {
47 for (StringPiece tok : WordScanner(out)) {
H A Dexec.cc109 string out; local
113 &out);
114 printf("%s", out.c_str());
H A Dstrutil.cc151 void AppendString(StringPiece str, string* out) { argument
152 out->append(str.begin(), str.end());
214 string* out) const {
217 AppendString(subst, out);
220 AppendString(str, out);
228 AppendString(subst, out);
231 AppendString(subst.substr(0, subst_percent_index), out);
233 str.size() - pat_.size() + 1), out);
234 AppendString(subst.substr(subst_percent_index + 1), out);
238 AppendString(str, out);
[all...]
H A Dninja.cc103 static bool GetDepfileFromCommandImpl(StringPiece cmd, string* out) { argument
112 mf.AppendToString(out);
122 StripExt(o).AppendToString(out);
123 *out += ".d";
127 bool GetDepfileFromCommand(string* cmd, string* out) { argument
129 if (!GetDepfileFromCommandImpl(*cmd, out))
141 StripExt(*out).AppendToString(&p);
144 const string rm_f = "; rm -f " + *out;
156 StripExt(Basename(*out)).AppendToString(&as);
163 *cmd += *out;
350 GetDescriptionFromCommand(StringPiece cmd, string *out) argument
[all...]
H A Dfunc.cc46 // NinjaGenerator::TranslateCommand. Factor them out.
54 // stripped out.
573 string out; local
575 ShellFuncImpl(shell, shellflag, cmd, ev->loc(), &out, &fc);
583 cr->result = out;
586 *s += out;
716 string out; local
717 out.resize(len);
718 ssize_t r = HANDLE_EINTR(read(fd, &out[0], len));
727 if (out
[all...]
/build/make/tools/ijar/
H A Dzip_main.cc71 // puting the result in "out". "size" specify the size of the output buffer
72 void concat_path(char* out, const size_t size, argument
76 strncpy(out, path1, size - 1);
77 out[size-1] = 0;
79 out[l] = '/';
81 out[l] = 0;
84 strncat(out, path2, size - 1 - l);
/build/tools/ijar/
H A Dzip_main.cc71 // puting the result in "out". "size" specify the size of the output buffer
72 void concat_path(char* out, const size_t size, argument
76 strncpy(out, path1, size - 1);
77 out[size-1] = 0;
79 out[l] = '/';
81 out[l] = 0;
84 strncat(out, path2, size - 1 - l);
/build/make/tools/atree/
H A Dfiles.cpp62 split_line(const char* p, vector<string>* out) argument
94 out->push_back(string(start, len));
109 out->push_back(string(start, len));
219 fprintf(stderr, "out of memory (%ld)\n", size);
/build/tools/atree/
H A Dfiles.cpp62 split_line(const char* p, vector<string>* out) argument
94 out->push_back(string(start, len));
109 out->push_back(string(start, len));
219 fprintf(stderr, "out of memory (%ld)\n", size);
/build/make/tools/signapk/src/com/android/signapk/
H A DSignApk.java200 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
201 System.out.flush();
308 /** Sign data and write the digital signature to 'out'. */
311 OutputStream out)
335 DEROutputStream dos = new DEROutputStream(out);
346 JarOutputStream out,
353 out.putNextEntry(outEntry);
355 out.write(entryData);
374 JarOutputStream out,
463 out
309 writeSignatureBlock( CMSTypedData data, X509Certificate publicKey, PrivateKey privateKey, int hash, OutputStream out) argument
343 addV1Signature( ApkSignerEngine apkSigner, ApkSignerEngine.OutputJarSignatureRequest v1Signature, JarOutputStream out, long timestamp) argument
370 copyFiles( JarFile in, Pattern ignoredFilenamePattern, ApkSignerEngine apkSigner, JarOutputStream out, long timestamp, int defaultAlignment) argument
581 WholeFileSignerOutputStream(OutputStream out, OutputStream tee) argument
679 write(OutputStream out) argument
[all...]
/build/tools/signapk/src/com/android/signapk/
H A DSignApk.java200 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
201 System.out.flush();
308 /** Sign data and write the digital signature to 'out'. */
311 OutputStream out)
335 DEROutputStream dos = new DEROutputStream(out);
346 JarOutputStream out,
353 out.putNextEntry(outEntry);
355 out.write(entryData);
374 JarOutputStream out,
463 out
309 writeSignatureBlock( CMSTypedData data, X509Certificate publicKey, PrivateKey privateKey, int hash, OutputStream out) argument
343 addV1Signature( ApkSignerEngine apkSigner, ApkSignerEngine.OutputJarSignatureRequest v1Signature, JarOutputStream out, long timestamp) argument
370 copyFiles( JarFile in, Pattern ignoredFilenamePattern, ApkSignerEngine apkSigner, JarOutputStream out, long timestamp, int defaultAlignment) argument
581 WholeFileSignerOutputStream(OutputStream out, OutputStream tee) argument
679 write(OutputStream out) argument
[all...]
/build/core/
H A Ddefinitions.mk141 # Figure out where we are.
401 # matching pattern $2, filtering out files $3
408 $(sort $(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
464 $(if $(filter-out ./ .,$(1)), \
527 ## nice to be able to grep for that string to find out if
669 ## Convert "core ext framework" to "out/.../javalib.jar ..."
709 ## Convert "core ext framework" to "out/.../classes.jack ..."
733 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
756 ## Read the word out of a colon-separated list of words.
826 $(filter-out \
[all...]
/build/make/core/
H A Ddefinitions.mk141 # Figure out where we are.
401 # matching pattern $2, filtering out files $3
408 $(sort $(filter-out $(patsubst %,$(1)/%,$(3)),$(patsubst ./%,%,$(shell cd \
464 $(if $(filter-out ./ .,$(1)), \
527 ## nice to be able to grep for that string to find out if
669 ## Convert "core ext framework" to "out/.../javalib.jar ..."
709 ## Convert "core ext framework" to "out/.../classes.jack ..."
733 $(if $(filter-out __,_$(subst $(strip $(1)),,$(strip $(2)))$(subst $(strip $(2)),,$(strip $(1)))_),,true), \
756 ## Read the word out of a colon-separated list of words.
826 $(filter-out \
[all...]

Completed in 165 milliseconds