HomeSort by relevance Sort by last modified time
    Searched refs:output_string (Results 1 - 25 of 33) sorted by null

1 2

  /system/core/include/cutils/
dir_hash.h 22 char *output_string, size_t max_output_string);
26 char **output_string);
  /external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h 21 #include "google/output_string.h"
145 // string output_string;
147 // if (!v.StartEncoding(&output_string)) {
151 // Process(output_string.data(), output_string.size());
152 // output_string.clear();
154 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
158 // // The encoding is appended to output_string at each call,
159 // // so clear output_string once its contents have been processed.
160 // Process(output_string.data(), output_string.size())
    [all...]
vcdecoder.h 21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(target)
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/google/
vcencoder.h 21 #include "google/output_string.h"
115 // string output_string;
117 // if (!v.StartEncoding(&output_string)) {
121 // Process(output_string.data(), output_string.size());
122 // output_string.clear();
124 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
128 // // The encoding is appended to output_string at each call,
129 // // so clear output_string once its contents have been processed.
130 // Process(output_string.data(), output_string.size())
    [all...]
vcdecoder.h 21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(target)
    [all...]
  /external/open-vcdiff/src/google/
vcencoder.h 21 #include "google/output_string.h"
115 // string output_string;
117 // if (!v.StartEncoding(&output_string)) {
121 // Process(output_string.data(), output_string.size());
122 // output_string.clear();
124 // if (!v.EncodeChunk(data_buf, data_len, &output_string)) {
128 // // The encoding is appended to output_string at each call,
129 // // so clear output_string once its contents have been processed.
130 // Process(output_string.data(), output_string.size())
    [all...]
vcdecoder.h 21 #include "google/output_string.h"
38 // if (!v.DecodeChunk(data, len, &output_string)) {
42 // process(output_string); // might have no new data, though
68 // they are appended to output_string.
73 // Note: we *append*, so the old contents of output_string stick around.
77 // output_string is guaranteed to be resized no more than once for each
83 OutputString<OutputType> output_string(output);
84 return DecodeChunkToInterface(data, len, &output_string);
88 OutputStringInterface* output_string);
161 OutputString<OutputType> output_string(target)
    [all...]
  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser.cc 70 std::string output_string; local
73 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
77 TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
78 AddNameValuePair(key, output_string);
88 std::string output_string; local
91 if (argc < 1 || !base::GetAppOutput(command_line, &output_string)) {
95 if (!ParseNameValuePairs(output_string, eq, delim)) {
  /external/chromium_org/chromeos/system/
name_value_pairs_parser.cc 112 std::string output_string; local
113 if (!GetToolOutput(argc, argv, output_string))
116 TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
117 AddNameValuePair(key, output_string);
140 std::string output_string; local
141 if (!GetToolOutput(argc, argv, output_string))
145 output_string, eq, delim, comment_delim);
  /external/chromium/sdch/open-vcdiff/src/
encodetable_test.cc 27 #include "google/output_string.h"
45 output_string(&out),
159 OutputString<string> output_string; member in class:open_vcdiff::__anon5675::CodeTableWriterTest
197 standard_writer.Output(&output_string);
203 standard_writer.Output(&output_string);
210 interleaved_writer.Output(&output_string);
215 exercise_writer.Output(&output_string);
224 standard_writer.Output(&output_string);
243 exercise_writer.Output(&output_string);
262 standard_writer.Output(&output_string);
    [all...]
varint_bigendian.h 110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
varint_bigendian.cc 22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
  /external/chromium_org/sdch/open-vcdiff/src/
encodetable_test.cc 26 #include "google/output_string.h"
44 output_string(&out),
143 OutputString<string> output_string; member in class:open_vcdiff::__anon12341::CodeTableWriterTest
181 standard_writer.Output(&output_string);
187 standard_writer.Output(&output_string);
194 interleaved_writer.Output(&output_string);
199 exercise_writer.Output(&output_string);
206 standard_writer.Output(&output_string);
224 exercise_writer.Output(&output_string);
242 standard_writer.Output(&output_string);
    [all...]
varint_bigendian.h 110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
varint_bigendian.cc 22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
vcdecoder.cc 43 #include "google/output_string.h"
339 OutputStringInterface* output_string);
515 // copies from decoded_target_ into output_string all the data that
518 void AppendNewOutputText(OutputStringInterface* output_string);
520 // Appends to output_string the portion of decoded_target_ that has
525 void FlushDecodedTarget(OutputStringInterface* output_string);
    [all...]
  /external/open-vcdiff/src/
encodetable_test.cc 26 #include "google/output_string.h"
44 output_string(&out),
143 OutputString<string> output_string; member in class:open_vcdiff::__anon25745::CodeTableWriterTest
181 standard_writer.Output(&output_string);
187 standard_writer.Output(&output_string);
194 interleaved_writer.Output(&output_string);
199 exercise_writer.Output(&output_string);
206 standard_writer.Output(&output_string);
224 exercise_writer.Output(&output_string);
242 standard_writer.Output(&output_string);
    [all...]
varint_bigendian.h 110 // Appends the varint representation of "value" to output_string.
113 OutputStringInterface* output_string);
varint_bigendian.cc 22 #include "google/output_string.h"
102 OutputStringInterface* output_string) {
105 output_string->append(&varint_buf[kMaxBytes - length], length);
vcdecoder.cc 43 #include "google/output_string.h"
339 OutputStringInterface* output_string);
515 // copies from decoded_target_ into output_string all the data that
518 void AppendNewOutputText(OutputStringInterface* output_string);
520 // Appends to output_string the portion of decoded_target_ that has
525 void FlushDecodedTarget(OutputStringInterface* output_string);
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_unittest.cc 53 string16 output_string; local
56 EXPECT_TRUE(data2.GetString(&output_string));
57 EXPECT_EQ(url_spec, UTF16ToUTF8(output_string));
  /system/core/libcutils/
dir_hash.c 34 * Copies, if it fits within max_output_string bytes, into output_string
40 char *output_string, size_t max_output_string) {
94 output_string, max_output_string);
100 n = snprintf(output_string + used, max_output_string - used,
104 n = snprintf(output_string, max_output_string,
261 * The string is returned as *output_string; the return value is the length
266 char **output_string) {
332 *output_string = buf;
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.h 154 string16* output_string) const;
spellcheck_worditerator.cc 404 string16* output_string) const {
422 attribute_->OutputChar(c, output_string);
424 return !output_string->empty();
  /external/chromium/googleurl/src/
url_util_unittest.cc 127 std::string output_string; local
128 url_canon::StdStringCanonOutput output(&output_string);
135 return output_string;

Completed in 1380 milliseconds

1 2