HomeSort by relevance Sort by last modified time
    Searched refs:output_str (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/sync/internal_api/public/base/
unique_position.cc 466 // Appends an encoded run length to |output_str|.
469 std::string* output_str) {
482 output_str->append(1, 0xff & (encoded_length >> 24U));
483 output_str->append(1, 0xff & (encoded_length >> 16U));
484 output_str->append(1, 0xff & (encoded_length >> 8U));
485 output_str->append(1, 0xff & (encoded_length >> 0U));
  /external/chromium_org/testing/gtest/scripts/
pump.py 837 output_str = ConvertFromPumpSource(file(file_path, 'r').read())
843 print output_str,
850 output_file.write(output_str)

Completed in 3794 milliseconds