input              74 android_webview/browser/hardware_renderer.cc   const DrawGLInput input = shared_renderer_state_->GetDrawGLInput();
input              98 android_webview/browser/hardware_renderer.cc                        input.global_visible_rect.width() *
input              99 android_webview/browser/hardware_renderer.cc                        input.global_visible_rect.height();
input             111 android_webview/browser/hardware_renderer.cc   transform.Translate(input.scroll_offset.x(), input.scroll_offset.y());
input             127 android_webview/browser/hardware_renderer.cc     result->frame_id = input.frame_id;
input             129 android_webview/browser/hardware_renderer.cc         clip_rect.Contains(input.global_visible_rect);
input              59 android_webview/browser/shared_renderer_state.cc void SharedRendererState::SetDrawGLInput(const DrawGLInput& input) {
input              60 android_webview/browser/shared_renderer_state.cc   draw_gl_input_ = input;
input              52 android_webview/browser/shared_renderer_state.h   void SetDrawGLInput(const DrawGLInput& input);
input             119 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java     private InterceptedRequestData stringToInterceptedRequestData(String input) throws Throwable {
input             124 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientShouldInterceptRequestTest.java                 mimeType, encoding, new ByteArrayInputStream(input.getBytes(encoding)));
input             647 base/android/java/src/org/chromium/base/library_loader/Linker.java         FileInputStream input;
input             652 base/android/java/src/org/chromium/base/library_loader/Linker.java             input = new FileInputStream(new File("/dev/urandom"));
input             661 base/android/java/src/org/chromium/base/library_loader/Linker.java                 result = (result << 8) | (input.read() & 255);
input             668 base/android/java/src/org/chromium/base/library_loader/Linker.java                 input.close();
input              11 base/base64.cc void Base64Encode(const StringPiece& input, std::string* output) {
input              13 base/base64.cc   temp.resize(modp_b64_encode_len(input.size()));  // makes room for null byte
input              16 base/base64.cc   size_t output_size = modp_b64_encode(&(temp[0]), input.data(), input.size());
input              22 base/base64.cc bool Base64Decode(const StringPiece& input, std::string* output) {
input              24 base/base64.cc   temp.resize(modp_b64_decode_len(input.size()));
input              27 base/base64.cc   size_t input_size = input.size();
input              28 base/base64.cc   size_t output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
input              16 base/base64.h  BASE_EXPORT void Base64Encode(const StringPiece& input, std::string* output);
input              20 base/base64.h  BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
input              45 base/debug/debugger_win.cc bool StringReplace(const wchar_t* input, int value, wchar_t* output,
input              48 base/debug/debugger_win.cc   int input_len = lstrlen(input);
input              53 base/debug/debugger_win.cc     if (input[i] == L'%' && input[i + 1] == L'l' && input[i + 2] == L'd') {
input              64 base/debug/debugger_win.cc       output[current_output_len] = input[i];
input              92 base/debug/proc_maps_linux.cc bool ParseProcMaps(const std::string& input,
input             100 base/debug/proc_maps_linux.cc   SplitString(input, '\n', &lines);
input              84 base/debug/proc_maps_linux.h BASE_EXPORT bool ParseProcMaps(const std::string& input,
input             143 base/debug/proc_maps_linux_unittest.cc     const char* input;
input             172 base/debug/proc_maps_linux_unittest.cc         base::StringPrintf("kTestCases[%zu] = %s", i, kTestCases[i].input));
input             175 base/debug/proc_maps_linux_unittest.cc     EXPECT_TRUE(ParseProcMaps(kTestCases[i].input, &regions));
input             301 base/debug/trace_event_memory.cc void AppendHeapProfileAsTraceFormat(const char* input, std::string* output) {
input             317 base/debug/trace_event_memory.cc   const char* mapped_libraries = strstr(input, "MAPPED_LIBRARIES");
input             319 base/debug/trace_event_memory.cc     input_string.assign(input, mapped_libraries - input);
input             321 base/debug/trace_event_memory.cc     input_string.assign(input);
input             129 base/debug/trace_event_memory.h BASE_EXPORT void AppendHeapProfileAsTraceFormat(const char* input,
input             130 base/debug/trace_event_memory_unittest.cc   const char input[] =
input             135 base/debug/trace_event_memory_unittest.cc   AppendHeapProfileTotalsAsTraceFormat(input, &output);
input             152 base/debug/trace_event_memory_unittest.cc   std::ostringstream input;
input             153 base/debug/trace_event_memory_unittest.cc   input << "   68:     4195 [  1087:    98009] @ " << &kCategory << " "
input             164 base/debug/trace_event_memory_unittest.cc       AppendHeapProfileLineAsTraceFormat(input.str().c_str(), &output));
input             204 base/debug/trace_event_memory_unittest.cc   const char input[] =
input             226 base/debug/trace_event_memory_unittest.cc   AppendHeapProfileAsTraceFormat(input, &output);
input             106 base/environment.cc size_t ParseEnvLine(const NativeEnvironmentString::value_type* input,
input             110 base/environment.cc   while (input[cur] && input[cur] != '=')
input             112 base/environment.cc   *key = NativeEnvironmentString(&input[0], cur);
input             115 base/environment.cc   while (input[cur])
input              49 base/file_util.h BASE_EXPORT FilePath MakeAbsoluteFilePath(const FilePath& input);
input             189 base/file_util_posix.cc FilePath MakeAbsoluteFilePath(const FilePath& input) {
input             192 base/file_util_posix.cc   if (realpath(input.value().c_str(), full_path) == NULL)
input              40 base/file_util_win.cc FilePath MakeAbsoluteFilePath(const FilePath& input) {
input              43 base/file_util_win.cc   if (!_wfullpath(file_path, input.value().c_str(), MAX_PATH))
input              98 base/files/file_path.cc bool AreAllSeparators(const StringType& input) {
input              99 base/files/file_path.cc   for (StringType::const_iterator it = input.begin();
input             100 base/files/file_path.cc       it != input.end(); ++it) {
input              20 base/files/file_path_unittest.cc   const FilePath::CharType* input;
input              25 base/files/file_path_unittest.cc   const FilePath::CharType* input;
input             143 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input             144 base/files/file_path_unittest.cc     FilePath observed = input.DirName();
input             146 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             230 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input             231 base/files/file_path_unittest.cc     FilePath observed = input.BaseName();
input             233 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             386 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input             387 base/files/file_path_unittest.cc     FilePath observed = input.StripTrailingSeparators();
input             389 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             454 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input             455 base/files/file_path_unittest.cc     bool observed = input.IsAbsolute();
input             457 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             500 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input             502 base/files/file_path_unittest.cc     input.GetComponents(&comps);
input             510 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             770 base/files/file_path_unittest.cc     FilePath path(cases[i].input);
input             779 base/files/file_path_unittest.cc     FilePath path(cases[i].input);
input             874 base/files/file_path_unittest.cc     FilePath path(cases[i].input);
input            1117 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input            1118 base/files/file_path_unittest.cc     bool observed = input.ReferencesParent();
input            1120 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input            1218 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input            1219 base/files/file_path_unittest.cc     FilePath observed = input.NormalizePathSeparators();
input            1221 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input            1235 base/files/file_path_unittest.cc     FilePath input = FilePath(cases[i].input).NormalizePathSeparators();
input            1236 base/files/file_path_unittest.cc     EXPECT_EQ(cases[i].expected, input.EndsWithSeparator());
input            1248 base/files/file_path_unittest.cc     FilePath input = FilePath(cases[i].input).NormalizePathSeparators();
input            1250 base/files/file_path_unittest.cc     EXPECT_EQ(expected.value(), input.AsEndingWithSeparator().value());
input            1275 base/files/file_path_unittest.cc     FilePath input(cases[i].input);
input            1276 base/files/file_path_unittest.cc     bool observed = input.IsContentUri();
input            1278 base/files/file_path_unittest.cc               "i: " << i << ", input: " << input.value();
input             327 base/i18n/rtl_unittest.cc       string16 input = WideToUTF16(cases[i]);
input             328 base/i18n/rtl_unittest.cc       string16 ltr_wrap = input;
input             331 base/i18n/rtl_unittest.cc       EXPECT_EQ(ltr_wrap.substr(1, ltr_wrap.length() - 2), input);
input             334 base/i18n/rtl_unittest.cc       string16 rtl_wrap = input;
input             337 base/i18n/rtl_unittest.cc       EXPECT_EQ(rtl_wrap.substr(1, rtl_wrap.length() - 2), input);
input             367 base/i18n/rtl_unittest.cc       string16 input = WideToUTF16(cases[i].path);
input             368 base/i18n/rtl_unittest.cc       string16 output = GetDisplayStringInLTRDirectionality(input);
input             371 base/i18n/rtl_unittest.cc         EXPECT_NE(output, input);
input             373 base/i18n/rtl_unittest.cc         EXPECT_EQ(output, input);
input             100 base/i18n/streaming_utf8_validator_perftest.cc std::string ConstructRepeatedTestString(const std::string& input,
input             102 base/i18n/streaming_utf8_validator_perftest.cc   std::string output = input;
input             107 base/i18n/streaming_utf8_validator_perftest.cc     output += ConstructRepeatedTestString(input, length - output.length());
input             121 base/i18n/streaming_utf8_validator_perftest.cc   std::string input = input_start;
input             122 base/i18n/streaming_utf8_validator_perftest.cc   while (output.length() < length && input != input_end) {
input             123 base/i18n/streaming_utf8_validator_perftest.cc     input = NextUtf8Sequence(input);
input             124 base/i18n/streaming_utf8_validator_perftest.cc     output += input;
input             204 base/json/json_parser.cc Value* JSONParser::Parse(const StringPiece& input) {
input             210 base/json/json_parser.cc     input_copy.reset(new std::string(input.as_string()));
input             213 base/json/json_parser.cc     start_pos_ = input.data();
input             216 base/json/json_parser.cc   end_pos_ = start_pos_ + input.length();
input              67 base/json/json_parser.h   Value* Parse(const StringPiece& input);
input              17 base/json/json_parser_unittest.cc   JSONParser* NewTestParser(const std::string& input) {
input              19 base/json/json_parser_unittest.cc     parser->start_pos_ = input.data();
input              21 base/json/json_parser_unittest.cc     parser->end_pos_ = parser->start_pos_ + input.length();
input              34 base/json/json_parser_unittest.cc   std::string input("Hello world");
input              35 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input              38 base/json/json_parser_unittest.cc   for (size_t i = 1; i < input.length(); ++i) {
input              39 base/json/json_parser_unittest.cc     EXPECT_EQ(input[i], *parser->NextChar());
input              45 base/json/json_parser_unittest.cc   std::string input("\"test\",|");
input              46 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input              59 base/json/json_parser_unittest.cc   std::string input("[true, false],|");
input              60 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input              73 base/json/json_parser_unittest.cc   std::string input("{\"abc\":\"def\"},|");
input              74 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input              90 base/json/json_parser_unittest.cc   std::string input("true,|");
input              91 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input             103 base/json/json_parser_unittest.cc   input = "false,|";
input             104 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             115 base/json/json_parser_unittest.cc   input = "null,|";
input             116 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             128 base/json/json_parser_unittest.cc   std::string input("1234,|");
input             129 base/json/json_parser_unittest.cc   scoped_ptr<JSONParser> parser(NewTestParser(input));
input             141 base/json/json_parser_unittest.cc   input = "-1234,|";
input             142 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             153 base/json/json_parser_unittest.cc   input = "12.34,|";
input             154 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             166 base/json/json_parser_unittest.cc   input = "42e3,|";
input             167 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             178 base/json/json_parser_unittest.cc   input = "314159e-5,|";
input             179 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             190 base/json/json_parser_unittest.cc   input = "0.42e+3,|";
input             191 base/json/json_parser_unittest.cc   parser.reset(NewTestParser(input));
input             549 base/json/json_reader_unittest.cc   std::string input;
input             551 base/json/json_reader_unittest.cc       path.Append(FILE_PATH_LITERAL("bom_feff.json")), &input));
input             554 base/json/json_reader_unittest.cc   scoped_ptr<Value> root(reader.ReadToValue(input));
input             244 base/process/process_metrics.h BASE_EXPORT int ParseProcStatCPU(const std::string& input);
input             291 base/process/process_metrics.h BASE_EXPORT bool ParseProcMeminfo(const std::string& input,
input             296 base/process/process_metrics.h BASE_EXPORT bool ParseProcVmstat(const std::string& input,
input             388 base/process/process_metrics_linux.cc int ParseProcStatCPU(const std::string& input) {
input             390 base/process/process_metrics_linux.cc   if (!internal::ParseProcStats(input, &proc_stats))
input              14 base/sha1_unittest.cc   std::string input = "abc";
input              22 base/sha1_unittest.cc   std::string output = base::SHA1HashString(input);
input              29 base/sha1_unittest.cc   std::string input =
input              38 base/sha1_unittest.cc   std::string output = base::SHA1HashString(input);
input              45 base/sha1_unittest.cc   std::string input(1000000, 'a');
input              53 base/sha1_unittest.cc   std::string output = base::SHA1HashString(input);
input              60 base/sha1_unittest.cc   std::string input = "abc";
input              69 base/sha1_unittest.cc   base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
input              70 base/sha1_unittest.cc                       input.length(), output);
input              77 base/sha1_unittest.cc   std::string input =
input              87 base/sha1_unittest.cc   base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
input              88 base/sha1_unittest.cc                       input.length(), output);
input              95 base/sha1_unittest.cc   std::string input(1000000, 'a');
input             104 base/sha1_unittest.cc   base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
input             105 base/sha1_unittest.cc                       input.length(), output);
input             326 base/strings/string_number_conversions.cc bool HexStringToBytesT(const STR& input, std::vector<uint8>* output) {
input             328 base/strings/string_number_conversions.cc   size_t count = input.size();
input             334 base/strings/string_number_conversions.cc     if (!CharToDigit<16>(input[i * 2], &msb) ||
input             335 base/strings/string_number_conversions.cc         !CharToDigit<16>(input[i * 2 + 1], &lsb))
input             350 base/strings/string_number_conversions.cc bool StringToIntImpl(const StringPiece& input, VALUE* output) {
input             352 base/strings/string_number_conversions.cc       input.begin(), input.end(), output);
input             363 base/strings/string_number_conversions.cc bool String16ToIntImpl(const StringPiece16& input, VALUE* output) {
input             365 base/strings/string_number_conversions.cc       input.begin(), input.end(), output);
input             416 base/strings/string_number_conversions.cc bool StringToInt(const StringPiece& input, int* output) {
input             417 base/strings/string_number_conversions.cc   return StringToIntImpl(input, output);
input             420 base/strings/string_number_conversions.cc bool StringToInt(const StringPiece16& input, int* output) {
input             421 base/strings/string_number_conversions.cc   return String16ToIntImpl(input, output);
input             424 base/strings/string_number_conversions.cc bool StringToUint(const StringPiece& input, unsigned* output) {
input             425 base/strings/string_number_conversions.cc   return StringToIntImpl(input, output);
input             428 base/strings/string_number_conversions.cc bool StringToUint(const StringPiece16& input, unsigned* output) {
input             429 base/strings/string_number_conversions.cc   return String16ToIntImpl(input, output);
input             432 base/strings/string_number_conversions.cc bool StringToInt64(const StringPiece& input, int64* output) {
input             433 base/strings/string_number_conversions.cc   return StringToIntImpl(input, output);
input             436 base/strings/string_number_conversions.cc bool StringToInt64(const StringPiece16& input, int64* output) {
input             437 base/strings/string_number_conversions.cc   return String16ToIntImpl(input, output);
input             440 base/strings/string_number_conversions.cc bool StringToUint64(const StringPiece& input, uint64* output) {
input             441 base/strings/string_number_conversions.cc   return StringToIntImpl(input, output);
input             444 base/strings/string_number_conversions.cc bool StringToUint64(const StringPiece16& input, uint64* output) {
input             445 base/strings/string_number_conversions.cc   return String16ToIntImpl(input, output);
input             448 base/strings/string_number_conversions.cc bool StringToSizeT(const StringPiece& input, size_t* output) {
input             449 base/strings/string_number_conversions.cc   return StringToIntImpl(input, output);
input             452 base/strings/string_number_conversions.cc bool StringToSizeT(const StringPiece16& input, size_t* output) {
input             453 base/strings/string_number_conversions.cc   return String16ToIntImpl(input, output);
input             456 base/strings/string_number_conversions.cc bool StringToDouble(const std::string& input, double* output) {
input             461 base/strings/string_number_conversions.cc   *output = dmg_fp::strtod(input.c_str(), &endptr);
input             473 base/strings/string_number_conversions.cc          !input.empty() &&
input             474 base/strings/string_number_conversions.cc          input.c_str() + input.length() == endptr &&
input             475 base/strings/string_number_conversions.cc          !isspace(input[0]);
input             500 base/strings/string_number_conversions.cc bool HexStringToInt(const StringPiece& input, int* output) {
input             502 base/strings/string_number_conversions.cc     input.begin(), input.end(), output);
input             505 base/strings/string_number_conversions.cc bool HexStringToUInt(const StringPiece& input, uint32* output) {
input             507 base/strings/string_number_conversions.cc       input.begin(), input.end(), output);
input             510 base/strings/string_number_conversions.cc bool HexStringToInt64(const StringPiece& input, int64* output) {
input             512 base/strings/string_number_conversions.cc     input.begin(), input.end(), output);
input             515 base/strings/string_number_conversions.cc bool HexStringToUInt64(const StringPiece& input, uint64* output) {
input             517 base/strings/string_number_conversions.cc       input.begin(), input.end(), output);
input             520 base/strings/string_number_conversions.cc bool HexStringToBytes(const std::string& input, std::vector<uint8>* output) {
input             521 base/strings/string_number_conversions.cc   return HexStringToBytesT(input, output);
input              64 base/strings/string_number_conversions.h BASE_EXPORT bool StringToInt(const StringPiece& input, int* output);
input              65 base/strings/string_number_conversions.h BASE_EXPORT bool StringToInt(const StringPiece16& input, int* output);
input              67 base/strings/string_number_conversions.h BASE_EXPORT bool StringToUint(const StringPiece& input, unsigned* output);
input              68 base/strings/string_number_conversions.h BASE_EXPORT bool StringToUint(const StringPiece16& input, unsigned* output);
input              70 base/strings/string_number_conversions.h BASE_EXPORT bool StringToInt64(const StringPiece& input, int64* output);
input              71 base/strings/string_number_conversions.h BASE_EXPORT bool StringToInt64(const StringPiece16& input, int64* output);
input              73 base/strings/string_number_conversions.h BASE_EXPORT bool StringToUint64(const StringPiece& input, uint64* output);
input              74 base/strings/string_number_conversions.h BASE_EXPORT bool StringToUint64(const StringPiece16& input, uint64* output);
input              76 base/strings/string_number_conversions.h BASE_EXPORT bool StringToSizeT(const StringPiece& input, size_t* output);
input              77 base/strings/string_number_conversions.h BASE_EXPORT bool StringToSizeT(const StringPiece16& input, size_t* output);
input              85 base/strings/string_number_conversions.h BASE_EXPORT bool StringToDouble(const std::string& input, double* output);
input             100 base/strings/string_number_conversions.h BASE_EXPORT bool HexStringToInt(const StringPiece& input, int* output);
input             106 base/strings/string_number_conversions.h BASE_EXPORT bool HexStringToUInt(const StringPiece& input, uint32* output);
input             111 base/strings/string_number_conversions.h BASE_EXPORT bool HexStringToInt64(const StringPiece& input, int64* output);
input             117 base/strings/string_number_conversions.h BASE_EXPORT bool HexStringToUInt64(const StringPiece& input, uint64* output);
input             123 base/strings/string_number_conversions.h BASE_EXPORT bool HexStringToBytes(const std::string& input,
input              67 base/strings/string_number_conversions_unittest.cc     uint64 input;
input              77 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].output, Uint64ToString(cases[i].input));
input              82 base/strings/string_number_conversions_unittest.cc     std::string input;
input             114 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToInt(cases[i].input, &output));
input             117 base/strings/string_number_conversions_unittest.cc     string16 utf16_input = UTF8ToUTF16(cases[i].input);
input             126 base/strings/string_number_conversions_unittest.cc   const char input[] = "6\06";
input             127 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             145 base/strings/string_number_conversions_unittest.cc     std::string input;
input             178 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToUint(cases[i].input, &output));
input             181 base/strings/string_number_conversions_unittest.cc     string16 utf16_input = UTF8ToUTF16(cases[i].input);
input             190 base/strings/string_number_conversions_unittest.cc   const char input[] = "6\06";
input             191 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             209 base/strings/string_number_conversions_unittest.cc     std::string input;
input             248 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToInt64(cases[i].input, &output));
input             251 base/strings/string_number_conversions_unittest.cc     string16 utf16_input = UTF8ToUTF16(cases[i].input);
input             260 base/strings/string_number_conversions_unittest.cc   const char input[] = "6\06";
input             261 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             274 base/strings/string_number_conversions_unittest.cc     std::string input;
input             315 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToUint64(cases[i].input, &output));
input             318 base/strings/string_number_conversions_unittest.cc     string16 utf16_input = UTF8ToUTF16(cases[i].input);
input             327 base/strings/string_number_conversions_unittest.cc   const char input[] = "6\06";
input             328 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             345 base/strings/string_number_conversions_unittest.cc     std::string input;
input             385 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToSizeT(cases[i].input, &output));
input             388 base/strings/string_number_conversions_unittest.cc     string16 utf16_input = UTF8ToUTF16(cases[i].input);
input             397 base/strings/string_number_conversions_unittest.cc   const char input[] = "6\06";
input             398 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             411 base/strings/string_number_conversions_unittest.cc     std::string input;
input             448 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, HexStringToInt(cases[i].input, &output));
input             454 base/strings/string_number_conversions_unittest.cc   const char input[] = "0xc0ffee\09";
input             455 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             463 base/strings/string_number_conversions_unittest.cc     std::string input;
input             508 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, HexStringToUInt(cases[i].input, &output));
input             514 base/strings/string_number_conversions_unittest.cc   const char input[] = "0xc0ffee\09";
input             515 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             523 base/strings/string_number_conversions_unittest.cc     std::string input;
input             565 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, HexStringToInt64(cases[i].input, &output));
input             571 base/strings/string_number_conversions_unittest.cc   const char input[] = "0xc0ffee\09";
input             572 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             580 base/strings/string_number_conversions_unittest.cc     std::string input;
input             627 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, HexStringToUInt64(cases[i].input, &output));
input             633 base/strings/string_number_conversions_unittest.cc   const char input[] = "0xc0ffee\09";
input             634 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             642 base/strings/string_number_conversions_unittest.cc     const std::string input;
input             670 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, HexStringToBytes(cases[i].input, &output)) <<
input             671 base/strings/string_number_conversions_unittest.cc         i << ": " << cases[i].input;
input             674 base/strings/string_number_conversions_unittest.cc     ASSERT_EQ(output.size(), compare.size()) << i << ": " << cases[i].input;
input             676 base/strings/string_number_conversions_unittest.cc         i << ": " << cases[i].input;
input             682 base/strings/string_number_conversions_unittest.cc     std::string input;
input             719 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].success, StringToDouble(cases[i].input, &output));
input             728 base/strings/string_number_conversions_unittest.cc   const char input[] = "3.14\0159";
input             729 base/strings/string_number_conversions_unittest.cc   std::string input_string(input, arraysize(input) - 1);
input             737 base/strings/string_number_conversions_unittest.cc     double input;
input             750 base/strings/string_number_conversions_unittest.cc     EXPECT_EQ(cases[i].expected, DoubleToString(cases[i].input));
input             755 base/strings/string_number_conversions_unittest.cc   double input = 0;
input             756 base/strings/string_number_conversions_unittest.cc   memcpy(&input, input_bytes, arraysize(input_bytes));
input             757 base/strings/string_number_conversions_unittest.cc   EXPECT_EQ("1335179083776", DoubleToString(input));
input             760 base/strings/string_number_conversions_unittest.cc   input = 0;
input             761 base/strings/string_number_conversions_unittest.cc   memcpy(&input, input_bytes2, arraysize(input_bytes2));
input             762 base/strings/string_number_conversions_unittest.cc   EXPECT_EQ("1334890332160", DoubleToString(input));
input              17 base/strings/string_piece_unittest.cc   static const T as_string(const char* input) {
input              18 base/strings/string_piece_unittest.cc     return T(input);
input              20 base/strings/string_piece_unittest.cc   static const T& as_string(const T& input) {
input              21 base/strings/string_piece_unittest.cc     return input;
input              28 base/strings/string_piece_unittest.cc   static const string16 as_string(const char* input) {
input              29 base/strings/string_piece_unittest.cc     return ASCIIToUTF16(input);
input              31 base/strings/string_piece_unittest.cc   static const string16 as_string(const std::string& input) {
input              32 base/strings/string_piece_unittest.cc     return ASCIIToUTF16(input);
input             296 base/strings/string_split_unittest.cc     const char* input;
input             317 base/strings/string_split_unittest.cc     SplitStringAlongWhitespace(data[i].input, &results);
input              16 base/strings/string_tokenizer_unittest.cc   string input = "this is a test";
input              17 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input              35 base/strings/string_tokenizer_unittest.cc   string input = "this is a test";
input              36 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input              57 base/strings/string_tokenizer_unittest.cc   string input = "this is a test";
input              58 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input              86 base/strings/string_tokenizer_unittest.cc   string input = "this: is, a-test";
input              87 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, ": ,-");
input             105 base/strings/string_tokenizer_unittest.cc   string input = "Content-Type: text/html ; charset=UTF-8";
input             106 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, ": ;=");
input             154 base/strings/string_tokenizer_unittest.cc   string input = "foo bar 'hello world' baz";
input             155 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input             174 base/strings/string_tokenizer_unittest.cc   string input = "bar 'hello wo";
input             175 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input             188 base/strings/string_tokenizer_unittest.cc   string input = "bar 'hel\"lo\" wo' baz\"";
input             189 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input             205 base/strings/string_tokenizer_unittest.cc   string input = "foo 'don\\'t do that'";
input             206 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, " ");
input             219 base/strings/string_tokenizer_unittest.cc   string input = "foo='a, b', bar";
input             220 base/strings/string_tokenizer_unittest.cc   StringTokenizer t(input, ", ");
input             120 base/strings/string_util.cc bool ReplaceCharsT(const STR& input,
input             127 base/strings/string_util.cc   *output = input;
input             139 base/strings/string_util.cc bool ReplaceChars(const string16& input,
input             143 base/strings/string_util.cc   return ReplaceCharsT(input, replace_chars, replace_with, output);
input             146 base/strings/string_util.cc bool ReplaceChars(const std::string& input,
input             150 base/strings/string_util.cc   return ReplaceCharsT(input, replace_chars, replace_with, output);
input             153 base/strings/string_util.cc bool RemoveChars(const string16& input,
input             156 base/strings/string_util.cc   return ReplaceChars(input, remove_chars, string16(), output);
input             159 base/strings/string_util.cc bool RemoveChars(const std::string& input,
input             162 base/strings/string_util.cc   return ReplaceChars(input, remove_chars, std::string(), output);
input             166 base/strings/string_util.cc TrimPositions TrimStringT(const STR& input,
input             171 base/strings/string_util.cc   const typename STR::size_type last_char = input.length() - 1;
input             173 base/strings/string_util.cc       input.find_first_not_of(trim_chars) : 0;
input             175 base/strings/string_util.cc       input.find_last_not_of(trim_chars) : last_char;
input             180 base/strings/string_util.cc   if (input.empty() ||
input             182 base/strings/string_util.cc     bool input_was_empty = input.empty();  // in case output == &input
input             189 base/strings/string_util.cc       input.substr(first_good_char, last_good_char - first_good_char + 1);
input             197 base/strings/string_util.cc bool TrimString(const string16& input,
input             200 base/strings/string_util.cc   return TrimStringT(input, trim_chars, TRIM_ALL, output) != TRIM_NONE;
input             203 base/strings/string_util.cc bool TrimString(const std::string& input,
input             206 base/strings/string_util.cc   return TrimStringT(input, trim_chars, TRIM_ALL, output) != TRIM_NONE;
input             209 base/strings/string_util.cc void TruncateUTF8ToByteSize(const std::string& input,
input             213 base/strings/string_util.cc   if (byte_size > input.length()) {
input             214 base/strings/string_util.cc     *output = input;
input             221 base/strings/string_util.cc   const char* data = input.data();
input             240 base/strings/string_util.cc     *output = input.substr(0, char_index);
input             245 base/strings/string_util.cc TrimPositions TrimWhitespace(const string16& input,
input             248 base/strings/string_util.cc   return TrimStringT(input, kWhitespaceUTF16, positions, output);
input             251 base/strings/string_util.cc TrimPositions TrimWhitespaceASCII(const std::string& input,
input             254 base/strings/string_util.cc   return TrimStringT(input, kWhitespaceASCII, positions, output);
input             259 base/strings/string_util.cc TrimPositions TrimWhitespace(const std::string& input,
input             262 base/strings/string_util.cc   return TrimWhitespaceASCII(input, positions, output);
input             317 base/strings/string_util.cc bool ContainsOnlyChars(const StringPiece& input,
input             319 base/strings/string_util.cc   return input.find_first_not_of(characters) == StringPiece::npos;
input             322 base/strings/string_util.cc bool ContainsOnlyChars(const StringPiece16& input,
input             324 base/strings/string_util.cc   return input.find_first_not_of(characters) == StringPiece16::npos;
input             152 base/strings/string_util.h BASE_EXPORT bool RemoveChars(const string16& input,
input             155 base/strings/string_util.h BASE_EXPORT bool RemoveChars(const std::string& input,
input             164 base/strings/string_util.h BASE_EXPORT bool ReplaceChars(const string16& input,
input             168 base/strings/string_util.h BASE_EXPORT bool ReplaceChars(const std::string& input,
input             176 base/strings/string_util.h BASE_EXPORT bool TrimString(const string16& input,
input             179 base/strings/string_util.h BASE_EXPORT bool TrimString(const std::string& input,
input             185 base/strings/string_util.h BASE_EXPORT void TruncateUTF8ToByteSize(const std::string& input,
input             202 base/strings/string_util.h BASE_EXPORT TrimPositions TrimWhitespace(const string16& input,
input             205 base/strings/string_util.h BASE_EXPORT TrimPositions TrimWhitespaceASCII(const std::string& input,
input             211 base/strings/string_util.h BASE_EXPORT TrimPositions TrimWhitespace(const std::string& input,
input             232 base/strings/string_util.h BASE_EXPORT bool ContainsOnlyChars(const StringPiece& input,
input             234 base/strings/string_util.h BASE_EXPORT bool ContainsOnlyChars(const StringPiece16& input,
input              23 base/strings/string_util_unittest.cc   const wchar_t* input;
input              41 base/strings/string_util_unittest.cc   const char* input;
input              60 base/strings/string_util_unittest.cc bool Truncated(const std::string& input, const size_t byte_size,
input              62 base/strings/string_util_unittest.cc     size_t prev = input.length();
input              63 base/strings/string_util_unittest.cc     TruncateUTF8ToByteSize(input, byte_size, output);
input             233 base/strings/string_util_unittest.cc               TrimWhitespace(WideToUTF16(value.input), value.positions,
input             252 base/strings/string_util_unittest.cc               TrimWhitespace(value.input, value.positions, &output_ascii));
input             258 base/strings/string_util_unittest.cc   const wchar_t* input;
input             287 base/strings/string_util_unittest.cc               CollapseWhitespace(WideToUTF16(value.input), value.trim));
input             292 base/strings/string_util_unittest.cc   const char* input;
input             318 base/strings/string_util_unittest.cc     EXPECT_EQ(value.output, CollapseWhitespaceASCII(value.input, value.trim));
input            1056 base/strings/string_util_unittest.cc     const wchar_t* input;
input            1082 base/strings/string_util_unittest.cc     EXPECT_EQ(cases[i].portable, base::IsWprintfFormatPortable(cases[i].input));
input            1087 base/strings/string_util_unittest.cc   std::string input = "A-+bc/d!*";
input            1088 base/strings/string_util_unittest.cc   EXPECT_TRUE(RemoveChars(input, kRemoveChars, &input));
input            1089 base/strings/string_util_unittest.cc   EXPECT_EQ("Abcd!", input);
input            1092 base/strings/string_util_unittest.cc   EXPECT_FALSE(RemoveChars(input, kRemoveChars, &input));
input            1093 base/strings/string_util_unittest.cc   EXPECT_EQ("Abcd!", input);
input            1096 base/strings/string_util_unittest.cc   input.clear();
input            1097 base/strings/string_util_unittest.cc   EXPECT_FALSE(RemoveChars(input, kRemoveChars, &input));
input            1098 base/strings/string_util_unittest.cc   EXPECT_EQ(std::string(), input);
input            1103 base/strings/string_util_unittest.cc     const char* input;
input            1126 base/strings/string_util_unittest.cc     bool result = ReplaceChars(cases[i].input,
input              11 base/test/expectations/parser.cc Parser::Parser(Delegate* delegate, const std::string& input)
input              13 base/test/expectations/parser.cc       input_(input),
input              49 base/test/expectations/parser.h   Parser(Delegate* delegate, const std::string& input);
input              32 base/version_unittest.cc     const char* input;
input              57 base/version_unittest.cc     Version version(cases[i].input);
input             152 cc/output/render_surface_filters.cc     const skia::RefPtr<SkImageFilter>& input) {
input             156 cc/output/render_surface_filters.cc       SkColorFilterImageFilter::Create(color_filter.get(), input.get()));
input              30 cc/resources/transferable_resource.cc     const TransferableResourceArray& input,
input              32 cc/resources/transferable_resource.cc   for (TransferableResourceArray::const_iterator it = input.begin();
input              33 cc/resources/transferable_resource.cc        it != input.end(); ++it)
input              28 cc/resources/transferable_resource.h   static void ReturnResources(const TransferableResourceArray& input,
input              91 chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java         FileInputStream input = null;
input             100 chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java             input = new FileInputStream(file);
input             101 chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java             if (MAC_KEY_BYTE_COUNT != input.read(keyBytes)) {
input             115 chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java                 if (input != null) {
input             116 chrome/android/java/src/org/chromium/chrome/browser/WebappAuthenticator.java                     input.close();
input               5 chrome/android/javatests/src/org/chromium/chrome/browser/input/SelectFileDialogTest.java package org.chromium.chrome.browser.input;
input               5 chrome/android/javatests/src/org/chromium/chrome/browser/input/SelectPopupOtherContentViewTest.java package org.chromium.chrome.browser.input;
input              44 chrome/android/javatests/src/org/chromium/chrome/browser/test/ProviderBookmarkNodeTest.java         Parcel input = Parcel.obtain();
input              48 chrome/android/javatests/src/org/chromium/chrome/browser/test/ProviderBookmarkNodeTest.java         input.unmarshall(bytes, 0, bytes.length);
input              49 chrome/android/javatests/src/org/chromium/chrome/browser/test/ProviderBookmarkNodeTest.java         input.setDataPosition(0);
input              51 chrome/android/javatests/src/org/chromium/chrome/browser/test/ProviderBookmarkNodeTest.java         return BookmarkNode.CREATOR.createFromParcel(input);
input             212 chrome/browser/autocomplete/autocomplete_controller.cc void AutocompleteController::Start(const AutocompleteInput& input) {
input             216 chrome/browser/autocomplete/autocomplete_controller.cc   input_ = input;
input             249 chrome/browser/autocomplete/autocomplete_controller.cc     if (input.matches_requested() != AutocompleteInput::ALL_MATCHES)
input             258 chrome/browser/autocomplete/autocomplete_controller.cc   if (input.matches_requested() == AutocompleteInput::ALL_MATCHES &&
input             259 chrome/browser/autocomplete/autocomplete_controller.cc       (input.text().length() < 6)) {
input             262 chrome/browser/autocomplete/autocomplete_controller.cc         input.text().length());
input             307 chrome/browser/autocomplete/autocomplete_controller.cc void AutocompleteController::StartZeroSuggest(const AutocompleteInput& input) {
input             317 chrome/browser/autocomplete/autocomplete_controller.cc         (*i)->Start(input, false);
input              68 chrome/browser/autocomplete/autocomplete_controller.h   void Start(const AutocompleteInput& input);
input              80 chrome/browser/autocomplete/autocomplete_controller.h   void StartZeroSuggest(const AutocompleteInput& input);
input             120 chrome/browser/autocomplete/autocomplete_controller.h   const AutocompleteInput& input() const { return input_; }
input             509 chrome/browser/autocomplete/autocomplete_input.cc bool AutocompleteInput::HasHTTPScheme(const base::string16& input) {
input             510 chrome/browser/autocomplete/autocomplete_input.cc   std::string utf8_input(base::UTF16ToUTF8(input));
input              18 chrome/browser/autocomplete/autocomplete_input_unittest.cc     const base::string16 input;
input             127 chrome/browser/autocomplete/autocomplete_input_unittest.cc     SCOPED_TRACE(input_cases[i].input);
input             128 chrome/browser/autocomplete/autocomplete_input_unittest.cc     AutocompleteInput input(input_cases[i].input, base::string16::npos,
input             132 chrome/browser/autocomplete/autocomplete_input_unittest.cc     EXPECT_EQ(input_cases[i].type, input.type());
input             138 chrome/browser/autocomplete/autocomplete_input_unittest.cc     const base::string16 input;
input             156 chrome/browser/autocomplete/autocomplete_input_unittest.cc     SCOPED_TRACE(input_cases[i].input);
input             157 chrome/browser/autocomplete/autocomplete_input_unittest.cc     AutocompleteInput input(input_cases[i].input, base::string16::npos,
input             161 chrome/browser/autocomplete/autocomplete_input_unittest.cc     EXPECT_EQ(input_cases[i].type, input.type());
input             163 chrome/browser/autocomplete/autocomplete_input_unittest.cc       EXPECT_EQ(input_cases[i].spec, input.canonicalized_url().spec());
input             170 chrome/browser/autocomplete/autocomplete_input_unittest.cc   AutocompleteInput input(base::WideToUTF16(L"\uff65@s"), base::string16::npos,
input             180 chrome/browser/autocomplete/autocomplete_input_unittest.cc     const base::string16 input;
input             209 chrome/browser/autocomplete/autocomplete_input_unittest.cc     SCOPED_TRACE(input_cases[i].input);
input             211 chrome/browser/autocomplete/autocomplete_input_unittest.cc     AutocompleteInput::ParseForEmphasizeComponents(input_cases[i].input,
input             214 chrome/browser/autocomplete/autocomplete_input_unittest.cc     AutocompleteInput input(input_cases[i].input, base::string16::npos,
input             227 chrome/browser/autocomplete/autocomplete_input_unittest.cc     const base::string16 input;
input             251 chrome/browser/autocomplete/autocomplete_input_unittest.cc     SCOPED_TRACE(input_cases[i].input);
input             252 chrome/browser/autocomplete/autocomplete_input_unittest.cc     AutocompleteInput input(input_cases[i].input,
input             257 chrome/browser/autocomplete/autocomplete_input_unittest.cc     EXPECT_EQ(input_cases[i].normalized_input, input.text());
input             259 chrome/browser/autocomplete/autocomplete_input_unittest.cc               input.cursor_position());
input             137 chrome/browser/autocomplete/autocomplete_provider.cc bool AutocompleteProvider::FixupUserInput(AutocompleteInput* input) {
input             138 chrome/browser/autocomplete/autocomplete_provider.cc   const base::string16& input_text = input->text();
input             154 chrome/browser/autocomplete/autocomplete_provider.cc   if ((input->type() != AutocompleteInput::URL) &&
input             157 chrome/browser/autocomplete/autocomplete_provider.cc         base::UTF16ToUTF8(input_text.substr(input->parts().host.begin,
input             158 chrome/browser/autocomplete/autocomplete_provider.cc                                             input->parts().host.len));
input             203 chrome/browser/autocomplete/autocomplete_provider.cc   input->UpdateText(output, base::string16::npos, parts);
input             178 chrome/browser/autocomplete/autocomplete_provider.h   virtual void Start(const AutocompleteInput& input, bool minimal_changes) = 0;
input             261 chrome/browser/autocomplete/autocomplete_provider.h   static bool FixupUserInput(AutocompleteInput* input);
input              56 chrome/browser/autocomplete/autocomplete_provider_unittest.cc   virtual void Start(const AutocompleteInput& input,
input              80 chrome/browser/autocomplete/autocomplete_provider_unittest.cc void TestProvider::Start(const AutocompleteInput& input,
input              99 chrome/browser/autocomplete/autocomplete_provider_unittest.cc   if (input.matches_requested() == AutocompleteInput::ALL_MATCHES) {
input              91 chrome/browser/autocomplete/autocomplete_result.cc void AutocompleteResult::CopyOldMatches(const AutocompleteInput& input,
input             125 chrome/browser/autocomplete/autocomplete_result.cc     MergeMatchesByProvider(input.current_page_classification(),
input             129 chrome/browser/autocomplete/autocomplete_result.cc   SortAndCull(input, profile);
input             145 chrome/browser/autocomplete/autocomplete_result.cc void AutocompleteResult::SortAndCull(const AutocompleteInput& input,
input             179 chrome/browser/autocomplete/autocomplete_result.cc           input.current_page_classification());
input             185 chrome/browser/autocomplete/autocomplete_result.cc   CompareWithDemoteByType comparing_object(input.current_page_classification());
input             190 chrome/browser/autocomplete/autocomplete_result.cc           input.current_page_classification())) {
input             220 chrome/browser/autocomplete/autocomplete_result.cc         input.text();
input             229 chrome/browser/autocomplete/autocomplete_result.cc         DCHECK_NE(AutocompleteInput::URL, input.type()) << debug_info;
input             231 chrome/browser/autocomplete/autocomplete_result.cc         DCHECK_NE(AutocompleteInput::FORCED_QUERY, input.type()) << debug_info;
input             238 chrome/browser/autocomplete/autocomplete_result.cc       GURL() : ComputeAlternateNavUrl(input, *default_match_);
input             327 chrome/browser/autocomplete/autocomplete_result.cc     const AutocompleteInput& input,
input             329 chrome/browser/autocomplete/autocomplete_result.cc   return ((input.type() == AutocompleteInput::UNKNOWN) &&
input             332 chrome/browser/autocomplete/autocomplete_result.cc           (input.canonicalized_url() != match.destination_url)) ?
input             333 chrome/browser/autocomplete/autocomplete_result.cc       input.canonicalized_url() : GURL();
input              72 chrome/browser/autocomplete/autocomplete_result.h   void CopyOldMatches(const AutocompleteInput& input,
input              82 chrome/browser/autocomplete/autocomplete_result.h   void SortAndCull(const AutocompleteInput& input, Profile* profile);
input             148 chrome/browser/autocomplete/autocomplete_result.h   static GURL ComputeAlternateNavUrl(const AutocompleteInput& input,
input             177 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::ASCIIToUTF16("a"), base::string16::npos,
input             186 chrome/browser/autocomplete/autocomplete_result_unittest.cc   last_result.SortAndCull(input, test_util_.profile());
input             192 chrome/browser/autocomplete/autocomplete_result_unittest.cc   current_result.SortAndCull(input, test_util_.profile());
input             193 chrome/browser/autocomplete/autocomplete_result_unittest.cc   current_result.CopyOldMatches(input, last_result, test_util_.profile());
input             213 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::ASCIIToUTF16("a"), base::string16::npos,
input             219 chrome/browser/autocomplete/autocomplete_result_unittest.cc   r1.SortAndCull(input, test_util_.profile());
input             296 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::string16(), base::string16::npos,
input             300 chrome/browser/autocomplete/autocomplete_result_unittest.cc   result.SortAndCull(input, test_util_.profile());
input             342 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::string16(), base::string16::npos,
input             346 chrome/browser/autocomplete/autocomplete_result_unittest.cc   result.SortAndCull(input, test_util_.profile());
input             394 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::string16(), base::string16::npos,
input             398 chrome/browser/autocomplete/autocomplete_result_unittest.cc   result.SortAndCull(input, test_util_.profile());
input             448 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::string16(), base::string16::npos,
input             452 chrome/browser/autocomplete/autocomplete_result_unittest.cc   result.SortAndCull(input, test_util_.profile());
input             498 chrome/browser/autocomplete/autocomplete_result_unittest.cc   AutocompleteInput input(base::string16(), base::string16::npos,
input             502 chrome/browser/autocomplete/autocomplete_result_unittest.cc   result.SortAndCull(input, test_util_.profile());
input             533 chrome/browser/autocomplete/autocomplete_result_unittest.cc     AutocompleteInput input(base::string16(), base::string16::npos,
input             537 chrome/browser/autocomplete/autocomplete_result_unittest.cc     result.SortAndCull(input, test_util_.profile());
input             549 chrome/browser/autocomplete/autocomplete_result_unittest.cc     AutocompleteInput input(base::string16(), base::string16::npos,
input             553 chrome/browser/autocomplete/autocomplete_result_unittest.cc     result.SortAndCull(input, test_util_.profile());
input             311 chrome/browser/autocomplete/base_search_provider.cc     const base::string16& input) const {
input             312 chrome/browser/autocomplete/base_search_provider.cc   return StartsWith(suggestion_, input, false);
input             316 chrome/browser/autocomplete/base_search_provider.cc     const AutocompleteInput& input,
input             320 chrome/browser/autocomplete/base_search_provider.cc   return ((input.type() == AutocompleteInput::URL) ? 300 : 600);
input             387 chrome/browser/autocomplete/base_search_provider.cc     const base::string16& input) const {
input             389 chrome/browser/autocomplete/base_search_provider.cc       URLPrefix::BestURLPrefix(base::UTF8ToUTF16(url_.spec()), input) != NULL;
input             393 chrome/browser/autocomplete/base_search_provider.cc     const AutocompleteInput& input,
input             437 chrome/browser/autocomplete/base_search_provider.cc     const AutocompleteInput& input,
input             453 chrome/browser/autocomplete/base_search_provider.cc         kACMatchPropertyInputText, base::UTF16ToUTF8(input.text()));
input             468 chrome/browser/autocomplete/base_search_provider.cc       (base::CollapseWhitespace(input.text(), false) ==
input             474 chrome/browser/autocomplete/base_search_provider.cc   if (input.type() == AutocompleteInput::FORCED_QUERY)
input             478 chrome/browser/autocomplete/base_search_provider.cc   if (!input.prevent_inline_autocomplete() &&
input             479 chrome/browser/autocomplete/base_search_provider.cc       StartsWith(suggestion.suggestion(), input.text(), false)) {
input             481 chrome/browser/autocomplete/base_search_provider.cc         suggestion.suggestion().substr(input.text().length());
input             490 chrome/browser/autocomplete/base_search_provider.cc   match.search_terms_args->original_query = input.text();
input             752 chrome/browser/autocomplete/base_search_provider.cc   const AutocompleteInput& input = GetInput(is_keyword_result);
input             755 chrome/browser/autocomplete/base_search_provider.cc       query != input.text() || !root_list->GetList(1, &results_list))
input             812 chrome/browser/autocomplete/base_search_provider.cc   const bool allow_navsuggest = input.type() != AutocompleteInput::FORCED_QUERY;
input             816 chrome/browser/autocomplete/base_search_provider.cc       base::CollapseWhitespace(input.text(), false);
input             837 chrome/browser/autocomplete/base_search_provider.cc             relevances != NULL, input.text(), languages));
input             130 chrome/browser/autocomplete/base_search_provider.h     virtual bool IsInlineable(const base::string16& input) const = 0;
input             136 chrome/browser/autocomplete/base_search_provider.h     virtual int CalculateRelevance(const AutocompleteInput& input,
input             195 chrome/browser/autocomplete/base_search_provider.h     virtual bool IsInlineable(const base::string16& input) const OVERRIDE;
input             197 chrome/browser/autocomplete/base_search_provider.h         const AutocompleteInput& input,
input             257 chrome/browser/autocomplete/base_search_provider.h     virtual bool IsInlineable(const base::string16& input) const OVERRIDE;
input             259 chrome/browser/autocomplete/base_search_provider.h         const AutocompleteInput& input,
input             332 chrome/browser/autocomplete/base_search_provider.h       const AutocompleteInput& input,
input              36 chrome/browser/autocomplete/bookmark_provider.cc void BookmarkProvider::Start(const AutocompleteInput& input,
input              45 chrome/browser/autocomplete/bookmark_provider.cc   if (input.text().empty() ||
input              46 chrome/browser/autocomplete/bookmark_provider.cc       ((input.type() != AutocompleteInput::UNKNOWN) &&
input              47 chrome/browser/autocomplete/bookmark_provider.cc        (input.type() != AutocompleteInput::QUERY)) ||
input              48 chrome/browser/autocomplete/bookmark_provider.cc       ((input.matches_requested() == AutocompleteInput::BEST_MATCH) &&
input              49 chrome/browser/autocomplete/bookmark_provider.cc        input.prevent_inline_autocomplete()))
input              52 chrome/browser/autocomplete/bookmark_provider.cc   DoAutocomplete(input,
input              53 chrome/browser/autocomplete/bookmark_provider.cc                  input.matches_requested() == AutocompleteInput::BEST_MATCH);
input              58 chrome/browser/autocomplete/bookmark_provider.cc void BookmarkProvider::DoAutocomplete(const AutocompleteInput& input,
input              92 chrome/browser/autocomplete/bookmark_provider.cc   bookmark_model_->GetBookmarksWithTitlesMatching(input.text(),
input              34 chrome/browser/autocomplete/bookmark_provider.h   virtual void Start(const AutocompleteInput& input,
input              48 chrome/browser/autocomplete/bookmark_provider.h   void DoAutocomplete(const AutocompleteInput& input, bool best_match);
input             245 chrome/browser/autocomplete/bookmark_provider_unittest.cc     AutocompleteInput input(base::ASCIIToUTF16(query_data[i].query),
input             249 chrome/browser/autocomplete/bookmark_provider_unittest.cc     provider_->Start(input, false);
input             319 chrome/browser/autocomplete/bookmark_provider_unittest.cc     AutocompleteInput input(base::ASCIIToUTF16(query_data[i].query),
input             323 chrome/browser/autocomplete/bookmark_provider_unittest.cc     provider_->Start(input, false);
input              58 chrome/browser/autocomplete/builtin_provider.cc void BuiltinProvider::Start(const AutocompleteInput& input,
input              61 chrome/browser/autocomplete/builtin_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input              62 chrome/browser/autocomplete/builtin_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY) ||
input              63 chrome/browser/autocomplete/builtin_provider.cc       (input.type() == AutocompleteInput::QUERY))
input              74 chrome/browser/autocomplete/builtin_provider.cc   base::string16 text = input.text();
input             122 chrome/browser/autocomplete/builtin_provider.cc   if (!input.prevent_inline_autocomplete() && (matches_.size() == 1)) {
input              23 chrome/browser/autocomplete/builtin_provider.h   virtual void Start(const AutocompleteInput& input,
input              23 chrome/browser/autocomplete/builtin_provider_unittest.cc     const base::string16 input;
input              57 chrome/browser/autocomplete/builtin_provider_unittest.cc     AutocompleteInput input(builtin_cases[i].input, base::string16::npos,
input              61 chrome/browser/autocomplete/builtin_provider_unittest.cc     builtin_provider_->Start(input, false);
input              65 chrome/browser/autocomplete/builtin_provider_unittest.cc                 ASCIIToUTF16("Input was: ") << builtin_cases[i].input;
input              69 chrome/browser/autocomplete/builtin_provider_unittest.cc                 ASCIIToUTF16("Input was: ") << builtin_cases[i].input;
input              71 chrome/browser/autocomplete/extension_app_provider.cc     const AutocompleteInput& input,
input              80 chrome/browser/autocomplete/extension_app_provider.cc       app.should_match_against_launch_url ? app.launch_url : input.text();
input              85 chrome/browser/autocomplete/extension_app_provider.cc       input.text().length(), app.name.length(), ACMatchClassification::NONE,
input              90 chrome/browser/autocomplete/extension_app_provider.cc         input.text().length(), app.launch_url.length(),
input              94 chrome/browser/autocomplete/extension_app_provider.cc       input.type(),
input              95 chrome/browser/autocomplete/extension_app_provider.cc       input.text().length(),
input             102 chrome/browser/autocomplete/extension_app_provider.cc void ExtensionAppProvider::Start(const AutocompleteInput& input,
input             106 chrome/browser/autocomplete/extension_app_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input             107 chrome/browser/autocomplete/extension_app_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY))
input             110 chrome/browser/autocomplete/extension_app_provider.cc   if (input.text().empty())
input             119 chrome/browser/autocomplete/extension_app_provider.cc                     input.text().begin(), input.text().end(),
input             131 chrome/browser/autocomplete/extension_app_provider.cc                       input.text().begin(), input.text().end(),
input             134 chrome/browser/autocomplete/extension_app_provider.cc           input.type() != AutocompleteInput::FORCED_QUERY;
input             142 chrome/browser/autocomplete/extension_app_provider.cc           input, *app, name_match_index, url_match_index));
input              30 chrome/browser/autocomplete/extension_app_provider.h   virtual void Start(const AutocompleteInput& input,
input              65 chrome/browser/autocomplete/extension_app_provider.h   AutocompleteMatch CreateAutocompleteMatch(const AutocompleteInput& input,
input              22 chrome/browser/autocomplete/extension_app_provider_unittest.cc     const base::string16 input;
input              91 chrome/browser/autocomplete/extension_app_provider_unittest.cc     AutocompleteInput input(keyword_cases[i].input, base::string16::npos,
input              95 chrome/browser/autocomplete/extension_app_provider_unittest.cc     app_provider_->Start(input, false);
input              99 chrome/browser/autocomplete/extension_app_provider_unittest.cc         << ASCIIToUTF16("Input was: ") + keyword_cases[i].input;
input             142 chrome/browser/autocomplete/extension_app_provider_unittest.cc   AutocompleteInput input(ASCIIToUTF16("Test"), base::string16::npos,
input             151 chrome/browser/autocomplete/extension_app_provider_unittest.cc         app_provider_->CreateAutocompleteMatch(input,
input              66 chrome/browser/autocomplete/history_provider.cc     const AutocompleteInput& input) {
input              67 chrome/browser/autocomplete/history_provider.cc   return input.prevent_inline_autocomplete() ||
input              68 chrome/browser/autocomplete/history_provider.cc       (!input.text().empty() &&
input              69 chrome/browser/autocomplete/history_provider.cc        IsWhitespace(input.text()[input.text().length() - 1]));
input              36 chrome/browser/autocomplete/history_provider.h   bool PreventInlineAutocomplete(const AutocompleteInput& input);
input              61 chrome/browser/autocomplete/history_quick_provider.cc void HistoryQuickProvider::Start(const AutocompleteInput& input,
input              70 chrome/browser/autocomplete/history_quick_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input              71 chrome/browser/autocomplete/history_quick_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY) ||
input              72 chrome/browser/autocomplete/history_quick_provider.cc       (input.matches_requested() == AutocompleteInput::BEST_MATCH &&
input              73 chrome/browser/autocomplete/history_quick_provider.cc        input.prevent_inline_autocomplete()))
input              76 chrome/browser/autocomplete/history_quick_provider.cc   autocomplete_input_ = input;
input              84 chrome/browser/autocomplete/history_quick_provider.cc     if (input.text().length() < 6) {
input              87 chrome/browser/autocomplete/history_quick_provider.cc           base::IntToString(input.text().length());
input              35 chrome/browser/autocomplete/history_quick_provider.h   virtual void Start(const AutocompleteInput& input,
input             251 chrome/browser/autocomplete/history_quick_provider_unittest.cc   AutocompleteInput input(text, base::string16::npos, base::string16(),
input             255 chrome/browser/autocomplete/history_quick_provider_unittest.cc   provider_->Start(input, false);
input              91 chrome/browser/autocomplete/history_url_provider.cc                        const base::string16& input) {
input             103 chrome/browser/autocomplete/history_url_provider.cc   if ((host.spec().length() < (match.input_location + input.length())))
input             107 chrome/browser/autocomplete/history_url_provider.cc   if (spec.compare(match.input_location, input.length(), input))
input             306 chrome/browser/autocomplete/history_url_provider.cc                   const AutocompleteInput& input,
input             326 chrome/browser/autocomplete/history_url_provider.cc     const AutocompleteInput& input,
input             331 chrome/browser/autocomplete/history_url_provider.cc   const GURL& url = input.canonicalized_url();
input             336 chrome/browser/autocomplete/history_url_provider.cc       ((input.type() == AutocompleteInput::UNKNOWN) &&
input             337 chrome/browser/autocomplete/history_url_provider.cc        input.parts().username.is_nonempty() &&
input             338 chrome/browser/autocomplete/history_url_provider.cc        !input.parts().password.is_nonempty() &&
input             339 chrome/browser/autocomplete/history_url_provider.cc        !input.parts().path.is_nonempty()))
input             347 chrome/browser/autocomplete/history_url_provider.cc   if (provider_->CanFindIntranetURL(db_, input)) {
input             356 chrome/browser/autocomplete/history_url_provider.cc     const AutocompleteInput& input,
input             362 chrome/browser/autocomplete/history_url_provider.cc       input(input),
input             363 chrome/browser/autocomplete/history_url_provider.cc       prevent_inline_autocomplete(input.prevent_inline_autocomplete()),
input             394 chrome/browser/autocomplete/history_url_provider.cc void HistoryURLProvider::Start(const AutocompleteInput& input,
input             408 chrome/browser/autocomplete/history_url_provider.cc   RunAutocompletePasses(input, true);
input             500 chrome/browser/autocomplete/history_url_provider.cc   VisitClassifier classifier(this, params->input, db);
input             512 chrome/browser/autocomplete/history_url_provider.cc       params->input.canonicalized_url().is_valid() &&
input             513 chrome/browser/autocomplete/history_url_provider.cc       (params->input.type() != AutocompleteInput::QUERY) &&
input             514 chrome/browser/autocomplete/history_url_provider.cc       ((params->input.type() != AutocompleteInput::UNKNOWN) ||
input             517 chrome/browser/autocomplete/history_url_provider.cc        (AutocompleteInput::NumNonHostComponents(params->input.parts()) > 0));
input             519 chrome/browser/autocomplete/history_url_provider.cc       params->input.text(), params->input.canonicalized_url(),
input             541 chrome/browser/autocomplete/history_url_provider.cc           base::UTF16ToUTF8(i->prefix + params->input.text()),
input             573 chrome/browser/autocomplete/history_url_provider.cc       FixupExactSuggestion(db, params->input, classifier, &what_you_typed_match,
input             690 chrome/browser/autocomplete/history_url_provider.cc     const AutocompleteInput& input,
input             694 chrome/browser/autocomplete/history_url_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input             695 chrome/browser/autocomplete/history_url_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY))
input             701 chrome/browser/autocomplete/history_url_provider.cc   const bool trim_http = !AutocompleteInput::HasHTTPScheme(input.text());
input             704 chrome/browser/autocomplete/history_url_provider.cc   if ((input.type() != AutocompleteInput::QUERY) &&
input             705 chrome/browser/autocomplete/history_url_provider.cc       input.canonicalized_url().is_valid()) {
input             707 chrome/browser/autocomplete/history_url_provider.cc         input.text(), input.canonicalized_url(), trim_http));
input             734 chrome/browser/autocomplete/history_url_provider.cc           input, trim_http,
input             739 chrome/browser/autocomplete/history_url_provider.cc       PreventInlineAutocomplete(input);
input             744 chrome/browser/autocomplete/history_url_provider.cc     if (!FixupUserInput(&params->input))
input             770 chrome/browser/autocomplete/history_url_provider.cc       (input.matches_requested() == AutocompleteInput::ALL_MATCHES)) {
input             780 chrome/browser/autocomplete/history_url_provider.cc     const AutocompleteInput& input,
input             801 chrome/browser/autocomplete/history_url_provider.cc           ClassifyDescription(input.text(), match->description);
input             808 chrome/browser/autocomplete/history_url_provider.cc         type = CanFindIntranetURL(db, input) ?
input             833 chrome/browser/autocomplete/history_url_provider.cc       (input.type() != AutocompleteInput::URL) &&
input             859 chrome/browser/autocomplete/history_url_provider.cc     const AutocompleteInput& input) const {
input             864 chrome/browser/autocomplete/history_url_provider.cc   if ((input.type() != AutocompleteInput::UNKNOWN) ||
input             865 chrome/browser/autocomplete/history_url_provider.cc       !LowerCaseEqualsASCII(input.scheme(), content::kHttpScheme) ||
input             866 chrome/browser/autocomplete/history_url_provider.cc       !input.parts().host.is_nonempty())
input             869 chrome/browser/autocomplete/history_url_provider.cc       input.text().substr(input.parts().host.begin, input.parts().host.len)));
input             929 chrome/browser/autocomplete/history_url_provider.cc   GURL search_base = ConvertToHostOnly(match, params.input.text());
input             940 chrome/browser/autocomplete/history_url_provider.cc         substr(0, match.input_location + params.input.text().length());
input            1077 chrome/browser/autocomplete/history_url_provider.cc       history_match.input_location + params.input.text().length();
input            1117 chrome/browser/autocomplete/history_url_provider.cc       ClassifyDescription(params.input.text(), match.description);
input              93 chrome/browser/autocomplete/history_url_provider.h   HistoryURLProviderParams(const AutocompleteInput& input,
input             104 chrome/browser/autocomplete/history_url_provider.h   AutocompleteInput input;
input             167 chrome/browser/autocomplete/history_url_provider.h   virtual void Start(const AutocompleteInput& input,
input             223 chrome/browser/autocomplete/history_url_provider.h   void RunAutocompletePasses(const AutocompleteInput& input,
input             233 chrome/browser/autocomplete/history_url_provider.h                             const AutocompleteInput& input,
input             242 chrome/browser/autocomplete/history_url_provider.h                           const AutocompleteInput& input) const;
input             281 chrome/browser/autocomplete/history_url_provider_unittest.cc   AutocompleteInput input(text, base::string16::npos, desired_tld, GURL(),
input             285 chrome/browser/autocomplete/history_url_provider_unittest.cc   *identified_input_type = input.type();
input             286 chrome/browser/autocomplete/history_url_provider_unittest.cc   autocomplete_->Start(input, false);
input             563 chrome/browser/autocomplete/history_url_provider_unittest.cc   AutocompleteInput input(ASCIIToUTF16("p"), base::string16::npos,
input             567 chrome/browser/autocomplete/history_url_provider_unittest.cc   autocomplete_->Start(input, false);
input             605 chrome/browser/autocomplete/history_url_provider_unittest.cc   AutocompleteInput input(ASCIIToUTF16("slash "), base::string16::npos,
input             609 chrome/browser/autocomplete/history_url_provider_unittest.cc   autocomplete_->Start(input, false);
input             637 chrome/browser/autocomplete/history_url_provider_unittest.cc     const char* input;
input             650 chrome/browser/autocomplete/history_url_provider_unittest.cc     SCOPED_TRACE(test_cases[i].input);
input             652 chrome/browser/autocomplete/history_url_provider_unittest.cc       RunTest(ASCIIToUTF16(test_cases[i].input), base::string16(), false,
input             656 chrome/browser/autocomplete/history_url_provider_unittest.cc         { URLFixerUpper::FixupURL(test_cases[i].input, std::string()).spec(),
input             659 chrome/browser/autocomplete/history_url_provider_unittest.cc       ASSERT_NO_FATAL_FAILURE(RunTest(ASCIIToUTF16(test_cases[i].input),
input             672 chrome/browser/autocomplete/history_url_provider_unittest.cc     const char* input;
input             686 chrome/browser/autocomplete/history_url_provider_unittest.cc     SCOPED_TRACE(test_cases[i].input);
input             688 chrome/browser/autocomplete/history_url_provider_unittest.cc       { URLFixerUpper::FixupURL(test_cases[i].input, std::string()).spec(),
input             693 chrome/browser/autocomplete/history_url_provider_unittest.cc         RunTest(ASCIIToUTF16(test_cases[i].input),
input             784 chrome/browser/autocomplete/history_url_provider_unittest.cc     AutocompleteInput input(ASCIIToUTF16(test_cases[i]), base::string16::npos,
input             788 chrome/browser/autocomplete/history_url_provider_unittest.cc     autocomplete_->Start(input, false);
input             843 chrome/browser/autocomplete/history_url_provider_unittest.cc     const char* input;
input             898 chrome/browser/autocomplete/history_url_provider_unittest.cc                                     << test_cases[i].input << ", trim_http: "
input             901 chrome/browser/autocomplete/history_url_provider_unittest.cc     AutocompleteInput input(ASCIIToUTF16(test_cases[i].input),
input             907 chrome/browser/autocomplete/history_url_provider_unittest.cc         input.text(), input.canonicalized_url(), test_cases[i].trim_http));
input             959 chrome/browser/autocomplete/history_url_provider_unittest.cc     const char* input;
input             993 chrome/browser/autocomplete/history_url_provider_unittest.cc     SCOPED_TRACE(test_cases[i].input);
input            1008 chrome/browser/autocomplete/history_url_provider_unittest.cc         RunTest(ASCIIToUTF16(test_cases[i].input),
input            1018 chrome/browser/autocomplete/history_url_provider_unittest.cc         RunTest(ASCIIToUTF16(test_cases[i].input),
input             103 chrome/browser/autocomplete/keyword_provider.cc     const base::string16& input,
input             108 chrome/browser/autocomplete/keyword_provider.cc   const size_t first_white(input.find_first_of(base::kWhitespaceUTF16));
input             111 chrome/browser/autocomplete/keyword_provider.cc     return input;  // Only one token provided.
input             116 chrome/browser/autocomplete/keyword_provider.cc       input.find_first_not_of(base::kWhitespaceUTF16, first_white) :
input             119 chrome/browser/autocomplete/keyword_provider.cc   if (remaining_start < input.length())
input             120 chrome/browser/autocomplete/keyword_provider.cc     remaining_input->assign(input.begin() + remaining_start, input.end());
input             123 chrome/browser/autocomplete/keyword_provider.cc   return input.substr(0, first_white);
input             128 chrome/browser/autocomplete/keyword_provider.cc     const base::string16& input,
input             132 chrome/browser/autocomplete/keyword_provider.cc   base::TrimWhitespace(input, base::TRIM_LEADING, &trimmed_input);
input             144 chrome/browser/autocomplete/keyword_provider.cc     AutocompleteInput* input) {
input             145 chrome/browser/autocomplete/keyword_provider.cc   if (!input->allow_exact_keyword_match())
input             149 chrome/browser/autocomplete/keyword_provider.cc   if (!ExtractKeywordFromInput(*input, &keyword, &remaining_input))
input             159 chrome/browser/autocomplete/keyword_provider.cc     if (input->cursor_position() != base::string16::npos &&
input             161 chrome/browser/autocomplete/keyword_provider.cc         EndsWith(input->text(), remaining_input, true)) {
input             162 chrome/browser/autocomplete/keyword_provider.cc       int offset = input->text().length() - input->cursor_position();
input             166 chrome/browser/autocomplete/keyword_provider.cc       DCHECK_LE(offset, static_cast<int>(input->text().length()));
input             177 chrome/browser/autocomplete/keyword_provider.cc     input->UpdateText(remaining_input, cursor_position, input->parts());
input             219 chrome/browser/autocomplete/keyword_provider.cc     const AutocompleteInput& input) {
input             222 chrome/browser/autocomplete/keyword_provider.cc       GetTemplateURLService()->GetTemplateURLForKeyword(keyword), input,
input             226 chrome/browser/autocomplete/keyword_provider.cc void KeywordProvider::Start(const AutocompleteInput& input,
input             256 chrome/browser/autocomplete/keyword_provider.cc   if (!ExtractKeywordFromInput(input, &keyword, &remaining_input))
input             293 chrome/browser/autocomplete/keyword_provider.cc         !input.allow_exact_keyword_match()) {
input             328 chrome/browser/autocomplete/keyword_provider.cc         template_url, input, keyword.length(), remaining_input, true, -1));
input             331 chrome/browser/autocomplete/keyword_provider.cc       if (input.matches_requested() == AutocompleteInput::ALL_MATCHES) {
input             345 chrome/browser/autocomplete/keyword_provider.cc           (input.matches_requested() != AutocompleteInput::BEST_MATCH)) {
input             353 chrome/browser/autocomplete/keyword_provider.cc       } else if (input.matches_requested() == AutocompleteInput::ALL_MATCHES) {
input             354 chrome/browser/autocomplete/keyword_provider.cc         extension_suggest_last_input_ = input;
input             374 chrome/browser/autocomplete/keyword_provider.cc           *i, input, keyword.length(), remaining_input, false, -1));
input             387 chrome/browser/autocomplete/keyword_provider.cc bool KeywordProvider::ExtractKeywordFromInput(const AutocompleteInput& input,
input             390 chrome/browser/autocomplete/keyword_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input             391 chrome/browser/autocomplete/keyword_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY))
input             395 chrome/browser/autocomplete/keyword_provider.cc       SplitKeywordFromInput(input.text(), true, remaining_input));
input             424 chrome/browser/autocomplete/keyword_provider.cc     const AutocompleteInput& input,
input             440 chrome/browser/autocomplete/keyword_provider.cc         CalculateRelevance(input.type(), keyword_complete,
input             444 chrome/browser/autocomplete/keyword_provider.cc                            supports_replacement, input.prefer_keyword(),
input             445 chrome/browser/autocomplete/keyword_provider.cc                            input.allow_exact_keyword_match());
input             528 chrome/browser/autocomplete/keyword_provider.cc   const AutocompleteInput& input = extension_suggest_last_input_;
input             544 chrome/browser/autocomplete/keyword_provider.cc           !ExtractKeywordFromInput(input, &keyword, &remaining_input))
input             565 chrome/browser/autocomplete/keyword_provider.cc       bool result = ExtractKeywordFromInput(input, &keyword, &remaining_input);
input             581 chrome/browser/autocomplete/keyword_provider.cc         int first_relevance = CalculateRelevance(input.type(), true, true,
input             582 chrome/browser/autocomplete/keyword_provider.cc             input.prefer_keyword(), input.allow_exact_keyword_match());
input             587 chrome/browser/autocomplete/keyword_provider.cc             template_url, input, keyword.length(),
input              62 chrome/browser/autocomplete/keyword_provider.h   static base::string16 SplitKeywordFromInput(const base::string16& input,
input              72 chrome/browser/autocomplete/keyword_provider.h       const base::string16& input,
input              80 chrome/browser/autocomplete/keyword_provider.h       AutocompleteInput* input);
input              90 chrome/browser/autocomplete/keyword_provider.h                                         const AutocompleteInput& input);
input              93 chrome/browser/autocomplete/keyword_provider.h   virtual void Start(const AutocompleteInput& input,
input             110 chrome/browser/autocomplete/keyword_provider.h   static bool ExtractKeywordFromInput(const AutocompleteInput& input,
input             129 chrome/browser/autocomplete/keyword_provider.h       const AutocompleteInput& input,
input              29 chrome/browser/autocomplete/keyword_provider_unittest.cc     const base::string16 input;
input              81 chrome/browser/autocomplete/keyword_provider_unittest.cc     SCOPED_TRACE(keyword_cases[i].input);
input              82 chrome/browser/autocomplete/keyword_provider_unittest.cc     AutocompleteInput input(keyword_cases[i].input, base::string16::npos,
input              86 chrome/browser/autocomplete/keyword_provider_unittest.cc     kw_provider_->Start(input, false);
input             324 chrome/browser/autocomplete/keyword_provider_unittest.cc     AutocompleteInput input(ASCIIToUTF16(cases[i].text),
input             331 chrome/browser/autocomplete/keyword_provider_unittest.cc                                                             &input);
input             336 chrome/browser/autocomplete/keyword_provider_unittest.cc     EXPECT_EQ(ASCIIToUTF16(cases[i].updated_text), input.text());
input             337 chrome/browser/autocomplete/keyword_provider_unittest.cc     EXPECT_EQ(cases[i].updated_cursor_position, input.cursor_position());
input             147 chrome/browser/autocomplete/search_provider.cc void SearchProvider::RemoveStaleResults(const base::string16& input,
input             177 chrome/browser/autocomplete/search_provider.cc       if (sug_it->IsInlineable(input))
input             182 chrome/browser/autocomplete/search_provider.cc       const bool sug_inlineable = sug_it->IsInlineable(input);
input             183 chrome/browser/autocomplete/search_provider.cc       const bool nav_inlineable = nav_it->IsInlineable(input);
input             192 chrome/browser/autocomplete/search_provider.cc       if (nav_it->IsInlineable(input))
input             232 chrome/browser/autocomplete/search_provider.cc void SearchProvider::Start(const AutocompleteInput& input,
input             244 chrome/browser/autocomplete/search_provider.cc   if (!profile_ || (input.type() == AutocompleteInput::INVALID)) {
input             249 chrome/browser/autocomplete/search_provider.cc   keyword_input_ = input;
input             286 chrome/browser/autocomplete/search_provider.cc   if (input.text().empty()) {
input             303 chrome/browser/autocomplete/search_provider.cc   input_ = input;
input             768 chrome/browser/autocomplete/search_provider.cc     const AutocompleteInput& input) {
input             773 chrome/browser/autocomplete/search_provider.cc   TemplateURLRef::SearchTermsArgs search_term_args(input.text());
input             774 chrome/browser/autocomplete/search_provider.cc   search_term_args.cursor_position = input.cursor_position();
input             775 chrome/browser/autocomplete/search_provider.cc   search_term_args.page_classification = input.current_page_classification();
input             783 chrome/browser/autocomplete/search_provider.cc                  input.current_page_classification(), profile_) &&
input            1247 chrome/browser/autocomplete/search_provider.cc   base::string16 input;
input            1251 chrome/browser/autocomplete/search_provider.cc       base::TRIM_TRAILING, &input) != base::TRIM_NONE;
input            1260 chrome/browser/autocomplete/search_provider.cc       URLPrefix::BestURLPrefix(navigation.formatted_url(), input);
input            1262 chrome/browser/autocomplete/search_provider.cc       navigation.formatted_url().find(input) : prefix->prefix.length();
input            1263 chrome/browser/autocomplete/search_provider.cc   bool trim_http = !AutocompleteInput::HasHTTPScheme(input) &&
input            1271 chrome/browser/autocomplete/search_provider.cc       base::string16::npos : (match_start + input.length());
input            1297 chrome/browser/autocomplete/search_provider.cc   match.allowed_to_be_default_match = navigation.IsInlineable(input) &&
input            1305 chrome/browser/autocomplete/search_provider.cc   AutocompleteMatch::ClassifyMatchInString(input, match.description,
input             126 chrome/browser/autocomplete/search_provider.h   static void RemoveStaleResults(const base::string16& input,
input             142 chrome/browser/autocomplete/search_provider.h   virtual void Start(const AutocompleteInput& input,
input             192 chrome/browser/autocomplete/search_provider.h                                         const AutocompleteInput& input);
input             129 chrome/browser/autocomplete/search_provider_unittest.cc     const base::string16 input;
input             197 chrome/browser/autocomplete/search_provider_unittest.cc   void ForcedQueryTestHelper(const std::string& input,
input             297 chrome/browser/autocomplete/search_provider_unittest.cc     AutocompleteInput input(cases[i].input, base::string16::npos,
input             302 chrome/browser/autocomplete/search_provider_unittest.cc     provider_->Start(input, false);
input             306 chrome/browser/autocomplete/search_provider_unittest.cc         cases[i].input +
input             345 chrome/browser/autocomplete/search_provider_unittest.cc   AutocompleteInput input(text, base::string16::npos, base::string16(), GURL(),
input             349 chrome/browser/autocomplete/search_provider_unittest.cc   provider_->Start(input, false);
input             425 chrome/browser/autocomplete/search_provider_unittest.cc     const std::string& input,
input             429 chrome/browser/autocomplete/search_provider_unittest.cc   QueryForInput(ASCIIToUTF16(input), false, false);
input            2671 chrome/browser/autocomplete/search_provider_unittest.cc     const base::string16 input;
input            2722 chrome/browser/autocomplete/search_provider_unittest.cc     QueryForInput(cases[i].input, false, false);
input            2760 chrome/browser/autocomplete/search_provider_unittest.cc     const std::string input;
input            2835 chrome/browser/autocomplete/search_provider_unittest.cc     QueryForInput(ASCIIToUTF16(cases[i].input), false, false);
input            2882 chrome/browser/autocomplete/search_provider_unittest.cc     const std::string input;
input            2961 chrome/browser/autocomplete/search_provider_unittest.cc     QueryForInput(ASCIIToUTF16(cases[i].input), false, false);
input            3037 chrome/browser/autocomplete/search_provider_unittest.cc     const std::string input;
input            3204 chrome/browser/autocomplete/search_provider_unittest.cc     QueryForInput(ASCIIToUTF16(cases[i].input), false, false);
input            3208 chrome/browser/autocomplete/search_provider_unittest.cc             false, ASCIIToUTF16(cases[i].input), std::string())));
input            3216 chrome/browser/autocomplete/search_provider_unittest.cc     QueryForInput(ASCIIToUTF16(cases[i].input), true, false);
input            3220 chrome/browser/autocomplete/search_provider_unittest.cc             false, ASCIIToUTF16(cases[i].input), std::string())));
input            3232 chrome/browser/autocomplete/search_provider_unittest.cc   const base::string16 input(ASCIIToUTF16("ht"));
input            3236 chrome/browser/autocomplete/search_provider_unittest.cc       input, std::string());
input            3239 chrome/browser/autocomplete/search_provider_unittest.cc   QueryForInput(input, false, false);
input            3247 chrome/browser/autocomplete/search_provider_unittest.cc   QueryForInput(input, true, false);
input              88 chrome/browser/autocomplete/shortcuts_provider.cc void ShortcutsProvider::Start(const AutocompleteInput& input,
input              92 chrome/browser/autocomplete/shortcuts_provider.cc   if ((input.type() == AutocompleteInput::INVALID) ||
input              93 chrome/browser/autocomplete/shortcuts_provider.cc       (input.type() == AutocompleteInput::FORCED_QUERY))
input              96 chrome/browser/autocomplete/shortcuts_provider.cc   if (input.text().empty())
input             103 chrome/browser/autocomplete/shortcuts_provider.cc   GetMatches(input);
input             104 chrome/browser/autocomplete/shortcuts_provider.cc   if (input.text().length() < 6) {
input             107 chrome/browser/autocomplete/shortcuts_provider.cc         base::IntToString(input.text().size());
input             151 chrome/browser/autocomplete/shortcuts_provider.cc void ShortcutsProvider::GetMatches(const AutocompleteInput& input) {
input             158 chrome/browser/autocomplete/shortcuts_provider.cc   base::string16 term_string(base::i18n::ToLower(input.text()));
input             162 chrome/browser/autocomplete/shortcuts_provider.cc   AutocompleteInput fixed_up_input(input);
input             170 chrome/browser/autocomplete/shortcuts_provider.cc       input.current_page_classification(), &max_relevance))
input             182 chrome/browser/autocomplete/shortcuts_provider.cc           term_string_as_gurl, input.prevent_inline_autocomplete()));
input             208 chrome/browser/autocomplete/shortcuts_provider.cc           input.current_page_classification()) &&
input              32 chrome/browser/autocomplete/shortcuts_provider.h   virtual void Start(const AutocompleteInput& input,
input              49 chrome/browser/autocomplete/shortcuts_provider.h   void GetMatches(const AutocompleteInput& input);
input             352 chrome/browser/autocomplete/shortcuts_provider_unittest.cc   AutocompleteInput input(text, base::string16::npos, base::string16(), GURL(),
input             356 chrome/browser/autocomplete/shortcuts_provider_unittest.cc   provider_->Start(input, false);
input              83 chrome/browser/autocomplete/zero_suggest_provider.cc void ZeroSuggestProvider::Start(const AutocompleteInput& input,
input              86 chrome/browser/autocomplete/zero_suggest_provider.cc   if (input.type() == AutocompleteInput::INVALID)
input              92 chrome/browser/autocomplete/zero_suggest_provider.cc   permanent_text_ = input.text();
input              93 chrome/browser/autocomplete/zero_suggest_provider.cc   current_query_ = input.current_url().spec();
input              94 chrome/browser/autocomplete/zero_suggest_provider.cc   current_page_classification_ = input.current_page_classification();
input             110 chrome/browser/autocomplete/zero_suggest_provider.cc   if (CanSendURL(input.current_url(), suggest_url, default_provider,
input             118 chrome/browser/autocomplete/zero_suggest_provider.cc                                                   input.current_url())) {
input              51 chrome/browser/autocomplete/zero_suggest_provider.h   virtual void Start(const AutocompleteInput& input,
input              51 chrome/browser/autofill/form_structure_browsertest.cc   virtual void GenerateResults(const std::string& input,
input              68 chrome/browser/autofill/form_structure_browsertest.cc void FormStructureBrowserTest::GenerateResults(const std::string& input,
input              71 chrome/browser/autofill/form_structure_browsertest.cc                                                        HTMLToDataURI(input)));
input             115 chrome/browser/bookmarks/bookmark_index_unittest.cc     const std::string input;
input             147 chrome/browser/bookmarks/bookmark_index_unittest.cc     base::SplitString(data[i].input, ';', &titles);
input             222 chrome/browser/bookmarks/bookmark_index_unittest.cc   const char* input[] = { "a", "b" };
input             223 chrome/browser/bookmarks/bookmark_index_unittest.cc   AddBookmarksWithTitles(input, ARRAYSIZE_UNSAFE(input));
input             232 chrome/browser/bookmarks/bookmark_index_unittest.cc   const char* input[] = { "a", "b" };
input             233 chrome/browser/bookmarks/bookmark_index_unittest.cc   AddBookmarksWithTitles(input, ARRAYSIZE_UNSAFE(input));
input             243 chrome/browser/bookmarks/bookmark_index_unittest.cc   const char* input[] = { "abcd", "abcde" };
input             244 chrome/browser/bookmarks/bookmark_index_unittest.cc   AddBookmarksWithTitles(input, ARRAYSIZE_UNSAFE(input));
input             301 chrome/browser/chromeos/drive/file_system_util.cc std::string NormalizeFileName(const std::string& input) {
input             302 chrome/browser/chromeos/drive/file_system_util.cc   DCHECK(IsStringUTF8(input));
input             305 chrome/browser/chromeos/drive/file_system_util.cc   if (!base::ConvertToUtf8AndNormalize(input, base::kCodepageUTF8, &output))
input             306 chrome/browser/chromeos/drive/file_system_util.cc     output = input;
input             128 chrome/browser/chromeos/drive/file_system_util.h std::string NormalizeFileName(const std::string& input);
input              35 chrome/browser/chromeos/drive/resource_entry_conversion.cc bool ConvertToResourceEntry(const google_apis::ResourceEntry& input,
input              47 chrome/browser/chromeos/drive/resource_entry_conversion.cc   converted.set_title(input.title());
input              49 chrome/browser/chromeos/drive/resource_entry_conversion.cc   converted.set_resource_id(input.resource_id());
input              58 chrome/browser/chromeos/drive/resource_entry_conversion.cc       input.GetLinkByType(google_apis::Link::LINK_PARENT);
input              62 chrome/browser/chromeos/drive/resource_entry_conversion.cc   converted.set_deleted(input.deleted());
input              63 chrome/browser/chromeos/drive/resource_entry_conversion.cc   converted.set_shared_with_me(HasLabel(input, kSharedWithMeLabel));
input              64 chrome/browser/chromeos/drive/resource_entry_conversion.cc   converted.set_shared(HasLabel(input, kSharedLabel));
input              68 chrome/browser/chromeos/drive/resource_entry_conversion.cc   file_info->set_last_modified(input.updated_time().ToInternalValue());
input              71 chrome/browser/chromeos/drive/resource_entry_conversion.cc   file_info->set_last_accessed(input.last_viewed_time().ToInternalValue());
input              72 chrome/browser/chromeos/drive/resource_entry_conversion.cc   file_info->set_creation_time(input.published_time().ToInternalValue());
input              74 chrome/browser/chromeos/drive/resource_entry_conversion.cc   if (input.is_file() || input.is_hosted_document()) {
input              77 chrome/browser/chromeos/drive/resource_entry_conversion.cc     if (input.is_file()) {
input              78 chrome/browser/chromeos/drive/resource_entry_conversion.cc       file_info->set_size(input.file_size());
input              79 chrome/browser/chromeos/drive/resource_entry_conversion.cc       file_specific_info->set_md5(input.file_md5());
input              83 chrome/browser/chromeos/drive/resource_entry_conversion.cc     } else if (input.is_hosted_document()) {
input              88 chrome/browser/chromeos/drive/resource_entry_conversion.cc       const std::string document_extension = input.GetHostedDocumentExtension();
input              98 chrome/browser/chromeos/drive/resource_entry_conversion.cc     file_specific_info->set_content_mime_type(input.content_mime_type());
input              99 chrome/browser/chromeos/drive/resource_entry_conversion.cc     file_specific_info->set_is_hosted_document(input.is_hosted_document());
input             102 chrome/browser/chromeos/drive/resource_entry_conversion.cc         input.GetLinkByType(google_apis::Link::LINK_ALTERNATE);
input             106 chrome/browser/chromeos/drive/resource_entry_conversion.cc     const int64 image_width = input.image_width();
input             110 chrome/browser/chromeos/drive/resource_entry_conversion.cc     const int64 image_height = input.image_height();
input             114 chrome/browser/chromeos/drive/resource_entry_conversion.cc     const int64 image_rotation = input.image_rotation();
input             117 chrome/browser/chromeos/drive/resource_entry_conversion.cc   } else if (input.is_folder()) {
input             127 chrome/browser/chromeos/drive/resource_entry_conversion.cc     if (!input.deleted())
input              34 chrome/browser/chromeos/drive/resource_entry_conversion.h bool ConvertToResourceEntry(const google_apis::ResourceEntry& input,
input            1890 chrome/browser/chromeos/events/event_rewriter_unittest.cc     ui::KeyboardCode input;
input            2018 chrome/browser/chromeos/events/event_rewriter_unittest.cc                                         chromeos_tests[i].input,
input            2033 chrome/browser/chromeos/events/event_rewriter_unittest.cc     ui::KeyboardCode input;
input            2237 chrome/browser/chromeos/events/event_rewriter_unittest.cc                                         tests[i].input,
input              54 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc   Input input;
input             272 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc   void InitConfigWithTestInput(const Input& input,
input             275 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc     switch (input.mode) {
input             284 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc             ProxyConfigDictionary::CreatePacScript(input.pac_url, false);
input             289 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc           ProxyConfigDictionary::CreateFixedServers(input.server,
input             290 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc                                                     input.bypass_rules);
input             343 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc     InitConfigWithTestInput(tests[i].input, &test_config);
input             392 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc     InitConfigWithTestInput(managed_params.input, &managed_config);
input             394 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc     InitConfigWithTestInput(recommended_params.input, &recommended_config);
input             396 chrome/browser/chromeos/proxy_config_service_impl_unittest.cc     InitConfigWithTestInput(network_params.input, &network_config);
input              48 chrome/browser/chromeos/status/network_menu.cc std::string EscapeAmpersands(const std::string& input) {
input              49 chrome/browser/chromeos/status/network_menu.cc   std::string str = input;
input              46 chrome/browser/component_updater/pnacl/pnacl_component_installer.cc std::string SanitizeForPath(const std::string& input) {
input              48 chrome/browser/component_updater/pnacl/pnacl_component_installer.cc   base::ReplaceChars(input, "-", "_", &result);
input             256 chrome/browser/devtools/adb/android_rsa.cc   std::string input(reinterpret_cast<char*>(&pkey), sizeof(pkey));
input             257 chrome/browser/devtools/adb/android_rsa.cc   base::Base64Encode(input, &output);
input             316 chrome/browser/enumerate_modules_model_win.cc static void GenerateHash(const std::string& input, std::string* output) {
input             317 chrome/browser/enumerate_modules_model_win.cc   if (input.empty()) {
input             323 chrome/browser/enumerate_modules_model_win.cc   crypto::SHA256HashString(input, hash, sizeof(hash));
input              20 chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.cc bool ConvertVendorIDSourceToApi(const BluetoothDevice::VendorIDSource& input,
input              22 chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.cc   switch (input) {
input              38 chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.cc bool ConvertDeviceTypeToApi(const BluetoothDevice::DeviceType& input,
input              40 chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.cc   switch (input) {
input             194 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   base::DictionaryValue input;
input             196 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestAction::Create(NULL, input, &error, &bad_message);
input             201 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   input.SetString(keys::kInstanceTypeKey, kUnknownActionType);
input             203 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestAction::Create(NULL, input, &error, &bad_message);
input             208 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   input.SetString(keys::kInstanceTypeKey, keys::kCancelRequestType);
input             210 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestAction::Create(NULL, input, &error, &bad_message);
input             222 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   WebRequestActionSet::AnyVector input;
input             226 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestActionSet::Create(NULL, input, &error, &bad_message);
input             240 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   input.push_back(linked_ptr<base::Value>(correct_action.DeepCopy()));
input             242 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestActionSet::Create(NULL, input, &error, &bad_message);
input             252 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   input.push_back(linked_ptr<base::Value>(incorrect_action.DeepCopy()));
input             254 chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc   result = WebRequestActionSet::Create(NULL, input, &error, &bad_message);
input              13 chrome/browser/extensions/api/idltest/idltest_api.cc base::ListValue* CopyBinaryValueToIntegerList(const BinaryValue* input) {
input              15 chrome/browser/extensions/api/idltest/idltest_api.cc   const char* input_buffer = input->GetBuffer();
input              16 chrome/browser/extensions/api/idltest/idltest_api.cc   for (size_t i = 0; i < input->GetSize(); i++) {
input              25 chrome/browser/extensions/api/idltest/idltest_api.cc   BinaryValue* input = NULL;
input              26 chrome/browser/extensions/api/idltest/idltest_api.cc   EXTENSION_FUNCTION_VALIDATE(args_ != NULL && args_->GetBinary(0, &input));
input              27 chrome/browser/extensions/api/idltest/idltest_api.cc   SetResult(CopyBinaryValueToIntegerList(input));
input              32 chrome/browser/extensions/api/idltest/idltest_api.cc   BinaryValue* input = NULL;
input              33 chrome/browser/extensions/api/idltest/idltest_api.cc   EXTENSION_FUNCTION_VALIDATE(args_ != NULL && args_->GetBinary(0, &input));
input              34 chrome/browser/extensions/api/idltest/idltest_api.cc   SetResult(CopyBinaryValueToIntegerList(input));
input              45 chrome/browser/extensions/api/input_ime/input_ime_api.cc void SetMenuItemToMenu(const input_ime::MenuItem& input,
input              48 chrome/browser/extensions/api/input_ime/input_ime_api.cc   out->id = input.id;
input              49 chrome/browser/extensions/api/input_ime/input_ime_api.cc   if (input.label) {
input              51 chrome/browser/extensions/api/input_ime/input_ime_api.cc     out->label = *input.label;
input              54 chrome/browser/extensions/api/input_ime/input_ime_api.cc   if (input.style != input_ime::MenuItem::STYLE_NONE) {
input              57 chrome/browser/extensions/api/input_ime/input_ime_api.cc         input.style);
input              60 chrome/browser/extensions/api/input_ime/input_ime_api.cc   if (input.visible)
input              62 chrome/browser/extensions/api/input_ime/input_ime_api.cc   out->visible = input.visible ? *input.visible : true;
input              64 chrome/browser/extensions/api/input_ime/input_ime_api.cc   if (input.checked)
input              66 chrome/browser/extensions/api/input_ime/input_ime_api.cc   out->checked = input.checked ? *input.checked : false;
input              68 chrome/browser/extensions/api/input_ime/input_ime_api.cc   if (input.enabled)
input              70 chrome/browser/extensions/api/input_ime/input_ime_api.cc   out->enabled = input.enabled ? *input.enabled : true;
input              28 chrome/browser/extensions/api/log_private/log_parser.cc     const string& input,
input              33 chrome/browser/extensions/api/log_private/log_parser.cc   base::SplitString(input, '\n', &entries);
input              31 chrome/browser/extensions/api/log_private/log_parser.h       const std::string& input,
input              39 chrome/browser/extensions/api/log_private/log_parser.h       const std::string& input,
input              37 chrome/browser/extensions/api/log_private/syslog_parser.cc     const std::string& input,
input              42 chrome/browser/extensions/api/log_private/syslog_parser.cc   base::StringTokenizer tokenizer(input, " ");
input              64 chrome/browser/extensions/api/log_private/syslog_parser.cc   ParseLevel(input, entry.get());
input              65 chrome/browser/extensions/api/log_private/syslog_parser.cc   entry->full_entry = input;
input              84 chrome/browser/extensions/api/log_private/syslog_parser.cc SyslogParser::Error SyslogParser::ParseTime(const std::string& input,
input              86 chrome/browser/extensions/api/log_private/syslog_parser.cc   base::StringTokenizer tokenizer(input, kLogEntryDelimiters);
input             111 chrome/browser/extensions/api/log_private/syslog_parser.cc     const std::string& input,
input             113 chrome/browser/extensions/api/log_private/syslog_parser.cc   base::StringTokenizer tokenizer(input, kProcessInfoDelimiters);
input             131 chrome/browser/extensions/api/log_private/syslog_parser.cc void SyslogParser::ParseLevel(const std::string& input,
input             133 chrome/browser/extensions/api/log_private/syslog_parser.cc   if (input.find("ERROR") != std::string::npos) {
input             135 chrome/browser/extensions/api/log_private/syslog_parser.cc   } else if (input.find("WARN") != std::string::npos) {
input             137 chrome/browser/extensions/api/log_private/syslog_parser.cc   } else if (input.find("INFO") != std::string::npos) {
input              26 chrome/browser/extensions/api/log_private/syslog_parser.h       const std::string& input,
input              33 chrome/browser/extensions/api/log_private/syslog_parser.h   Error ParseTime(const std::string& input, double* output) const;
input              35 chrome/browser/extensions/api/log_private/syslog_parser.h   Error ParseProcess(const std::string& input,
input              38 chrome/browser/extensions/api/log_private/syslog_parser.h   void ParseLevel(const std::string& input,
input              47 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc     const api::VerificationProperties& input) {
input              53 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.certificate = input.certificate;
input              54 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.public_key = input.public_key;
input              55 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.nonce = input.nonce;
input              56 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.signed_data = input.signed_data;
input              57 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.device_serial = input.device_serial;
input              58 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.device_ssid = input.device_ssid;
input              59 chrome/browser/extensions/api/networking_private/networking_private_api_chromeos.cc   output.device_bssid = input.device_bssid;
input             113 chrome/browser/extensions/api/omnibox/omnibox_api.cc     const std::string& input, int suggest_id) {
input             119 chrome/browser/extensions/api/omnibox/omnibox_api.cc   args->Set(0, new base::StringValue(input));
input             134 chrome/browser/extensions/api/omnibox/omnibox_api.cc     const std::string& input,
input             147 chrome/browser/extensions/api/omnibox/omnibox_api.cc   args->Set(0, new base::StringValue(input));
input              57 chrome/browser/extensions/api/omnibox/omnibox_api.h       const std::string& input, int suggest_id);
input              63 chrome/browser/extensions/api/omnibox/omnibox_api.h       const std::string& input,
input             143 chrome/browser/extensions/api/terminal/terminal_private_api.cc                  this, params->pid, params->input));
input              64 chrome/browser/extensions/api/terminal/terminal_private_api.h   void SendInputOnFileThread(pid_t pid, const std::string& input);
input             105 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertDirectionToApi(const UsbEndpointDirection& input,
input             107 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             120 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertSynchronizationTypeToApi(const UsbSynchronizationType& input,
input             122 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             142 chrome/browser/extensions/api/usb/usb_api.cc     const UsbTransferType& input,
input             144 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             163 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertUsageTypeToApi(const UsbUsageType& input, usb::UsageType* output) {
input             164 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             180 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertDirection(const Direction& input,
input             182 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             195 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertRequestType(const RequestType& input,
input             197 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             216 chrome/browser/extensions/api/usb/usb_api.cc bool ConvertRecipient(const Recipient& input,
input             218 chrome/browser/extensions/api/usb/usb_api.cc   switch (input) {
input             238 chrome/browser/extensions/api/usb/usb_api.cc bool GetTransferSize(const T& input, size_t* output) {
input             239 chrome/browser/extensions/api/usb/usb_api.cc   if (input.direction == usb::DIRECTION_IN) {
input             240 chrome/browser/extensions/api/usb/usb_api.cc     const int* length = input.length.get();
input             246 chrome/browser/extensions/api/usb/usb_api.cc   } else if (input.direction == usb::DIRECTION_OUT) {
input             247 chrome/browser/extensions/api/usb/usb_api.cc     if (input.data.get()) {
input             248 chrome/browser/extensions/api/usb/usb_api.cc       *output = input.data->size();
input             257 chrome/browser/extensions/api/usb/usb_api.cc     const T& input, UsbEndpointDirection direction, size_t size) {
input             271 chrome/browser/extensions/api/usb/usb_api.cc     if (input.data.get() && size <= input.data->size()) {
input             272 chrome/browser/extensions/api/usb/usb_api.cc       memcpy(buffer->data(), input.data->data(), size);
input             500 chrome/browser/extensions/api/usb/usb_api.cc     const Direction& input, UsbEndpointDirection* output) {
input             501 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertDirection(input, output);
input             508 chrome/browser/extensions/api/usb/usb_api.cc     const RequestType& input, UsbDeviceHandle::TransferRequestType* output) {
input             509 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertRequestType(input, output);
input             516 chrome/browser/extensions/api/usb/usb_api.cc     const Recipient& input, UsbDeviceHandle::TransferRecipient* output) {
input             517 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertRecipient(input, output);
input             817 chrome/browser/extensions/api/usb/usb_api.cc     const UsbEndpointDirection& input,
input             819 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertDirectionToApi(input, output);
input             826 chrome/browser/extensions/api/usb/usb_api.cc     const UsbSynchronizationType& input,
input             828 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertSynchronizationTypeToApi(input, output);
input             835 chrome/browser/extensions/api/usb/usb_api.cc     const UsbTransferType& input,
input             837 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertTransferTypeToApi(input, output);
input             844 chrome/browser/extensions/api/usb/usb_api.cc     const UsbUsageType& input,
input             846 chrome/browser/extensions/api/usb/usb_api.cc   const bool converted = ConvertUsageTypeToApi(input, output);
input              56 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertDirectionSafely(const extensions::api::usb::Direction& input,
input              58 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertRequestTypeSafely(const extensions::api::usb::RequestType& input,
input              60 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertRecipientSafely(const extensions::api::usb::Recipient& input,
input             156 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertDirectionSafely(const UsbEndpointDirection& input,
input             159 chrome/browser/extensions/api/usb/usb_api.h       const UsbSynchronizationType& input,
input             161 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertTransferTypeSafely(const UsbTransferType& input,
input             163 chrome/browser/extensions/api/usb/usb_api.h   bool ConvertUsageTypeSafely(const UsbUsageType& input,
input             217 chrome/browser/extensions/api/web_request/form_data_parser.cc   static bool StartsWithPattern(const re2::StringPiece& input,
input             437 chrome/browser/extensions/api/web_request/form_data_parser.cc bool FormDataParserMultipart::StartsWithPattern(const re2::StringPiece& input,
input             439 chrome/browser/extensions/api/web_request/form_data_parser.cc   return pattern.Match(input, 0, input.size(), RE2::ANCHOR_START, NULL, 0);
input             150 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   std::vector<const base::StringPiece*> input;
input             154 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kMultipartBytes);
input             155 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(RunParser(kMultipart, input, &output));
input             159 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             160 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kMultipartBytesSplit1);
input             161 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kMultipartBytesSplit2);
input             162 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(RunParser(kMultipart, input, &output));
input             166 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             167 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kUrlEncodedBytes);
input             168 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(RunParser(kUrlEncoded, input, &output));
input             172 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             173 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kTextPlainBytes);
input             175 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_FALSE(RunParser(kTextPlain, input, &output));
input             214 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   std::vector<const base::StringPiece*> input;
input             217 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kMultipartBytes);
input             218 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(CheckParserFails(kMultipart, input));
input             221 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             222 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kMultipartBytesEmpty);
input             223 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(CheckParserFails(kMultipart, input));
input             226 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             227 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kUrlEncodedBytes);
input             228 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(CheckParserFails(kUrlEncoded, input));
input             233 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.clear();
input             234 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   input.push_back(&kUrlEncodedBytesEmpty);
input             235 chrome/browser/extensions/api/web_request/form_data_parser_unittest.cc   EXPECT_TRUE(RunParser(kUrlEncoded, input, &output));
input              53 chrome/browser/extensions/extension_creator_filter_unittest.cc   const base::FilePath::CharType* input;
input              74 chrome/browser/extensions/extension_creator_filter_unittest.cc     base::FilePath input(cases[i].input);
input              75 chrome/browser/extensions/extension_creator_filter_unittest.cc     base::FilePath test_file(CreateEmptyTestFile(input));
input             128 chrome/browser/extensions/extension_creator_filter_unittest.cc     base::FilePath input(cases[i].input_char);
input             130 chrome/browser/extensions/extension_creator_filter_unittest.cc     base::FilePath test_file(CreateEmptyTestFile(input));
input             104 chrome/browser/extensions/install_signer.cc bool ValidateExpireDateFormat(const std::string& input) {
input             105 chrome/browser/extensions/install_signer.cc   if (input.length() != 10)
input             109 chrome/browser/extensions/install_signer.cc       if (input[i] != '-')
input             111 chrome/browser/extensions/install_signer.cc     } else if (!IsAsciiDigit(input[i])) {
input             104 chrome/browser/guestview/webview/plugin_permission_helper.cc                                                   const std::string& input) {
input              14 chrome/browser/history/query_parser_unittest.cc     const char* input;
input              85 chrome/browser/history/query_parser_unittest.cc               query_parser_.ParseQuery(base::UTF8ToUTF16(data[i].input),
input             237 chrome/browser/media/webrtc_log_uploader.cc                                     uint8* input,
input             239 chrome/browser/media/webrtc_log_uploader.cc   PartialCircularBuffer read_pcb(input, input_size);
input             109 chrome/browser/media/webrtc_log_uploader.h                    uint8* input,
input              26 chrome/browser/media_galleries/fileapi/iapps_finder_impl_win_browsertest.cc   std::string input(reinterpret_cast<const char*>(path.value().data()),
input              29 chrome/browser/media_galleries/fileapi/iapps_finder_impl_win_browsertest.cc   base::Base64Encode(input, &result);
input              33 chrome/browser/media_galleries/fileapi/itunes_data_provider.cc std::string SanitizeName(const std::string& input) {
input              35 chrome/browser/media_galleries/fileapi/itunes_data_provider.cc   base::ConvertToUtf8AndNormalize(input, base::kCodepageUTF8, &result);
input              77 chrome/browser/metrics/compression_utils.cc bool GzipCompress(const std::string& input, std::string* output) {
input              79 chrome/browser/metrics/compression_utils.cc                                      compressBound(input.size()));
input              84 chrome/browser/metrics/compression_utils.cc                          bit_cast<const Bytef*>(input.data()),
input              85 chrome/browser/metrics/compression_utils.cc                          input.size()) != Z_OK)
input              13 chrome/browser/metrics/compression_utils.h bool GzipCompress(const std::string& input, std::string* output);
input              24 chrome/browser/net/probe_message.cc bool ProbeMessage::ParseInput(const std::string& input,
input              27 chrome/browser/net/probe_message.cc   std::string input_decoded = Encode(input);
input              31 chrome/browser/net/probe_message.cc     DVLOG(1) << "ProtoBuffer string parsing error. Input size:" << input.size();
input             104 chrome/browser/net/probe_message.cc std::string ProbeMessage::Encode(const std::string& input) const {
input             106 chrome/browser/net/probe_message.cc   std::string output(input.size(), 0);
input             110 chrome/browser/net/probe_message.cc   for (size_t i = 0; i < input.size(); ++i) {
input             111 chrome/browser/net/probe_message.cc     output[i] = input[i] ^ kEncodingString[key_pos];
input              35 chrome/browser/net/probe_message.h   bool ParseInput(const std::string& input, ProbePacket* packet) const;
input              51 chrome/browser/net/probe_message.h   std::string Encode(const std::string& input) const;
input              78 chrome/browser/password_manager/password_store_win_unittest.cc     DATA_BLOB input = {0};
input              82 chrome/browser/password_manager/password_store_win_unittest.cc     input.pbData = data;
input              83 chrome/browser/password_manager/password_store_win_unittest.cc     input.cbData = sizeof(data);
input              90 chrome/browser/password_manager/password_store_win_unittest.cc     if (!CryptProtectData(&input, NULL, &url_key, NULL, NULL,
input             211 chrome/browser/profile_resetter/automatic_profile_resetter_unittest.cc std::string GetHash(const std::string& input) {
input             212 chrome/browser/profile_resetter/automatic_profile_resetter_unittest.cc   return jtl_foundation::Hasher(kTestHashSeed).GetHash(input);
input              20 chrome/browser/profile_resetter/jtl_foundation.cc std::string Hasher::GetHash(const std::string& input) const {
input              21 chrome/browser/profile_resetter/jtl_foundation.cc   if (cached_hashes_.find(input) == cached_hashes_.end()) {
input              24 chrome/browser/profile_resetter/jtl_foundation.cc     if (!hmac_.Sign(input, digest, arraysize(digest))) {
input              30 chrome/browser/profile_resetter/jtl_foundation.cc     cached_hashes_[input] = base::HexEncode(digest, kHashSizeInBytes / 2);
input              31 chrome/browser/profile_resetter/jtl_foundation.cc     DCHECK_EQ(kHashSizeInBytes, cached_hashes_[input].size());
input              33 chrome/browser/profile_resetter/jtl_foundation.cc   return cached_hashes_[input];
input             181 chrome/browser/profile_resetter/jtl_foundation.h   std::string GetHash(const std::string& input) const;
input              40 chrome/browser/profile_resetter/jtl_interpreter.cc                    const base::DictionaryValue* input,
input              47 chrome/browser/profile_resetter/jtl_interpreter.cc     stack_.push_back(input);
input              67 chrome/browser/profile_resetter/jtl_interpreter.cc   std::string GetHash(const std::string& input) {
input              68 chrome/browser/profile_resetter/jtl_interpreter.cc     return hasher_->GetHash(input);
input             698 chrome/browser/profile_resetter/jtl_interpreter.cc     const base::DictionaryValue* input)
input             701 chrome/browser/profile_resetter/jtl_interpreter.cc       input_(input),
input             704 chrome/browser/profile_resetter/jtl_interpreter.cc   DCHECK(input->IsType(base::Value::TYPE_DICTIONARY));
input              32 chrome/browser/profile_resetter/jtl_interpreter.h                  const base::DictionaryValue* input);
input              31 chrome/browser/profile_resetter/jtl_interpreter_unittest.cc std::string GetHash(const std::string& input) {
input              32 chrome/browser/profile_resetter/jtl_interpreter_unittest.cc   return jtl_foundation::Hasher(seed).GetHash(input);
input             684 chrome/browser/profile_resetter/jtl_interpreter_unittest.cc   base::DictionaryValue input;
input             685 chrome/browser/profile_resetter/jtl_interpreter_unittest.cc   JtlInterpreter interpreter(kTestSeed, kTestProgram, &input);
input             164 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   std::string input = machine_id;
input             165 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   input.append(kDRMIdentifierFile);
input             166 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   input.append(salt_bytes.begin(), salt_bytes.end());
input             167 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   crypto::SHA256HashString(input, &id_buf, sizeof(id_buf));
input             170 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   input = machine_id;
input             171 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   input.append(kDRMIdentifierFile);
input             172 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   input.append(id);
input             173 chrome/browser/renderer_host/pepper/device_id_fetcher.cc   crypto::SHA256HashString(input, &id_buf, sizeof(id_buf));
input              66 chrome/browser/safe_browsing/chunk_range.cc bool StringToRanges(const std::string& input,
input              73 chrome/browser/safe_browsing/chunk_range.cc   base::SplitString(input, ',', &chunk_parts);
input              51 chrome/browser/safe_browsing/chunk_range.h bool StringToRanges(const std::string& input,
input              94 chrome/browser/safe_browsing/chunk_range_unittest.cc   std::string input = "1-100,398,415,1138-2001,2019";
input              95 chrome/browser/safe_browsing/chunk_range_unittest.cc   EXPECT_TRUE(StringToRanges(input, &ranges));
input             106 chrome/browser/safe_browsing/chunk_range_unittest.cc   input = "1,2,3,4,5,6,7";
input             107 chrome/browser/safe_browsing/chunk_range_unittest.cc   EXPECT_TRUE(StringToRanges(input, &ranges));
input             112 chrome/browser/safe_browsing/chunk_range_unittest.cc   input = "300-3001";
input             113 chrome/browser/safe_browsing/chunk_range_unittest.cc   EXPECT_TRUE(StringToRanges(input, &ranges));
input             120 chrome/browser/safe_browsing/chunk_range_unittest.cc   input = "17";
input             121 chrome/browser/safe_browsing/chunk_range_unittest.cc   EXPECT_TRUE(StringToRanges(input, &ranges));
input             128 chrome/browser/safe_browsing/chunk_range_unittest.cc   input = "x-y";
input             129 chrome/browser/safe_browsing/chunk_range_unittest.cc   EXPECT_FALSE(StringToRanges(input, &ranges));
input             207 chrome/browser/safe_browsing/protocol_manager.h   GURL NextChunkUrl(const std::string& input) const;
input              25 chrome/browser/safe_browsing/protocol_parser.cc bool GetLine(const char* input, int input_len, std::string* line) {
input              26 chrome/browser/safe_browsing/protocol_parser.cc   const char* pos = input;
input              27 chrome/browser/safe_browsing/protocol_parser.cc   while (pos && (pos - input < input_len)) {
input              29 chrome/browser/safe_browsing/protocol_parser.cc       line->assign(input, pos - input);
input              85 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc     const char* input;           // A string to be tested.
input             357 chrome/browser/spellchecker/spellcheck_platform_mac_unittest.cc     const base::string16 word(base::ASCIIToUTF16(kTestCases[i].input));
input             238 chrome/browser/themes/browser_theme_pack.cc bool InputScalesValid(const base::StringPiece& input,
input             240 chrome/browser/themes/browser_theme_pack.cc   size_t scales_size = static_cast<size_t>(input.size() / sizeof(float));
input             245 chrome/browser/themes/browser_theme_pack.cc   memcpy(scales.get(), input.data(), input.size());
input             129 chrome/browser/themes/theme_properties.cc SkColor TintForUnderline(SkColor input) {
input             130 chrome/browser/themes/theme_properties.cc   return SkColorSetA(input, SkColorGetA(input) / 3);
input             464 chrome/browser/thumbnails/content_analysis.cc float AutoSegmentPeaks(const std::vector<float>& input) {
input             468 chrome/browser/thumbnails/content_analysis.cc   if (!ComputeScaledHistogram(input, &histogram, &minmax))
input              44 chrome/browser/thumbnails/content_analysis.h float AutoSegmentPeaks(const std::vector<float>& input);
input              84 chrome/browser/ui/autofill/autofill_dialog_common.cc     const DetailInput* input = &input_template[i];
input              85 chrome/browser/ui/autofill/autofill_dialog_common.cc     inputs->push_back(*input);
input            1282 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc       DetailInput* input = &(*inputs)[i];
input            1283 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc       if (input->length != DetailInput::NONE) {
input            1284 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc         input->initial_value =
input            1285 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc             GetInfoFromInputs(snapshot, section, AutofillType(input->type));
input            1287 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc       if (InputWasEdited(input->type, input->initial_value))
input            1717 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc     const DetailInput& input,
input            1722 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc   if (input.type == CREDIT_CARD_NUMBER)
input            1727 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc   if (input.type == CREDIT_CARD_VERIFICATION_CODE &&
input            1735 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc       if (iter->first == input.type)
input             135 chrome/browser/ui/autofill/autofill_dialog_controller_impl.h   virtual bool InputIsEditable(const DetailInput& input, DialogSection section)
input             121 chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc     const DetailInput& input = inputs[i];
input             122 chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc     (*outputs)[input.type] = input.initial_value;
input              60 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc     DetailInput input = { length, server_type, placeholder };
input              61 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc     inputs->push_back(input);
input              70 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc       DetailInput input = { length, server_type, placeholder };
input              71 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc       inputs->push_back(input);
input              80 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc   DetailInput input = { DetailInput::LONG, server_type, placeholder_text };
input              81 chrome/browser/ui/autofill/autofill_dialog_i18n_input.cc   inputs->push_back(input);
input             142 chrome/browser/ui/autofill/autofill_dialog_view_delegate.h   virtual bool InputIsEditable(const DetailInput& input,
input              57 chrome/browser/ui/autofill/mock_autofill_dialog_view_delegate.h   MOCK_METHOD2(InputIsEditable, bool(const DetailInput& input,
input              64 chrome/browser/ui/cocoa/omnibox/omnibox_view_mac.h   virtual void SetGrayTextAutocompletion(const base::string16& input) OVERRIDE;
input              49 chrome/browser/ui/gtk/content_setting_bubble_gtk.cc std::string BuildElidedText(const std::string& input) {
input              51 chrome/browser/ui/gtk/content_setting_bubble_gtk.cc       base::UTF8ToUTF16(input),
input              75 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc   const char input[] = "  hello, world ";
input              76 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc   const std::string expected = input;
input              78 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc   gtk_text_buffer_insert(text_buffer_, &i, input, strlen(input));
input              84 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc   const char input[] = "  hello, world ";
input              89 chrome/browser/ui/gtk/omnibox/omnibox_view_gtk_unittest.cc   gtk_text_buffer_insert(text_buffer_, &i, input, strlen(input));
input             279 chrome/browser/ui/omnibox/omnibox_edit_model.cc         autocomplete_controller()->input(), match);
input             631 chrome/browser/ui/omnibox/omnibox_edit_model.cc     const AutocompleteInput& old_input = autocomplete_controller()->input();
input             632 chrome/browser/ui/omnibox/omnibox_edit_model.cc     AutocompleteInput input(
input             641 chrome/browser/ui/omnibox/omnibox_edit_model.cc             input.text(), input.canonicalized_url(), false));
input             721 chrome/browser/ui/omnibox/omnibox_edit_model.cc         autocomplete_controller()->input().type(),
input              80 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc       const base::string16& input) OVERRIDE {}
input             144 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     const char* input;
input             149 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc   } input[] = {
input             204 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc   for (size_t i = 0; i < ARRAYSIZE_UNSAFE(input); ++i) {
input             205 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     toolbar_model()->set_text(ASCIIToUTF16(input[i].perm_text));
input             209 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc         input[i].extracted_search_terms);
input             211 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     base::string16 result = ASCIIToUTF16(input[i].input);
input             214 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     model.AdjustTextForCopy(input[i].sel_start, input[i].is_all_selected,
input             216 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     EXPECT_EQ(ASCIIToUTF16(input[i].expected_output), result) << "@: " << i;
input             217 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc     EXPECT_EQ(input[i].write_url, write_url) << " @" << i;
input             219 chrome/browser/ui/omnibox/omnibox_edit_unittest.cc       EXPECT_EQ(input[i].expected_url, url.spec()) << " @" << i;
input             209 chrome/browser/ui/omnibox/omnibox_view.h   virtual void SetGrayTextAutocompletion(const base::string16& input) = 0;
input            1481 chrome/browser/ui/omnibox/omnibox_view_browsertest.cc       omnibox_view->model()->autocomplete_controller()->input().text();
input            1494 chrome/browser/ui/omnibox/omnibox_view_browsertest.cc       omnibox_view->model()->autocomplete_controller()->input().text());
input              21 chrome/browser/ui/tests/elide_url_unittest.cc   const std::string input;
input              28 chrome/browser/ui/tests/elide_url_unittest.cc     const GURL url(testcases[i].input);
input             189 chrome/browser/ui/tests/elide_url_unittest.cc         GURL(testcases[i].input), gfx::FontList(), available_width));
input            1933 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     const DetailInput& input = *it;
input            1936 chrome/browser/ui/views/autofill/autofill_dialog_views.cc         delegate_->ComboboxModelForAutofillType(input.type);
input            1941 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       comboboxes->insert(std::make_pair(input.type, combobox));
input            1942 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       SelectComboboxValueOrSetToDefault(combobox, input.initial_value);
input            1945 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       ExpandingTextfield* field = new ExpandingTextfield(input.initial_value,
input            1946 chrome/browser/ui/views/autofill/autofill_dialog_views.cc                                                          input.placeholder_text,
input            1947 chrome/browser/ui/views/autofill/autofill_dialog_views.cc                                                          input.IsMultiline(),
input            1949 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       textfields->insert(std::make_pair(input.type, field));
input            1953 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     if (input.length == DetailInput::NONE) {
input            1958 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     if (input.length == DetailInput::LONG)
input            1976 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     float expand = input.expand_weight;
input            1991 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     if (input.length == DetailInput::LONG ||
input            1992 chrome/browser/ui/views/autofill/autofill_dialog_views.cc         input.length == DetailInput::SHORT_EOL) {
input            2039 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       const DetailInput& input = *iter;
input            2041 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       TextfieldMap::iterator text_mapping = group->textfields.find(input.type);
input            2045 chrome/browser/ui/views/autofill/autofill_dialog_views.cc           textfield->SetText(input.initial_value);
input            2048 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       ComboboxMap::iterator combo_mapping = group->comboboxes.find(input.type);
input            2052 chrome/browser/ui/views/autofill/autofill_dialog_views.cc           SelectComboboxValueOrSetToDefault(combobox, input.initial_value);
input            2095 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     T* input,
input            2098 chrome/browser/ui/views/autofill/autofill_dialog_views.cc   input->SetInvalid(invalid);
input            2101 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     validity_map_[input] = message;
input            2103 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     validity_map_.erase(input);
input            2107 chrome/browser/ui/views/autofill/autofill_dialog_views.cc             input->GetClassName()) == input) {
input            2108 chrome/browser/ui/views/autofill/autofill_dialog_views.cc       validity_map_.erase(input);
input            2472 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     const DetailInput& input = *iter;
input            2473 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     bool editable = delegate_->InputIsEditable(input, section);
input            2475 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     TextfieldMap::iterator text_mapping = group->textfields.find(input.type);
input            2482 chrome/browser/ui/views/autofill/autofill_dialog_views.cc     ComboboxMap::iterator combo_mapping = group->comboboxes.find(input.type);
input             528 chrome/browser/ui/views/autofill/autofill_dialog_views.h   void SetValidityForInput(T* input, const base::string16& message);
input             703 chrome/browser/ui/views/omnibox/omnibox_view_views.cc void OmniboxViewViews::SetGrayTextAutocompletion(const base::string16& input) {
input             705 chrome/browser/ui/views/omnibox/omnibox_view_views.cc   location_bar_view_->SetGrayTextAutocompletion(input);
input             116 chrome/browser/ui/views/omnibox/omnibox_view_views.h   virtual void SetGrayTextAutocompletion(const base::string16& input) OVERRIDE;
input              57 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc bool ExtractsAppIdFromInput(const std::string& input,
input              59 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   if (extensions::Extension::IdIsValid(input)) {
input              60 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     *app_id = input;
input              64 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   GURL webstore_url = GURL(input);
input             275 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   std::string input;
input             276 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetString(0, &input));
input             279 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   if (!ExtractsAppIdFromInput(input, &app_id)) {
input             280 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     OnKioskAppDataLoadFailure(input);
input              83 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   const base::string16& host = controller_->input().text().substr(
input              84 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc       controller_->input().parts().host.begin,
input              85 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc       controller_->input().parts().host.len);
input             177 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc void OmniboxUIHandler::StartOmniboxQuery(const base::ListValue* input) {
input             178 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   DCHECK_EQ(5u, input->GetSize());
input             180 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   bool return_val = input->GetString(0, &input_string);
input             183 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   return_val = input->GetInteger(1, &cursor_position);
input             186 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   return_val = input->GetBoolean(2, &prevent_inline_autocomplete);
input             189 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   return_val = input->GetBoolean(3, &prefer_keyword);
input             192 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.cc   return_val = input->GetInteger(4, &current_page_classification);
input              60 chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h   void StartOmniboxQuery(const base::ListValue* input);
input              48 chrome/browser/ui/webui/options/home_page_overlay_handler.cc   base::string16 input;
input              50 chrome/browser/ui/webui/options/home_page_overlay_handler.cc   CHECK(args->GetString(0, &input));
input              53 chrome/browser/ui/webui/options/home_page_overlay_handler.cc       input, base::string16::npos, base::string16(), GURL(),
input             227 chrome/browser/ui/webui/options/startup_pages_handler.cc   base::string16 input;
input             229 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetString(0, &input));
input             232 chrome/browser/ui/webui/options/startup_pages_handler.cc       input, base::string16::npos, base::string16(), GURL(),
input              68 chrome/common/extensions/api/extension_api_unittest.cc     std::string input;
input              83 chrome/common/extensions/api/extension_api_unittest.cc     ExtensionAPI::SplitDependencyName(test_data[i].input, &feature_type,
input             656 chrome/common/extensions/api/extension_api_unittest.cc     std::string input;
input             675 chrome/common/extensions/api/extension_api_unittest.cc     std::string api_name = api->GetAPINameFromFullName(test_data[i].input,
input             677 chrome/common/extensions/api/extension_api_unittest.cc     EXPECT_EQ(test_data[i].api_name, api_name) << test_data[i].input;
input             678 chrome/common/extensions/api/extension_api_unittest.cc     EXPECT_EQ(test_data[i].child_name, child_name) << test_data[i].input;
input             123 chrome/common/extensions/command_unittest.cc     scoped_ptr<base::DictionaryValue> input(new base::DictionaryValue);
input             124 chrome/common/extensions/command_unittest.cc     input->SetString("suggested_key", kTests[i].key);
input             125 chrome/common/extensions/command_unittest.cc     input->SetString("description", kTests[i].description);
input             135 chrome/common/extensions/command_unittest.cc         command.Parse(input.get(), kTests[i].command_name, i, &error);
input             147 chrome/common/extensions/command_unittest.cc       input.reset(new base::DictionaryValue);
input             152 chrome/common/extensions/command_unittest.cc       input->Set("suggested_key", key_dict);
input             153 chrome/common/extensions/command_unittest.cc       input->SetString("description", kTests[i].description);
input             155 chrome/common/extensions/command_unittest.cc       result = command.Parse(input.get(), kTests[i].command_name, i, &error);
input             174 chrome/common/extensions/command_unittest.cc   scoped_ptr<base::DictionaryValue> input(new base::DictionaryValue);
input             181 chrome/common/extensions/command_unittest.cc   input->Set("suggested_key", key_dict);
input             182 chrome/common/extensions/command_unittest.cc   input->SetString("description", description);
input             186 chrome/common/extensions/command_unittest.cc   EXPECT_TRUE(command.Parse(input.get(), command_name, 0, &error));
input             211 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input             220 chrome/common/extensions/command_unittest.cc   EXPECT_TRUE(command.Parse(input.get(), command_name, 0, &error));
input             226 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input             230 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input             233 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input             243 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input             248 chrome/common/extensions/command_unittest.cc   EXPECT_FALSE(command.Parse(input.get(), command_name, 0, &error));
input              86 chrome/common/extensions/docs/examples/apps/hello-java/HelloLicenseServlet.java         BufferedReader input =
input              89 chrome/common/extensions/docs/examples/apps/hello-java/HelloLicenseServlet.java         for (String line; (line = input.readLine()) != null; file += line);
input              90 chrome/common/extensions/docs/examples/apps/hello-java/HelloLicenseServlet.java         input.close();
input             729 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php   public static function urlencode_rfc3986($input) {
input             730 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php   if (is_array($input)) {
input             731 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php     return array_map(array('OAuthUtil', 'urlencode_rfc3986'), $input);
input             732 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php   } else if (is_scalar($input)) {
input             736 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php       str_replace('%7E', '~', rawurlencode($input))
input             818 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php   public static function parse_parameters( $input ) {
input             819 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php     if (!isset($input) || !$input) return array();
input             821 chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/OAuth.php     $pairs = explode('&', $input);
input              77 chrome/common/net/url_fixer_upper.cc base::TrimPositions TrimWhitespaceUTF8(const std::string& input,
input              83 chrome/common/net/url_fixer_upper.cc   DCHECK(IsStringUTF8(input));
input              84 chrome/common/net/url_fixer_upper.cc   base::string16 input16 = base::UTF8ToUTF16(input);
input              33 chrome/common/net/url_fixer_upper_unittest.cc   const std::string input;
input             206 chrome/common/net/url_fixer_upper_unittest.cc     result = URLFixerUpper::SegmentURL(value.input, &parts);
input             249 chrome/common/net/url_fixer_upper_unittest.cc   const std::string input;
input             331 chrome/common/net/url_fixer_upper_unittest.cc     EXPECT_EQ(value.output, URLFixerUpper::FixupURL(value.input,
input             333 chrome/common/net/url_fixer_upper_unittest.cc         << "input: " << value.input;
input             359 chrome/common/net/url_fixer_upper_unittest.cc     EXPECT_EQ(value.output, URLFixerUpper::FixupURL(value.input,
input             458 chrome/common/net/url_fixer_upper_unittest.cc     EXPECT_EQ(file_cases[i].output, URLFixerUpper::FixupURL(file_cases[i].input,
input             477 chrome/common/net/url_fixer_upper_unittest.cc     base::FilePath input = base::FilePath::FromUTF8Unsafe(value.input);
input             479 chrome/common/net/url_fixer_upper_unittest.cc         URLFixerUpper::FixupRelativeFile(dir, input).possibly_invalid_spec());
input              18 chrome/common/net/x509_certificate_model.cc std::string ProcessIDN(const std::string& input) {
input              21 chrome/common/net/x509_certificate_model.cc   input16.reserve(input.length());
input              22 chrome/common/net/x509_certificate_model.cc   input16.insert(input16.end(), input.begin(), input.end());
input              24 chrome/common/net/x509_certificate_model.cc   base::string16 output16 = net::IDNToUnicode(input, std::string());
input              26 chrome/common/net/x509_certificate_model.cc     return input;  // Input did not contain any encoded data.
input             105 chrome/common/net/x509_certificate_model.h std::string ProcessIDN(const std::string& input);
input              42 chrome/installer/test/resource_updater.cc   base::MemoryMappedFile input;
input              44 chrome/installer/test/resource_updater.cc   if (input.Initialize(input_file)) {
input              46 chrome/installer/test/resource_updater.cc                        const_cast<uint8*>(input.data()), input.length())
input              60 chrome/installer/util/auto_launch_util.cc   std::string input(path.AsUTF8Unsafe());
input              62 chrome/installer/util/auto_launch_util.cc   crypto::SHA256HashString(input, hash, sizeof(hash));
input             391 chrome/installer/util/google_update_settings_unittest.cc           const wchar_t* input = inputs[input_idx];
input             394 chrome/installer/util/google_update_settings_unittest.cc           v.set_value(input);
input             400 chrome/installer/util/google_update_settings_unittest.cc                 << ", input ap value: " << input;
input             406 chrome/installer/util/google_update_settings_unittest.cc                 << ", input ap value: " << input;
input             411 chrome/installer/util/google_update_settings_unittest.cc               << ", input ap value: " << input;
input              88 chrome/renderer/spellchecker/spellcheck_unittest.cc       const base::string16& input,
input              91 chrome/renderer/spellchecker/spellcheck_unittest.cc     spell_check()->SpellCheckParagraph(input,
input             164 chrome/renderer/spellchecker/spellcheck_unittest.cc     const wchar_t* input;
input             385 chrome/renderer/spellchecker/spellcheck_unittest.cc     if (kTestCases[i].input != NULL) {
input             386 chrome/renderer/spellchecker/spellcheck_unittest.cc       input_length = wcslen(kTestCases[i].input);
input             391 chrome/renderer/spellchecker/spellcheck_unittest.cc         base::WideToUTF16(kTestCases[i].input).c_str(),
input             406 chrome/renderer/spellchecker/spellcheck_unittest.cc     const wchar_t* input;
input             436 chrome/renderer/spellchecker/spellcheck_unittest.cc     if (kTestCases[i].input != NULL) {
input             437 chrome/renderer/spellchecker/spellcheck_unittest.cc       input_length = wcslen(kTestCases[i].input);
input             442 chrome/renderer/spellchecker/spellcheck_unittest.cc         base::WideToUTF16(kTestCases[i].input).c_str(),
input             478 chrome/renderer/spellchecker/spellcheck_unittest.cc     const wchar_t* input;
input             815 chrome/renderer/spellchecker/spellcheck_unittest.cc     if (kTestCases[i].input != NULL)
input             816 chrome/renderer/spellchecker/spellcheck_unittest.cc       input_length = wcslen(kTestCases[i].input);
input             821 chrome/renderer/spellchecker/spellcheck_unittest.cc         base::WideToUTF16(kTestCases[i].input).c_str(),
input             829 chrome/renderer/spellchecker/spellcheck_unittest.cc         << std::wstring(kTestCases[i].input).substr(
input             842 chrome/renderer/spellchecker/spellcheck_unittest.cc     const char* input;
input             858 chrome/renderer/spellchecker/spellcheck_unittest.cc     base::string16 misspelled_word(base::UTF8ToUTF16(kTestCases[i].input));
input             874 chrome/renderer/spellchecker/spellcheck_unittest.cc     const wchar_t* input;
input             902 chrome/renderer/spellchecker/spellcheck_unittest.cc     base::string16 word(base::WideToUTF16(kTestCases[i].input));
input            1177 chrome/renderer/spellchecker/spellcheck_unittest.cc     const char* input;
input            1208 chrome/renderer/spellchecker/spellcheck_unittest.cc       if (kTestCases[i].input != NULL)
input            1209 chrome/renderer/spellchecker/spellcheck_unittest.cc         input_length = strlen(kTestCases[i].input);
input            1214 chrome/renderer/spellchecker/spellcheck_unittest.cc           base::ASCIIToUTF16(kTestCases[i].input).c_str(),
input            1220 chrome/renderer/spellchecker/spellcheck_unittest.cc       EXPECT_EQ(kTestCases[i].should_pass, result) << kTestCases[i].input <<
input            1229 chrome/renderer/spellchecker/spellcheck_unittest.cc     const char* input;
input            1273 chrome/renderer/spellchecker/spellcheck_unittest.cc     if (kTestCases[i].input != NULL)
input            1274 chrome/renderer/spellchecker/spellcheck_unittest.cc       input_length = strlen(kTestCases[i].input);
input            1276 chrome/renderer/spellchecker/spellcheck_unittest.cc         base::ASCIIToUTF16(kTestCases[i].input).c_str(),
input            1283 chrome/renderer/spellchecker/spellcheck_unittest.cc     EXPECT_FALSE(result) << kTestCases[i].input
input             418 chrome/renderer/spellchecker/spellcheck_worditerator.cc   icu::UnicodeString input(FALSE, &text_[input_start], input_length);
input             421 chrome/renderer/spellchecker/spellcheck_worditerator.cc   icu::Normalizer::normalize(input, UNORM_NFKC, 0, output, status);
input             122 chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc     base::string16 input(base::WideToUTF16(kTestText));
input             126 chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc     EXPECT_TRUE(iterator.SetText(input.c_str(), input.length()));
input             152 chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc   base::string16 input(base::WideToUTF16(kTestText));
input             156 chrome/renderer/spellchecker/spellcheck_worditerator_unittest.cc   EXPECT_TRUE(iterator.SetText(input.c_str(), input.length()));
input              13 chrome/renderer/web_apps_unittest.cc     const char* input;
input              47 chrome/renderer/web_apps_unittest.cc         base::ASCIIToUTF16(data[i].input), &sizes, &is_any);
input             403 chrome/test/base/ui_test_utils.cc                             const std::string& input) {
input             406 chrome/test/base/ui_test_utils.cc   omnibox->SetUserText(base::ASCIIToUTF16(input));
input             158 chrome/test/base/ui_test_utils.h                             const std::string& input);
input             457 chrome/test/chromedriver/chrome_launcher.cc std::string GenerateExtensionId(const std::string& input) {
input             459 chrome/test/chromedriver/chrome_launcher.cc   crypto::SHA256HashString(input, hash, sizeof(hash));
input             412 chrome/test/remoting/remote_desktop_browsertest.cc void RemoteDesktopBrowserTest::SimulateStringInput(const std::string& input) {
input             413 chrome/test/remoting/remote_desktop_browsertest.cc   for (size_t i = 0; i < input.length(); ++i)
input             414 chrome/test/remoting/remote_desktop_browsertest.cc     SimulateCharInput(input[i]);
input             111 chrome/test/remoting/remote_desktop_browsertest.h   void SimulateStringInput(const std::string& input);
input              21 chrome/tools/profile_reset/jtl_compiler_unittest.cc std::string GetHash(const std::string& input) {
input              22 chrome/tools/profile_reset/jtl_compiler_unittest.cc   return jtl_foundation::Hasher(kTestHashSeed).GetHash(input);
input              39 chromeos/network/network_event_log_unittest.cc   std::string SkipTime(const std::string& input) {
input              42 chromeos/network/network_event_log_unittest.cc     base::SplitString(input, '\n', &lines);
input              53 chromeos/network/network_event_log_unittest.cc   size_t CountLines(const std::string& input) {
input              54 chromeos/network/network_event_log_unittest.cc     return std::count(input.begin(), input.end(), '\n');
input              42 components/autofill/content/renderer/page_click_tracker.cc   const WebInputElement* input = blink::toWebInputElement(&element);
input              43 components/autofill/content/renderer/page_click_tracker.cc   if (!autofill::IsTextInput(input))
input              45 components/autofill/content/renderer/page_click_tracker.cc   return *input;
input             350 components/autofill/content/renderer/password_autofill_agent.cc   blink::WebInputElement input;
input             352 components/autofill/content/renderer/password_autofill_agent.cc   if (!FindLoginInfo(node, &input, &password))
input             357 components/autofill/content/renderer/password_autofill_agent.cc   input.setValue(username, true);
input             358 components/autofill/content/renderer/password_autofill_agent.cc   return FillUserNameAndPassword(&input, &password.password_field,
input             366 components/autofill/content/renderer/password_autofill_agent.cc   blink::WebInputElement input;
input             368 components/autofill/content/renderer/password_autofill_agent.cc   return FindLoginInfo(node, &input, &password);
input             647 components/autofill/content/renderer/password_autofill_agent.cc     const base::string16& input,
input             650 components/autofill/content/renderer/password_autofill_agent.cc   if (StartsWith(fill_data.basic_data.fields[0].value, input, false)) {
input             658 components/autofill/content/renderer/password_autofill_agent.cc     if (StartsWith(iter->first, input, false)) {
input             668 components/autofill/content/renderer/password_autofill_agent.cc       if (StartsWith(iter->second[i], input, false)) {
input             894 components/autofill/content/renderer/password_autofill_agent.cc   blink::WebInputElement input = element.to<blink::WebInputElement>();
input             895 components/autofill/content/renderer/password_autofill_agent.cc   LoginToPasswordInfoMap::iterator iter = login_to_password_info_.find(input);
input             899 components/autofill/content/renderer/password_autofill_agent.cc   *found_input = input;
input             133 components/autofill/content/renderer/password_autofill_agent.h                       const base::string16& input,
input             143 components/autofill/core/browser/autofill_merge_unittest.cc   virtual void GenerateResults(const std::string& input,
input             175 components/autofill/core/browser/autofill_merge_unittest.cc void AutofillMergeTest::GenerateResults(const std::string& input,
input             177 components/autofill/core/browser/autofill_merge_unittest.cc   MergeProfiles(input, output);
input              71 components/autofill/core/browser/autofill_regexes.cc bool MatchesPattern(const base::string16& input,
input              75 components/autofill/core/browser/autofill_regexes.cc   icu::UnicodeString icu_input(input.data(), input.length());
input              15 components/autofill/core/browser/autofill_regexes.h bool MatchesPattern(const base::string16& input,
input              18 components/autofill/core/browser/autofill_regexes_unittest.cc     const char* const input;
input              39 components/autofill/core/browser/autofill_regexes_unittest.cc     SCOPED_TRACE(test_case.input);
input              41 components/autofill/core/browser/autofill_regexes_unittest.cc     EXPECT_TRUE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
input              59 components/autofill/core/browser/autofill_regexes_unittest.cc     SCOPED_TRACE(test_case.input);
input              61 components/autofill/core/browser/autofill_regexes_unittest.cc     EXPECT_FALSE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
input              50 components/autofill/core/browser/data_driven_test.cc     std::string input;
input              51 components/autofill/core/browser/data_driven_test.cc     ASSERT_TRUE(ReadFile(input_file, &input));
input              54 components/autofill/core/browser/data_driven_test.cc     GenerateResults(input, &output);
input              35 components/autofill/core/browser/data_driven_test.h   virtual void GenerateResults(const std::string& input,
input             295 components/autofill/core/browser/form_structure.cc std::string StripDigitsIfRequired(const base::string16& input) {
input             303 components/autofill/core/browser/form_structure.cc   icu::UnicodeString icu_input(input.data(), input.length());
input             314 components/autofill/core/browser/form_structure.cc     DVLOG(1) << "Couldn't strip digits in " << base::UTF16ToUTF8(input);
input             315 components/autofill/core/browser/form_structure.cc     return base::UTF16ToUTF8(input);
input              51 components/autofill/core/browser/phone_number_i18n_unittest.cc     std::string input;
input             116 components/autofill/core/browser/phone_number_i18n_unittest.cc     SCOPED_TRACE("Testing phone number " + test_cases[i].input);
input             122 components/autofill/core/browser/phone_number_i18n_unittest.cc               ParsePhoneNumber(ASCIIToUTF16(test_cases[i].input),
input              16 components/metrics/metrics_hashes_unittest.cc     std::string input;
input              25 components/metrics/metrics_hashes_unittest.cc     uint64 hash = HashMetricName(cases[i].input);
input              78 components/nacl/loader/nacl_ipc_adapter_unittest.cc   IPC::Message input(routing_id, type, IPC::Message::PRIORITY_NORMAL);
input              79 components/nacl/loader/nacl_ipc_adapter_unittest.cc   uint32 flags = input.flags();
input              82 components/nacl/loader/nacl_ipc_adapter_unittest.cc   input.WriteInt(value);
input              83 components/nacl/loader/nacl_ipc_adapter_unittest.cc   adapter_->OnMessageReceived(input);
input             119 components/os_crypt/ie7_password_win.cc   DATA_BLOB input = {0};
input             123 components/os_crypt/ie7_password_win.cc   input.pbData = const_cast<unsigned char*>(&data.front());
input             124 components/os_crypt/ie7_password_win.cc   input.cbData = static_cast<DWORD>((data.size()) *
input             132 components/os_crypt/ie7_password_win.cc   if (CryptUnprotectData(&input, NULL, &url_key, NULL, NULL,
input              31 components/os_crypt/os_crypt_win.cc   DATA_BLOB input;
input              32 components/os_crypt/os_crypt_win.cc   input.pbData = const_cast<BYTE*>(
input              34 components/os_crypt/os_crypt_win.cc   input.cbData = static_cast<DWORD>(plaintext.length());
input              37 components/os_crypt/os_crypt_win.cc   BOOL result = CryptProtectData(&input, L"", NULL, NULL, NULL,
input              52 components/os_crypt/os_crypt_win.cc   DATA_BLOB input;
input              53 components/os_crypt/os_crypt_win.cc   input.pbData = const_cast<BYTE*>(
input              55 components/os_crypt/os_crypt_win.cc   input.cbData = static_cast<DWORD>(ciphertext.length());
input              58 components/os_crypt/os_crypt_win.cc   BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL,
input             123 components/policy/core/browser/configuration_policy_handler.cc bool IntRangePolicyHandlerBase::EnsureInRange(const base::Value* input,
input             126 components/policy/core/browser/configuration_policy_handler.cc   if (!input)
input             130 components/policy/core/browser/configuration_policy_handler.cc   if (!input->GetAsInteger(&value)) {
input             185 components/policy/core/browser/configuration_policy_handler.cc bool StringToIntEnumListPolicyHandler::Convert(const base::Value* input,
input             188 components/policy/core/browser/configuration_policy_handler.cc   if (!input)
input             192 components/policy/core/browser/configuration_policy_handler.cc   if (!input->GetAsList(&list_value)) {
input             125 components/policy/core/browser/configuration_policy_handler.h   bool EnsureInRange(const base::Value* input,
input             186 components/policy/core/browser/configuration_policy_handler.h   bool Convert(const base::Value* input,
input              34 components/policy/core/common/cloud/resource_cache.cc bool Base64Encode(const std::set<std::string>& input,
input              37 components/policy/core/common/cloud/resource_cache.cc   for (std::set<std::string>::const_iterator it = input.begin();
input              38 components/policy/core/common/cloud/resource_cache.cc        it != input.end(); ++it) {
input              90 components/variations/entropy_provider.cc   std::string input(entropy_source_ + trial_name);
input              92 components/variations/entropy_provider.cc   base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
input              93 components/variations/entropy_provider.cc                       input.size(),
input              68 content/browser/android/edge_effect.cc T Damp(T input, T factor) {
input              71 content/browser/android/edge_effect.cc     result = 1 - (1 - input) * (1 - input);
input              73 content/browser/android/edge_effect.cc     result = 1 - std::pow(1 - input, 2 * factor);
input             452 content/browser/byte_stream.cc     scoped_ptr<ByteStreamWriter>* input,
input             464 content/browser/byte_stream.cc   input->reset(in);
input             198 content/browser/byte_stream.h     scoped_ptr<ByteStreamWriter>* input,
input             216 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc     icu::UnicodeString input(entry_line.c_str());
input             219 content/browser/fileapi/file_system_dir_url_request_job_unittest.cc     icu::RegexMatcher match(pattern, input, 0, status);
input               9 content/browser/gamepad/gamepad_standard_mappings.cc blink::WebGamepadButton AxisToButton(float input) {
input              10 content/browser/gamepad/gamepad_standard_mappings.cc   float value = (input + 1.f) / 2.f;
input              15 content/browser/gamepad/gamepad_standard_mappings.cc blink::WebGamepadButton AxisNegativeAsButton(float input) {
input              16 content/browser/gamepad/gamepad_standard_mappings.cc   float value = (input < -0.5f) ? 1.f : 0.f;
input              21 content/browser/gamepad/gamepad_standard_mappings.cc blink::WebGamepadButton AxisPositiveAsButton(float input) {
input              22 content/browser/gamepad/gamepad_standard_mappings.cc   float value = (input > 0.5f) ? 1.f : 0.f;
input              60 content/browser/gamepad/gamepad_standard_mappings.h blink::WebGamepadButton AxisToButton(float input);
input              61 content/browser/gamepad/gamepad_standard_mappings.h blink::WebGamepadButton AxisNegativeAsButton(float input);
input              62 content/browser/gamepad/gamepad_standard_mappings.h blink::WebGamepadButton AxisPositiveAsButton(float input);
input              12 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input              14 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input              15 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[2]);
input              16 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[5]);
input              17 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonBackSelect] = input.buttons[6];
input              18 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonStart] = input.buttons[7];
input              19 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[9];
input              20 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[10];
input              21 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[7]);
input              22 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[7]);
input              23 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[6]);
input              24 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[6]);
input              25 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonMeta] = input.buttons[8];
input              26 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickX] = input.axes[3];
input              27 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickY] = input.axes[4];
input              33 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input              35 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input              36 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonPrimary] = input.buttons[2];
input              37 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonTertiary] = input.buttons[3];
input              38 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonQuaternary] = input.buttons[0];
input              39 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[6];
input              40 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[7];
input              41 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = input.buttons[4];
input              42 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = input.buttons[5];
input              43 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonBackSelect] = input.buttons[9];
input              44 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonStart] = input.buttons[8];
input              45 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[5]);
input              46 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[5]);
input              47 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[4]);
input              48 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[4]);
input              54 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input              56 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input              57 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonPrimary] = input.buttons[14];
input              58 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonSecondary] = input.buttons[13];
input              59 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonTertiary] = input.buttons[15];
input              60 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonQuaternary] = input.buttons[12];
input              61 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[10];
input              62 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[11];
input              63 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[12]);
input              64 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[13]);
input              65 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonBackSelect] = input.buttons[0];
input              66 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonStart] = input.buttons[3];
input              67 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[1];
input              68 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[2];
input              69 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisToButton(input.axes[8]);
input              70 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisToButton(input.axes[10]);
input              71 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = input.buttons[7];
input              72 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisToButton(input.axes[9]);
input              73 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonMeta] = input.buttons[16];
input              80 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input              87 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input              88 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonPrimary] = input.buttons[1];
input              89 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonSecondary] = input.buttons[2];
input              90 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonTertiary] = input.buttons[0];
input              91 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonQuaternary] = input.buttons[3];
input              92 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[4];
input              93 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[5];
input              94 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[3]);
input              95 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[4]);
input              96 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonBackSelect] = input.buttons[8];
input              97 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonStart] = input.buttons[9];
input              98 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[10];
input              99 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[11];
input             100 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[7]);
input             101 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[7]);
input             102 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[6]);
input             103 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[6]);
input             104 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonMeta] = input.buttons[12];
input             105 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kTouchpadButton] = input.buttons[13];
input             106 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickY] = input.axes[5];
input             113 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input             115 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input             116 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonPrimary] = input.buttons[2];
input             117 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonSecondary] = input.buttons[1];
input             118 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonTertiary] = input.buttons[3];
input             119 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonQuaternary] = input.buttons[0];
input             120 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[6];
input             121 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[7];
input             122 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = input.buttons[4];
input             123 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = input.buttons[5];
input             124 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[5]);
input             125 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[5]);
input             126 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[4]);
input             127 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[4]);
input             128 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickX] = input.axes[3];
input             129 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickY] = input.axes[2];
input             136 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input             138 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input             139 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[6]);
input             140 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[6]);
input             141 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[5]);
input             142 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[5]);
input             143 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisLeftStickX] = input.axes[0];
input             144 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisLeftStickY] = input.axes[1];
input             145 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickX] = input.axes[3];
input             146 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickY] = input.axes[4];
input             152 content/browser/gamepad/gamepad_standard_mappings_linux.cc     const blink::WebGamepad& input,
input             154 content/browser/gamepad/gamepad_standard_mappings_linux.cc   *mapped = input;
input             155 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[2]);
input             156 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[5]);
input             157 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonBackSelect] = input.buttons[6];
input             158 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonStart] = input.buttons[7];
input             159 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[9];
input             160 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[10];
input             161 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[7]);
input             162 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[7]);
input             163 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[6]);
input             164 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[6]);
input             165 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->buttons[kButtonMeta] = input.buttons[8];
input             166 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickX] = input.axes[3];
input             167 content/browser/gamepad/gamepad_standard_mappings_linux.cc   mapped->axes[kAxisRightStickY] = input.axes[4];
input              12 content/browser/gamepad/gamepad_standard_mappings_win.cc     const blink::WebGamepad& input,
input              14 content/browser/gamepad/gamepad_standard_mappings_win.cc   *mapped = input;
input              15 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonPrimary] = input.buttons[1];
input              16 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonSecondary] = input.buttons[2];
input              17 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonTertiary] = input.buttons[0];
input              18 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->axes[kAxisRightStickY] = input.axes[5];
input              19 content/browser/gamepad/gamepad_standard_mappings_win.cc   DpadFromAxis(mapped, input.axes[9]);
input              26 content/browser/gamepad/gamepad_standard_mappings_win.cc     const blink::WebGamepad& input,
input              28 content/browser/gamepad/gamepad_standard_mappings_win.cc   *mapped = input;
input              29 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonPrimary] = input.buttons[2];
input              30 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonSecondary] = input.buttons[1];
input              31 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonTertiary] = input.buttons[3];
input              32 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonQuaternary] = input.buttons[0];
input              33 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[1]);
input              34 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[1]);
input              35 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[0]);
input              36 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[0]);
input              50 content/browser/gamepad/gamepad_standard_mappings_win.cc     const blink::WebGamepad& input,
input              57 content/browser/gamepad/gamepad_standard_mappings_win.cc   *mapped = input;
input              58 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonPrimary] = input.buttons[1];
input              59 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonSecondary] = input.buttons[2];
input              60 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonTertiary] = input.buttons[0];
input              61 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonQuaternary] = input.buttons[3];
input              62 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[4];
input              63 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[5];
input              64 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[3]);
input              65 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[4]);
input              66 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonBackSelect] = input.buttons[8];
input              67 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonStart] = input.buttons[9];
input              68 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[10];
input              69 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[11];
input              70 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonMeta] = input.buttons[12];
input              71 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kTouchpadButton] = input.buttons[13];
input              72 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->axes[kAxisRightStickY] = input.axes[5];
input              73 content/browser/gamepad/gamepad_standard_mappings_win.cc   DpadFromAxis(mapped, input.axes[9]);
input              80 content/browser/gamepad/gamepad_standard_mappings_win.cc     const blink::WebGamepad& input,
input              82 content/browser/gamepad/gamepad_standard_mappings_win.cc   *mapped = input;
input              83 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonPrimary] = input.buttons[0];
input              84 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonSecondary] = input.buttons[1];
input              85 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonTertiary] = input.buttons[3];
input              86 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonQuaternary] = input.buttons[4];
input              87 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftShoulder] = input.buttons[6];
input              88 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightShoulder] = input.buttons[7];
input              89 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[2]);
input              90 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[5]);
input              91 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonBackSelect] = input.buttons[10];
input              92 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonStart] = input.buttons[11];
input              93 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonLeftThumbstick] = input.buttons[13];
input              94 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonRightThumbstick] = input.buttons[14];
input              95 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->buttons[kButtonMeta] = input.buttons[12];
input              96 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->axes[kAxisRightStickX] = input.axes[3];
input              97 content/browser/gamepad/gamepad_standard_mappings_win.cc   mapped->axes[kAxisRightStickY] = input.axes[4];
input              98 content/browser/gamepad/gamepad_standard_mappings_win.cc   DpadFromAxis(mapped, input.axes[9]);
input             345 content/browser/gamepad/raw_input_data_fetcher_win.cc     RAWINPUT* input,
input             362 content/browser/gamepad/raw_input_data_fetcher_win.cc                         reinterpret_cast<PCHAR>(input->data.hid.bRawData),
input             363 content/browser/gamepad/raw_input_data_fetcher_win.cc                         input->data.hid.dwSizeHid);
input             372 content/browser/gamepad/raw_input_data_fetcher_win.cc                             reinterpret_cast<PCHAR>(input->data.hid.bRawData),
input             373 content/browser/gamepad/raw_input_data_fetcher_win.cc                             input->data.hid.dwSizeHid);
input             398 content/browser/gamepad/raw_input_data_fetcher_win.cc           reinterpret_cast<PCHAR>(input->data.hid.bRawData),
input             399 content/browser/gamepad/raw_input_data_fetcher_win.cc           input->data.hid.dwSizeHid);
input             408 content/browser/gamepad/raw_input_data_fetcher_win.cc           reinterpret_cast<PCHAR>(input->data.hid.bRawData),
input             409 content/browser/gamepad/raw_input_data_fetcher_win.cc           input->data.hid.dwSizeHid);
input             431 content/browser/gamepad/raw_input_data_fetcher_win.cc   RAWINPUT* input = reinterpret_cast<RAWINPUT*>(buffer.get());
input             441 content/browser/gamepad/raw_input_data_fetcher_win.cc   if (input->header.dwType == RIM_TYPEHID && input->header.hDevice != NULL) {
input             442 content/browser/gamepad/raw_input_data_fetcher_win.cc     RawGamepadInfo* gamepad = GetGamepadInfo(input->header.hDevice);
input             444 content/browser/gamepad/raw_input_data_fetcher_win.cc       UpdateGamepad(input, gamepad);
input             447 content/browser/gamepad/raw_input_data_fetcher_win.cc   return DefRawInputProc(&input, 1, sizeof(RAWINPUTHEADER));
input              73 content/browser/gamepad/raw_input_data_fetcher_win.h   void UpdateGamepad(RAWINPUT* input, RawGamepadInfo* gamepad_info);
input             222 content/browser/media/capture/web_contents_video_capture_device.cc void RenderVideoFrame(const SkBitmap& input,
input             468 content/browser/media/capture/web_contents_video_capture_device.cc void RenderVideoFrame(const SkBitmap& input,
input             473 content/browser/media/capture/web_contents_video_capture_device.cc   SkAutoLockPixels locker(input);
input             476 content/browser/media/capture/web_contents_video_capture_device.cc   if (input.empty() ||
input             477 content/browser/media/capture/web_contents_video_capture_device.cc       !input.readyToDraw() ||
input             478 content/browser/media/capture/web_contents_video_capture_device.cc       input.config() != SkBitmap::kARGB_8888_Config ||
input             479 content/browser/media/capture/web_contents_video_capture_device.cc       input.width() < 2 || input.height() < 2) {
input             481 content/browser/media/capture/web_contents_video_capture_device.cc              << input.getSize()
input             482 content/browser/media/capture/web_contents_video_capture_device.cc              << ", ready=" << input.readyToDraw()
input             483 content/browser/media/capture/web_contents_video_capture_device.cc              << ", config=" << input.config() << ')';
input             496 content/browser/media/capture/web_contents_video_capture_device.cc       output->coded_size(), gfx::Size(input.width(), input.height()));
input             500 content/browser/media/capture/web_contents_video_capture_device.cc   if (input.width() != region_in_frame.width() ||
input             501 content/browser/media/capture/web_contents_video_capture_device.cc       input.height() != region_in_frame.height()) {
input             504 content/browser/media/capture/web_contents_video_capture_device.cc     if (input.width() < region_in_frame.width() ||
input             505 content/browser/media/capture/web_contents_video_capture_device.cc         input.height() < region_in_frame.height()) {
input             514 content/browser/media/capture/web_contents_video_capture_device.cc     scaled_bitmap = skia::ImageOperations::Resize(input, method,
input             518 content/browser/media/capture/web_contents_video_capture_device.cc     scaled_bitmap = input;
input             176 content/browser/renderer_host/media/audio_input_device_manager.cc   MediaStreamDevice::AudioDeviceParameters& input_params = out.device.input;
input            1475 content/browser/renderer_host/media/media_stream_manager.cc             device_it->device.input = info->device.input;
input            1720 content/browser/renderer_host/media/media_stream_manager.cc         device_info.device.input.sample_rate = sample_rate;
input            1721 content/browser/renderer_host/media/media_stream_manager.cc         device_info.device.input.channel_layout = media::CHANNEL_LAYOUT_STEREO;
input             438 content/browser/renderer_host/p2p/socket_host_tcp.cc int P2PSocketHostTcp::ProcessInput(char* input, int input_len) {
input             441 content/browser/renderer_host/p2p/socket_host_tcp.cc   int packet_size = base::NetToHost16(*reinterpret_cast<uint16*>(input));
input             446 content/browser/renderer_host/p2p/socket_host_tcp.cc   char* cur = input + consumed;
input             483 content/browser/renderer_host/p2p/socket_host_tcp.cc int P2PSocketHostStunTcp::ProcessInput(char* input, int input_len) {
input             489 content/browser/renderer_host/p2p/socket_host_tcp.cc       input, input_len, &pad_bytes);
input             496 content/browser/renderer_host/p2p/socket_host_tcp.cc   char* cur = input;
input              53 content/browser/renderer_host/p2p/socket_host_tcp.h   virtual int ProcessInput(char* input, int input_len) = 0;
input             110 content/browser/renderer_host/p2p/socket_host_tcp.h   virtual int ProcessInput(char* input, int input_len) OVERRIDE;
input             132 content/browser/renderer_host/p2p/socket_host_tcp.h   virtual int ProcessInput(char* input, int input_len) OVERRIDE;
input             239 content/child/npapi/plugin_host.cc     int input;
input             245 content/child/npapi/plugin_host.cc         input = INPUT_COLON;
input             248 content/child/npapi/plugin_host.cc         input = INPUT_NEWLINE;
input             251 content/child/npapi/plugin_host.cc         input = INPUT_NULL;
input             254 content/child/npapi/plugin_host.cc         input = INPUT_OTHER;
input             258 content/child/npapi/plugin_host.cc     int newstate = statemachine[state][input];
input             146 content/child/webcrypto/shared_crypto_unittest.cc std::vector<uint8> Corrupted(const std::vector<uint8>& input) {
input             147 content/child/webcrypto/shared_crypto_unittest.cc   std::vector<uint8> corrupted_data(input);
input             853 content/child/webcrypto/shared_crypto_unittest.cc     std::vector<uint8> input(32);
input             858 content/child/webcrypto/shared_crypto_unittest.cc                           CryptoData(input),
input             863 content/child/webcrypto/shared_crypto_unittest.cc                           CryptoData(input),
input             869 content/child/webcrypto/shared_crypto_unittest.cc     std::vector<uint8> input(32);
input             874 content/child/webcrypto/shared_crypto_unittest.cc                           CryptoData(input),
input             879 content/child/webcrypto/shared_crypto_unittest.cc                           CryptoData(input),
input             891 content/child/webcrypto/shared_crypto_unittest.cc     CryptoData input(&iv[0], INT_MAX - 3);
input             894 content/child/webcrypto/shared_crypto_unittest.cc                   Encrypt(CreateAesCbcAlgorithm(iv), key, input, &output));
input             896 content/child/webcrypto/shared_crypto_unittest.cc                   Decrypt(CreateAesCbcAlgorithm(iv), key, input, &output));
input              51 content/child/webcrypto/webcrypto_util.cc bool Base64DecodeUrlSafe(const std::string& input, std::string* output) {
input              52 content/child/webcrypto/webcrypto_util.cc   std::string base64EncodedText(input);
input              61 content/child/webcrypto/webcrypto_util.cc std::string Base64EncodeUrlSafe(const base::StringPiece& input) {
input              63 content/child/webcrypto/webcrypto_util.cc   base::Base64Encode(input, &output);
input              70 content/child/webcrypto/webcrypto_util.cc std::string Base64EncodeUrlSafe(const std::vector<uint8>& input) {
input              72 content/child/webcrypto/webcrypto_util.cc       reinterpret_cast<const char*>(Uint8VectorStart(input)), input.size());
input              41 content/child/webcrypto/webcrypto_util.h CONTENT_EXPORT bool Base64DecodeUrlSafe(const std::string& input,
input              46 content/child/webcrypto/webcrypto_util.h std::string Base64EncodeUrlSafe(const base::StringPiece& input);
input              47 content/child/webcrypto/webcrypto_util.h std::string Base64EncodeUrlSafe(const std::vector<uint8>& input);
input              29 content/common/common_param_traits_unittest.cc     GURL input(serialize_cases[i]);
input              31 content/common/common_param_traits_unittest.cc     IPC::ParamTraits<GURL>::Write(&msg, input);
input              39 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.possibly_invalid_spec(), output.possibly_invalid_spec());
input              40 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.is_valid(), output.is_valid());
input              41 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.scheme(), output.scheme());
input              42 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.username(), output.username());
input              43 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.password(), output.password());
input              44 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.host(), output.host());
input              45 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.port(), output.port());
input              46 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.path(), output.path());
input              47 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.query(), output.query());
input              48 content/common/common_param_traits_unittest.cc     EXPECT_EQ(input.ref(), output.ref());
input              72 content/common/common_param_traits_unittest.cc   TestPair input("foo", "bar");
input              74 content/common/common_param_traits_unittest.cc   IPC::ParamTraits<TestPair>::Write(&msg, input);
input             126 content/common/common_param_traits_unittest.cc   base::ListValue input;
input             127 content/common/common_param_traits_unittest.cc   input.Set(0, new base::FundamentalValue(42.42));
input             128 content/common/common_param_traits_unittest.cc   input.Set(1, new base::StringValue("forty"));
input             129 content/common/common_param_traits_unittest.cc   input.Set(2, base::Value::CreateNullValue());
input             132 content/common/common_param_traits_unittest.cc   IPC::WriteParam(&msg, input);
input             138 content/common/common_param_traits_unittest.cc   EXPECT_TRUE(input.Equals(&output));
input             148 content/common/common_param_traits_unittest.cc   base::DictionaryValue input;
input             149 content/common/common_param_traits_unittest.cc   input.Set("null", base::Value::CreateNullValue());
input             150 content/common/common_param_traits_unittest.cc   input.Set("bool", new base::FundamentalValue(true));
input             151 content/common/common_param_traits_unittest.cc   input.Set("int", new base::FundamentalValue(42));
input             163 content/common/common_param_traits_unittest.cc   input.Set("dict", subdict.release());
input             166 content/common/common_param_traits_unittest.cc   IPC::WriteParam(&msg, input);
input             172 content/common/common_param_traits_unittest.cc   EXPECT_TRUE(input.Equals(&output));
input             183 content/common/common_param_traits_unittest.cc   net::HostPortPair input("host.com", 12345);
input             186 content/common/common_param_traits_unittest.cc   IPC::ParamTraits<net::HostPortPair>::Write(&msg, input);
input             191 content/common/common_param_traits_unittest.cc   EXPECT_EQ(input.host(), output.host());
input             192 content/common/common_param_traits_unittest.cc   EXPECT_EQ(input.port(), output.port());
input             147 content/common/gpu/client/gl_helper_benchmark.cc         SkBitmap input;
input             148 content/common/gpu/client/gl_helper_benchmark.cc         input.setConfig(SkBitmap::kARGB_8888_Config,
input             151 content/common/gpu/client/gl_helper_benchmark.cc         input.allocPixels();
input             152 content/common/gpu/client/gl_helper_benchmark.cc         SkAutoLockPixels lock(input);
input             155 content/common/gpu/client/gl_helper_benchmark.cc         input.setConfig(SkBitmap::kARGB_8888_Config,
input             181 content/common/gpu/client/gl_helper_benchmark.cc                              input.getPixels());
input             254 content/common/gpu/client/gl_helper_benchmark.cc   SkBitmap input;
input             256 content/common/gpu/client/gl_helper_benchmark.cc       FILE_PATH_LITERAL("testimage.png")), &input);
input             260 content/common/gpu/client/gl_helper_benchmark.cc   const gfx::Size src_size(input.width(), input.height());
input             271 content/common/gpu/client/gl_helper_benchmark.cc                        input.getPixels());
input             275 content/common/gpu/client/gl_helper_benchmark.cc       const gfx::Size dst_size(input.width() * percents[p] / 100,
input             276 content/common/gpu/client/gl_helper_benchmark.cc                                input.height() * percents[p] / 100);
input             285 content/common/gpu/client/gl_helper_benchmark.cc       input.setConfig(SkBitmap::kARGB_8888_Config,
input             434 content/common/gpu/client/gl_helper_unittest.cc   void ScaleSlow(SkBitmap* input,
input             437 content/common/gpu/client/gl_helper_unittest.cc     float xscale = static_cast<float>(input->width()) / output->width();
input             438 content/common/gpu/client/gl_helper_unittest.cc     float yscale = static_cast<float>(input->height()) / output->height();
input             451 content/common/gpu/client/gl_helper_unittest.cc               for (int src_y = -10; src_y < input->height() + 10; ++src_y) {
input             457 content/common/gpu/client/gl_helper_unittest.cc                 for (int src_x = -10; src_x < input->width() + 10; ++src_x) {
input             465 content/common/gpu/client/gl_helper_unittest.cc                   float c = ChannelAsFloat(input, src_x, src_y, channel);
input             473 content/common/gpu/client/gl_helper_unittest.cc               while ((output->width() << xshift) < input->width()) {
input             476 content/common/gpu/client/gl_helper_unittest.cc               while ((output->height() << yshift) < input->height()) {
input             481 content/common/gpu/client/gl_helper_unittest.cc               if (xmag == 4 && output->width() * 3 >= input->width()) {
input             484 content/common/gpu/client/gl_helper_unittest.cc               if (ymag == 4 && output->height() * 3 >= input->height()) {
input             489 content/common/gpu/client/gl_helper_unittest.cc                   value += Bilinear(input,
input             500 content/common/gpu/client/gl_helper_unittest.cc               value = Bilinear(input, dst_x_in_src, dst_y_in_src, channel);
input             529 content/common/gpu/client/gl_helper_unittest.cc   void ScaleSlowRecursive(SkBitmap* input,
input             534 content/common/gpu/client/gl_helper_unittest.cc       ScaleSlow(input, output, quality);
input             538 content/common/gpu/client/gl_helper_unittest.cc     float xscale = static_cast<float>(output->width()) / input->width();
input             541 content/common/gpu/client/gl_helper_unittest.cc     float yscale = static_cast<float>(output->height()) / input->height();
input             547 content/common/gpu/client/gl_helper_unittest.cc       ScaleSlow(input, output, quality);
input             553 content/common/gpu/client/gl_helper_unittest.cc     int xtmp = input->width();
input             554 content/common/gpu/client/gl_helper_unittest.cc     int ytmp = input->height();
input             556 content/common/gpu/client/gl_helper_unittest.cc     if (output->height() != input->height()) {
input             558 content/common/gpu/client/gl_helper_unittest.cc       while (ytmp < input->height() && ytmp * 2 != input->height()) {
input             563 content/common/gpu/client/gl_helper_unittest.cc       while (xtmp < input->width() && xtmp * 2 != input->width()) {
input             573 content/common/gpu/client/gl_helper_unittest.cc     ScaleSlowRecursive(input, &tmp, quality);
input             280 content/common/gpu/media/android_video_encode_accelerator.cc   const PendingFrames::value_type& input = pending_frames_.front();
input             281 content/common/gpu/media/android_video_encode_accelerator.cc   bool is_key_frame = input.b;
input             289 content/common/gpu/media/android_video_encode_accelerator.cc   scoped_refptr<VideoFrame> frame = input.a;
input             325 content/common/gpu/media/android_video_encode_accelerator.cc   UMA_HISTOGRAM_TIMES("Media.AVEA.InputQueueTime", base::Time::Now() - input.c);
input            1563 content/common/gpu/media/video_decode_accelerator_unittest.cc       std::string input(it->second.begin(), it->second.end());
input            1564 content/common/gpu/media/video_decode_accelerator_unittest.cc       CHECK(base::StringToDouble(input, &content::g_rendering_fps));
input              49 content/common/media/media_stream_messages.h   IPC_STRUCT_TRAITS_MEMBER(device.input.sample_rate)
input              50 content/common/media/media_stream_messages.h   IPC_STRUCT_TRAITS_MEMBER(device.input.channel_layout)
input              51 content/common/media/media_stream_messages.h   IPC_STRUCT_TRAITS_MEMBER(device.input.frames_per_buffer)
input              52 content/common/media/media_stream_messages.h   IPC_STRUCT_TRAITS_MEMBER(device.input.effects)
input             235 content/common/page_state_serialization_unittest.cc   ExplodedPageState input;
input             238 content/common/page_state_serialization_unittest.cc   EXPECT_TRUE(EncodePageState(input, &encoded));
input             243 content/common/page_state_serialization_unittest.cc   ExpectEquality(input, output);
input             247 content/common/page_state_serialization_unittest.cc   ExplodedPageState input;
input             248 content/common/page_state_serialization_unittest.cc   PopulateFrameState(&input.top);
input             251 content/common/page_state_serialization_unittest.cc   EXPECT_TRUE(EncodePageState(input, &encoded));
input             256 content/common/page_state_serialization_unittest.cc   ExpectEquality(input, output);
input             260 content/common/page_state_serialization_unittest.cc   ExplodedPageState input;
input             261 content/common/page_state_serialization_unittest.cc   PopulateFrameState(&input.top);
input             262 content/common/page_state_serialization_unittest.cc   PopulateHttpBody(&input.top.http_body, &input.referenced_files);
input             265 content/common/page_state_serialization_unittest.cc   EXPECT_TRUE(EncodePageState(input, &encoded));
input             270 content/common/page_state_serialization_unittest.cc   ExpectEquality(input, output);
input             274 content/common/page_state_serialization_unittest.cc   ExplodedPageState input;
input             275 content/common/page_state_serialization_unittest.cc   PopulateFrameState(&input.top);
input             281 content/common/page_state_serialization_unittest.cc     input.top.children.push_back(child_state);
input             285 content/common/page_state_serialization_unittest.cc   EXPECT_TRUE(EncodePageState(input, &encoded));
input             290 content/common/page_state_serialization_unittest.cc   ExpectEquality(input, output);
input             294 content/common/page_state_serialization_unittest.cc   ExplodedPageState input;
input             295 content/common/page_state_serialization_unittest.cc   PopulateFrameState(&input.top);
input             304 content/common/page_state_serialization_unittest.cc       PopulateHttpBody(&child_state.http_body, &input.referenced_files);
input             306 content/common/page_state_serialization_unittest.cc     input.top.children.push_back(child_state);
input             310 content/common/page_state_serialization_unittest.cc   EncodePageState(input, &encoded);
input             315 content/common/page_state_serialization_unittest.cc   ExpectEquality(input, output);
input              61 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.AdapterInputConnection;
input              62 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.HandleView;
input              63 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.ImeAdapter;
input              64 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory;
input              65 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.InputMethodManagerWrapper;
input              66 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.InsertionHandleController;
input              67 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.SelectPopupDialog;
input              68 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.SelectPopupItem;
input              69 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java import org.chromium.content.browser.input.SelectionHandleController;
input             549 content/public/android/java/src/org/chromium/content/browser/PopupZoomer.java         public float getInterpolation(float input) {
input             550 content/public/android/java/src/org/chromium/content/browser/PopupZoomer.java             input = 1.0f - input;
input             551 content/public/android/java/src/org/chromium/content/browser/PopupZoomer.java             if (mInterpolator == null) return input;
input             552 content/public/android/java/src/org/chromium/content/browser/PopupZoomer.java             return mInterpolator.getInterpolation(input);
input               5 content/public/android/java/src/org/chromium/content/browser/input/AdapterInputConnection.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/CursorController.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/DateDialogNormalizer.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/DateTimeChooserAndroid.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/DateTimePickerDialog.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestion.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestionListAdapter.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/HandleView.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/ImeAdapter.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/InputDialogContainer.java package org.chromium.content.browser.input;
input              21 content/public/android/java/src/org/chromium/content/browser/input/InputDialogContainer.java import org.chromium.content.browser.input.DateTimePickerDialog.OnDateTimeSetListener;
input              22 content/public/android/java/src/org/chromium/content/browser/input/InputDialogContainer.java import org.chromium.content.browser.input.MultiFieldTimePickerDialog.OnMultiFieldTimeSetListener;
input               5 content/public/android/java/src/org/chromium/content/browser/input/InputMethodManagerWrapper.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/InsertionHandleController.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/MonthPicker.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/MonthPickerDialog.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/MultiFieldTimePickerDialog.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/SelectPopupAdapter.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/SelectPopupDialog.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/SelectPopupItem.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/SelectionHandleController.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/TwoFieldDatePicker.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/TwoFieldDatePickerDialog.java package org.chromium.content.browser.input;
input              14 content/public/android/java/src/org/chromium/content/browser/input/TwoFieldDatePickerDialog.java import org.chromium.content.browser.input.TwoFieldDatePicker.OnMonthOrWeekChangedListener;
input               5 content/public/android/java/src/org/chromium/content/browser/input/WeekPicker.java package org.chromium.content.browser.input;
input               5 content/public/android/java/src/org/chromium/content/browser/input/WeekPickerDialog.java package org.chromium.content.browser.input;
input              17 content/public/android/javatests/src/org/chromium/content/browser/ClipboardTest.java import org.chromium.content.browser.input.ImeAdapter;
input              15 content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreFocusTest.java import org.chromium.content.browser.input.InputMethodManagerWrapper;
input              11 content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java import org.chromium.content.browser.input.AdapterInputConnection;
input              12 content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java import org.chromium.content.browser.input.ImeAdapter;
input              13 content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java import org.chromium.content.browser.input.InputMethodManagerWrapper;
input             214 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java     private byte[] sameOutputDifferentCiphers(byte[] input, Cipher aCipher, Cipher bCipher)
input             220 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java         byte[] aOutput = aCipher.doFinal(input);
input             221 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java         byte[] bOutput = bCipher.doFinal(input);
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java package org.chromium.content.browser.input;
input              16 content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java import org.chromium.content.browser.input.AdapterInputConnection.ImeState;
input              17 content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java import org.chromium.content.browser.input.ImeAdapter.ImeAdapterDelegate;
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java package org.chromium.content.browser.input;
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/InputDialogContainerTest.java package org.chromium.content.browser.input;
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/InsertionHandleTest.java package org.chromium.content.browser.input;
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/SelectPopupTest.java package org.chromium.content.browser.input;
input               5 content/public/android/javatests/src/org/chromium/content/browser/input/SelectionHandleTest.java package org.chromium.content.browser.input;
input              62 content/public/common/media_stream_request.cc   const AudioDeviceParameters& input_second = second.input;
input              66 content/public/common/media_stream_request.cc       input.sample_rate == input_second.sample_rate &&
input              67 content/public/common/media_stream_request.cc       input.channel_layout == input_second.channel_layout;
input             158 content/public/common/media_stream_request.h   AudioDeviceParameters input;
input              22 content/public/common/page_state.cc void ToFilePathVector(const std::vector<base::NullableString16>& input,
input              25 content/public/common/page_state.cc   output->reserve(input.size());
input              26 content/public/common/page_state.cc   for (size_t i = 0; i < input.size(); ++i)
input              27 content/public/common/page_state.cc     output->push_back(ToFilePath(input[i]));
input              25 content/public/renderer/history_item_serialization.cc void ToNullableString16Vector(const WebVector<WebString>& input,
input              27 content/public/renderer/history_item_serialization.cc   output->reserve(input.size());
input              28 content/public/renderer/history_item_serialization.cc   for (size_t i = 0; i < input.size(); ++i)
input              29 content/public/renderer/history_item_serialization.cc     output->push_back(input[i]);
input              32 content/public/renderer/history_item_serialization.cc void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input,
input              34 content/public/renderer/history_item_serialization.cc   switch (input.type) {
input              36 content/public/renderer/history_item_serialization.cc       output->data.assign(input.data.data(), input.data.size());
input              39 content/public/renderer/history_item_serialization.cc       output->file_path = input.filePath;
input              40 content/public/renderer/history_item_serialization.cc       output->file_start = input.fileStart;
input              41 content/public/renderer/history_item_serialization.cc       output->file_length = input.fileLength;
input              42 content/public/renderer/history_item_serialization.cc       output->file_modification_time = input.modificationTime;
input              45 content/public/renderer/history_item_serialization.cc       output->filesystem_url = input.fileSystemURL;
input              46 content/public/renderer/history_item_serialization.cc       output->file_start = input.fileStart;
input              47 content/public/renderer/history_item_serialization.cc       output->file_length = input.fileLength;
input              48 content/public/renderer/history_item_serialization.cc       output->file_modification_time = input.modificationTime;
input              51 content/public/renderer/history_item_serialization.cc       output->blob_uuid = input.blobUUID.utf8();
input              14 content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestInputMethodManagerWrapper.java import org.chromium.content.browser.input.InputMethodManagerWrapper;
input              52 content/renderer/android/email_detector.cc   icu::UnicodeString input(utf16_input.data(), utf16_input.length());
input              56 content/renderer/android/email_detector.cc                             input,
input             752 content/renderer/browser_plugin/browser_plugin.cc   std::string input = GetPartitionAttribute();
input             758 content/renderer/browser_plugin/browser_plugin.cc   if (StartsWithASCII(input, browser_plugin::kPersistPrefix, true)) {
input             759 content/renderer/browser_plugin/browser_plugin.cc     size_t index = input.find(":");
input             762 content/renderer/browser_plugin/browser_plugin.cc     input = input.substr(index + 1);
input             763 content/renderer/browser_plugin/browser_plugin.cc     if (input.empty()) {
input             774 content/renderer/browser_plugin/browser_plugin.cc   storage_partition_id_ = input;
input             136 content/renderer/media/audio_renderer_mixer_manager_unittest.cc   scoped_refptr<media::AudioRendererMixerInput> input(
input             146 content/renderer/media/audio_renderer_mixer_manager_unittest.cc   input->Initialize(params, &callback);
input             153 content/renderer/media/audio_renderer_mixer_manager_unittest.cc   input = NULL;
input             205 content/renderer/media/media_stream_dependency_factory.cc                                  &device_info.device.input.effects);
input             145 content/renderer/media/webrtc_audio_capturer.cc       device_info_.device.input.channel_layout,
input             146 content/renderer/media/webrtc_audio_capturer.cc       device_info_.device.input.sample_rate,
input             147 content/renderer/media/webrtc_audio_capturer.cc       device_info_.device.input.frames_per_buffer,
input             151 content/renderer/media/webrtc_audio_capturer.cc       device_info_.device.input.effects));
input             160 content/renderer/media/webrtc_audio_capturer.cc       device_info_.device.input.channel_layout);
input             174 content/renderer/media/webrtc_audio_capturer.cc            << device_info_.device.input.sample_rate;
input             176 content/renderer/media/webrtc_audio_capturer.cc   if (media::ToAudioSampleRate(device_info_.device.input.sample_rate, &asr)) {
input             181 content/renderer/media/webrtc_audio_capturer.cc                          device_info_.device.input.sample_rate);
input             188 content/renderer/media/webrtc_audio_capturer.cc                 device_info_.device.input.sample_rate) ==
input             190 content/renderer/media/webrtc_audio_capturer.cc     DLOG(ERROR) << device_info_.device.input.sample_rate
input             198 content/renderer/media/webrtc_audio_capturer.cc                     static_cast<float>(device_info_.device.input.sample_rate));
input             216 content/renderer/media/webrtc_audio_capturer.cc               constraints, device_info.device.input.effects,
input             306 content/renderer/media/webrtc_audio_capturer.cc                                 device_info_.device.input.effects);
input             314 content/renderer/media/webrtc_audio_capturer.cc         constraints_, device_info_.device.input.effects);
input             553 content/renderer/media/webrtc_audio_capturer.cc   int hardware_buffer_size = device_info_.device.input.frames_per_buffer;
input              84 content/renderer/pepper/pepper_graphics_2d_host.cc void ConvertBetweenBGRAandRGBA(const uint32_t* input,
input              89 content/renderer/pepper/pepper_graphics_2d_host.cc         reinterpret_cast<const unsigned char*>(&input[i]);
input             152 content/renderer/savable_resources.cc     const WebInputElement input = element.toConst<WebInputElement>();
input             153 content/renderer/savable_resources.cc     if (input.isImageButton()) {
input              64 content/zygote/zygote_main_linux.cc static void ProxyLocaltimeCallToBrowser(time_t input, struct tm* output,
input              70 content/zygote/zygote_main_linux.cc       std::string(reinterpret_cast<char*>(&input), sizeof(input)));
input             313 crypto/curve25519-donna.c fexpand(limb *output, const u8 *input) {
input             315 crypto/curve25519-donna.c   output[n] = ((((limb) input[start + 0]) | \
input             316 crypto/curve25519-donna.c                 ((limb) input[start + 1]) << 8 | \
input             317 crypto/curve25519-donna.c                 ((limb) input[start + 2]) << 16 | \
input             318 crypto/curve25519-donna.c                 ((limb) input[start + 3]) << 24) >> shift) & mask;
input             336 crypto/curve25519-donna.c fcontract(u8 *output, limb *input) {
input             342 crypto/curve25519-donna.c         while (input[i] < 0) {
input             343 crypto/curve25519-donna.c           input[i] += 0x2000000;
input             344 crypto/curve25519-donna.c           input[i + 1]--;
input             347 crypto/curve25519-donna.c         while (input[i] < 0) {
input             348 crypto/curve25519-donna.c           input[i] += 0x4000000;
input             349 crypto/curve25519-donna.c           input[i + 1]--;
input             353 crypto/curve25519-donna.c     while (input[9] < 0) {
input             354 crypto/curve25519-donna.c       input[9] += 0x2000000;
input             355 crypto/curve25519-donna.c       input[0] -= 19;
input             357 crypto/curve25519-donna.c   } while (input[0] < 0);
input             359 crypto/curve25519-donna.c   input[1] <<= 2;
input             360 crypto/curve25519-donna.c   input[2] <<= 3;
input             361 crypto/curve25519-donna.c   input[3] <<= 5;
input             362 crypto/curve25519-donna.c   input[4] <<= 6;
input             363 crypto/curve25519-donna.c   input[6] <<= 1;
input             364 crypto/curve25519-donna.c   input[7] <<= 3;
input             365 crypto/curve25519-donna.c   input[8] <<= 4;
input             366 crypto/curve25519-donna.c   input[9] <<= 6;
input             368 crypto/curve25519-donna.c   output[s+0] |=  input[i] & 0xff; \
input             369 crypto/curve25519-donna.c   output[s+1]  = (input[i] >> 8) & 0xff; \
input             370 crypto/curve25519-donna.c   output[s+2]  = (input[i] >> 16) & 0xff; \
input             371 crypto/curve25519-donna.c   output[s+3]  = (input[i] >> 24) & 0xff;
input              25 crypto/ec_signature_creator_nss.cc                    SECItem* input,
input              38 crypto/ec_signature_creator_nss.cc       hash_type, &hash_data[0], input->data, input->len);
input             119 crypto/encryptor.h              const base::StringPiece& input,
input             122 crypto/encryptor.h                 const base::StringPiece& input,
input             127 crypto/encryptor.h              const base::StringPiece& input,
input             130 crypto/encryptor.h                 const base::StringPiece& input,
input             113 crypto/encryptor_nss.cc                       const base::StringPiece& input,
input             115 crypto/encryptor_nss.cc   size_t output_len = input.size() + AES_BLOCK_SIZE;
input             116 crypto/encryptor_nss.cc   CHECK_GT(output_len, input.size());
input             122 crypto/encryptor_nss.cc   int input_len = input.size();
input             124 crypto/encryptor_nss.cc       reinterpret_cast<uint8*>(const_cast<char*>(input.data()));
input             154 crypto/encryptor_nss.cc                          const base::StringPiece& input,
input             161 crypto/encryptor_nss.cc   size_t output_len = ((input.size() + AES_BLOCK_SIZE - 1) / AES_BLOCK_SIZE) *
input             163 crypto/encryptor_nss.cc   CHECK_GE(output_len, input.size());
input             169 crypto/encryptor_nss.cc   bool ret = GenerateCounterMask(input.size(), output_data, &mask_len);
input             196 crypto/encryptor_nss.cc       reinterpret_cast<uint8*>(const_cast<char*>(input.data())),
input             197 crypto/encryptor_nss.cc       input.length(), output_data, output_data);
input             198 crypto/encryptor_nss.cc   output->resize(input.length());
input              91 crypto/encryptor_openssl.cc                       const base::StringPiece& input,
input             114 crypto/encryptor_openssl.cc   const size_t output_size = input.size() + (do_encrypt ? iv_.size() : 0);
input             116 crypto/encryptor_openssl.cc   CHECK_GT(output_size + 1, input.size());
input             121 crypto/encryptor_openssl.cc                         reinterpret_cast<const uint8*>(input.data()),
input             122 crypto/encryptor_openssl.cc                         input.length()))
input             140 crypto/encryptor_openssl.cc                          const base::StringPiece& input,
input             153 crypto/encryptor_openssl.cc   const size_t out_size = input.size();
input             155 crypto/encryptor_openssl.cc   CHECK_GT(out_size + 1, input.size());
input             166 crypto/encryptor_openssl.cc   AES_ctr128_encrypt(reinterpret_cast<const uint8*>(input.data()), out_ptr,
input             167 crypto/encryptor_openssl.cc                      input.size(), &aes_key, ivec, ecount_buf, &block_offset);
input              27 crypto/openpgp_symmetric_encryption.cc   Reader(base::StringPiece input)
input              28 crypto/openpgp_symmetric_encryption.cc       : data_(input) {
input             130 crypto/rsa_private_key.cc bool PrivateKeyInfoCodec::Import(const std::vector<uint8>& input) {
input             131 crypto/rsa_private_key.cc   if (input.empty()) {
input             137 crypto/rsa_private_key.cc   uint8* src = const_cast<uint8*>(&input.front());
input             138 crypto/rsa_private_key.cc   uint8* end = src + input.size();
input              72 crypto/rsa_private_key.h   bool Import(const std::vector<uint8>& input);
input             181 crypto/rsa_private_key.h       const std::vector<uint8>& input);
input             195 crypto/rsa_private_key.h       const std::vector<uint8>& input);
input             208 crypto/rsa_private_key.h       const std::vector<uint8>& input);
input             252 crypto/rsa_private_key.h       const std::vector<uint8>& input,
input              65 crypto/rsa_private_key_nss.cc     const std::vector<uint8>& input) {
input              71 crypto/rsa_private_key_nss.cc       input,
input              89 crypto/rsa_private_key_nss.cc     const std::vector<uint8>& input) {
input              91 crypto/rsa_private_key_nss.cc                                             input,
input             114 crypto/rsa_private_key_nss.cc     const std::vector<uint8>& input) {
input             122 crypto/rsa_private_key_nss.cc   key_der.data = const_cast<unsigned char*>(&input[0]);
input             123 crypto/rsa_private_key_nss.cc   key_der.len = input.size();
input             244 crypto/rsa_private_key_nss.cc     const std::vector<uint8>& input,
input             253 crypto/rsa_private_key_nss.cc   der_private_key_info.data = const_cast<unsigned char*>(&input.front());
input             254 crypto/rsa_private_key_nss.cc   der_private_key_info.len = input.size();
input              71 crypto/rsa_private_key_openssl.cc     const std::vector<uint8>& input) {
input              72 crypto/rsa_private_key_openssl.cc   if (input.empty())
input              77 crypto/rsa_private_key_openssl.cc   char* data = reinterpret_cast<char*>(const_cast<uint8*>(&input[0]));
input              78 crypto/rsa_private_key_openssl.cc   ScopedOpenSSL<BIO, BIO_free_all> bio(BIO_new_mem_buf(data, input.size()));
input             139 crypto/rsa_private_key_unittest.cc   std::vector<uint8> input(
input             143 crypto/rsa_private_key_unittest.cc       crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
input             150 crypto/rsa_private_key_unittest.cc   ASSERT_EQ(input, privkey_copy);
input             181 crypto/rsa_private_key_unittest.cc   std::vector<uint8> input(
input             185 crypto/rsa_private_key_unittest.cc       crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
input              27 crypto/secure_hash.h   virtual void Update(const void* input, size_t len) = 0;
input              31 crypto/secure_hash_default.cc   virtual void Update(const void* input, size_t len) OVERRIDE {
input              32 crypto/secure_hash_default.cc     SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
input              33 crypto/secure_hash_openssl.cc   virtual void Update(const void* input, size_t len) OVERRIDE {
input              34 crypto/secure_hash_openssl.cc     SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
input              52 crypto/third_party/nss/chromium-blapi.h extern void SHA256_Update(SHA256Context *cx, const unsigned char *input,
input              70 crypto/third_party/nss/chromium-blapi.h extern void SHA512_Update(SHA512Context *cx, const unsigned char *input,
input              88 crypto/third_party/nss/chromium-blapi.h extern void SHA384_Update(SHA384Context *cx, const unsigned char *input,
input              75 crypto/third_party/nss/chromium-nss.h                                     SECItem *input,
input              56 crypto/third_party/nss/secsign.cc                       SECItem *input,
input              60 crypto/third_party/nss/secsign.cc     return SEC_DerSignData(arena, result, input->data, input->len, key,
input              93 crypto/third_party/nss/secsign.cc       hash_type, &hash_data[0], input->data, input->len);
input             111 crypto/third_party/nss/secsign.cc   sd.data.data = (unsigned char*) input->data;
input             112 crypto/third_party/nss/secsign.cc   sd.data.len = input->len;
input             397 crypto/third_party/nss/sha512.cc SHA256_Update(SHA256Context *ctx, const unsigned char *input,
input             413 crypto/third_party/nss/sha512.cc 	memcpy(B + inBuf, input, todo);
input             414 crypto/third_party/nss/sha512.cc 	input    += todo;
input             422 crypto/third_party/nss/sha512.cc     	memcpy(B, input, SHA256_BLOCK_LENGTH);
input             423 crypto/third_party/nss/sha512.cc 	input    += SHA256_BLOCK_LENGTH;
input             429 crypto/third_party/nss/sha512.cc     	memcpy(B, input, inputLen);
input            1044 crypto/third_party/nss/sha512.cc SHA512_Update(SHA512Context *ctx, const unsigned char *input,
input            1066 crypto/third_party/nss/sha512.cc 	memcpy(B + inBuf, input, todo);
input            1067 crypto/third_party/nss/sha512.cc 	input    += todo;
input            1075 crypto/third_party/nss/sha512.cc     	memcpy(B, input, SHA512_BLOCK_LENGTH);
input            1076 crypto/third_party/nss/sha512.cc 	input    += SHA512_BLOCK_LENGTH;
input            1082 crypto/third_party/nss/sha512.cc     	memcpy(B, input, inputLen);
input            1227 crypto/third_party/nss/sha512.cc SHA384_Update(SHA384Context *ctx, const unsigned char *input,
input            1230 crypto/third_party/nss/sha512.cc     SHA512_Update(ctx, input, inputLen);
input             178 extensions/browser/api/storage/storage_api.cc   base::Value* input = NULL;
input             179 extensions/browser/api/storage/storage_api.cc   EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &input));
input             181 extensions/browser/api/storage/storage_api.cc   switch (input->GetType()) {
input             187 extensions/browser/api/storage/storage_api.cc       input->GetAsString(&as_string);
input             193 extensions/browser/api/storage/storage_api.cc       AddAllStringValues(*static_cast<base::ListValue*>(input),
input             200 extensions/browser/api/storage/storage_api.cc           static_cast<base::DictionaryValue*>(input);
input             221 extensions/browser/api/storage/storage_api.cc   base::Value* input = NULL;
input             222 extensions/browser/api/storage/storage_api.cc   EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &input));
input             226 extensions/browser/api/storage/storage_api.cc   switch (input->GetType()) {
input             233 extensions/browser/api/storage/storage_api.cc       input->GetAsString(&as_string);
input             240 extensions/browser/api/storage/storage_api.cc       AddAllStringValues(*static_cast<base::ListValue*>(input),
input             256 extensions/browser/api/storage/storage_api.cc   base::DictionaryValue* input = NULL;
input             257 extensions/browser/api/storage/storage_api.cc   EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &input));
input             258 extensions/browser/api/storage/storage_api.cc   return UseWriteResult(storage->Set(ValueStore::DEFAULTS, *input), storage);
input             267 extensions/browser/api/storage/storage_api.cc   base::Value* input = NULL;
input             268 extensions/browser/api/storage/storage_api.cc   EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &input));
input             270 extensions/browser/api/storage/storage_api.cc   switch (input->GetType()) {
input             273 extensions/browser/api/storage/storage_api.cc       input->GetAsString(&as_string);
input             279 extensions/browser/api/storage/storage_api.cc       AddAllStringValues(*static_cast<base::ListValue*>(input),
input             126 extensions/common/csp_validator.cc     std::string& input = directives[i];
input             127 extensions/common/csp_validator.cc     base::StringTokenizer tokenizer(input, " \t\r\n");
input             166 extensions/common/csp_validator.cc     std::string& input = directives[i];
input             167 extensions/common/csp_validator.cc     base::StringTokenizer tokenizer(input, " \t\r\n");
input             217 extensions/common/extension.cc bool Extension::ParsePEMKeyBytes(const std::string& input,
input             222 extensions/common/extension.cc   if (input.length() == 0)
input             225 extensions/common/extension.cc   std::string working = input;
input             248 extensions/common/extension.cc bool Extension::ProducePEM(const std::string& input, std::string* output) {
input             250 extensions/common/extension.cc   if (input.empty())
input             252 extensions/common/extension.cc   base::Base64Encode(input, output);
input             257 extensions/common/extension.cc bool Extension::FormatPEMForFileOutput(const std::string& input,
input             261 extensions/common/extension.cc   if (input.length() == 0)
input             270 extensions/common/extension.cc   for (size_t i = 0; i < input.length(); ) {
input             271 extensions/common/extension.cc     int slice = std::min<int>(input.length() - i, kPEMOutputColumns);
input             272 extensions/common/extension.cc     output->append(input.substr(i, slice));
input             230 extensions/common/extension.h   static bool ParsePEMKeyBytes(const std::string& input, std::string* output);
input             233 extensions/common/extension.h   static bool ProducePEM(const std::string& input, std::string* output);
input             237 extensions/common/extension.h   static bool FormatPEMForFileOutput(const std::string& input,
input              39 extensions/common/id_util.cc std::string GenerateId(const std::string& input) {
input              41 extensions/common/id_util.cc   crypto::SHA256HashString(input, hash, sizeof(hash));
input              22 extensions/common/id_util.h std::string GenerateId(const std::string& input);
input             179 gin/converter.h v8::Handle<v8::Value> ConvertToV8(v8::Isolate* isolate, T input) {
input             180 gin/converter.h   return Converter<T>::ToV8(isolate, input);
input             185 gin/converter.h     const base::StringPiece& input) {
input             186 gin/converter.h   return ConvertToV8(isolate, input).As<v8::String>();
input             193 gin/converter.h bool ConvertFromV8(v8::Isolate* isolate, v8::Handle<v8::Value> input,
input             195 gin/converter.h   return Converter<T>::FromV8(isolate, input, result);
input              42 gin/converter_unittest.cc     Handle<Value> input;
input              61 gin/converter_unittest.cc                                         test_data[i].input, &result));
input              66 gin/converter_unittest.cc                                         test_data[i].input, &result));
input              82 gin/converter_unittest.cc     v8::Handle<v8::Value> input;
input             104 gin/converter_unittest.cc                                               test_data_from[i].input, &result);
input             145 google_apis/cup/client_update_protocol.cc std::vector<uint8> UrlSafeB64Decode(const base::StringPiece& input) {
input             146 google_apis/cup/client_update_protocol.cc   std::string unsafe(input.begin(), input.end());
input              28 google_apis/drive/test_util.cc bool RemovePrefix(const std::string& input,
input              31 google_apis/drive/test_util.cc   if (!StartsWithASCII(input, prefix, true /* case sensitive */))
input              34 google_apis/drive/test_util.cc   *output = input.substr(prefix.size());
input              52 google_apis/drive/test_util.h bool RemovePrefix(const std::string& input,
input             343 gpu/command_buffer/client/program_info_manager.cc   const ProgramInput* input = inputs;
input             346 gpu/command_buffer/client/program_info_manager.cc         result, input->location_offset, sizeof(int32));
input             348 gpu/command_buffer/client/program_info_manager.cc         result, input->name_offset, input->name_length);
input             349 gpu/command_buffer/client/program_info_manager.cc     std::string name(name_buf, input->name_length);
input             351 gpu/command_buffer/client/program_info_manager.cc         VertexAttrib(input->size, input->type, name, *location));
input             354 gpu/command_buffer/client/program_info_manager.cc     ++input;
input             358 gpu/command_buffer/client/program_info_manager.cc         result, input->location_offset, sizeof(int32) * input->size);
input             360 gpu/command_buffer/client/program_info_manager.cc         result, input->name_offset, input->name_length);
input             361 gpu/command_buffer/client/program_info_manager.cc     std::string name(name_buf, input->name_length);
input             362 gpu/command_buffer/client/program_info_manager.cc     UniformInfo info(input->size, input->type, name);
input             365 gpu/command_buffer/client/program_info_manager.cc     for (int32 jj = 0; jj < input->size; ++jj) {
input             369 gpu/command_buffer/client/program_info_manager.cc     ++input;
input             372 gpu/command_buffer/client/program_info_manager.cc                 static_cast<uint32>(input - inputs));
input             239 gpu/command_buffer/service/program_manager.cc   re2::StringPiece input(log);
input             242 gpu/command_buffer/service/program_manager.cc   while (RE2::Consume(&input,
input             256 gpu/command_buffer/service/program_manager.cc   return output + input.as_string();
input            1040 gpu/command_buffer/service/program_manager_unittest.cc   const ProgramInput* input = inputs;
input            1044 gpu/command_buffer/service/program_manager_unittest.cc     EXPECT_EQ(expected.size, input->size);
input            1045 gpu/command_buffer/service/program_manager_unittest.cc     EXPECT_EQ(expected.type, input->type);
input            1047 gpu/command_buffer/service/program_manager_unittest.cc         input->location_offset, sizeof(int32));
input            1051 gpu/command_buffer/service/program_manager_unittest.cc         input->name_offset, input->name_length);
input            1053 gpu/command_buffer/service/program_manager_unittest.cc     std::string name(name_buf, input->name_length);
input            1055 gpu/command_buffer/service/program_manager_unittest.cc     ++input;
input            1060 gpu/command_buffer/service/program_manager_unittest.cc     EXPECT_EQ(expected.size, input->size);
input            1061 gpu/command_buffer/service/program_manager_unittest.cc     EXPECT_EQ(expected.type, input->type);
input            1063 gpu/command_buffer/service/program_manager_unittest.cc         input->location_offset, sizeof(int32) * input->size);
input            1065 gpu/command_buffer/service/program_manager_unittest.cc     for (int32 jj = 0; jj < input->size; ++jj) {
input            1071 gpu/command_buffer/service/program_manager_unittest.cc         input->name_offset, input->name_length);
input            1073 gpu/command_buffer/service/program_manager_unittest.cc     std::string name(name_buf, input->name_length);
input            1075 gpu/command_buffer/service/program_manager_unittest.cc     ++input;
input            1078 gpu/command_buffer/service/program_manager_unittest.cc             static_cast<uint32>(input - inputs));
input            1109 gpu/command_buffer/service/program_manager_unittest.cc   const ProgramInput* input = inputs + header->num_attribs;
input            1112 gpu/command_buffer/service/program_manager_unittest.cc     EXPECT_EQ(expected.size, input->size);
input            1114 gpu/command_buffer/service/program_manager_unittest.cc         input->location_offset, sizeof(int32) * input->size);
input            1119 gpu/command_buffer/service/program_manager_unittest.cc     for (int32 jj = 1; jj < input->size; ++jj)
input            1121 gpu/command_buffer/service/program_manager_unittest.cc     ++input;
input              17 ipc/ipc_message_unittest.cc   base::ListValue input;
input              18 ipc/ipc_message_unittest.cc   input.Set(0, new base::FundamentalValue(42.42));
input              19 ipc/ipc_message_unittest.cc   input.Set(1, new base::StringValue("forty"));
input              20 ipc/ipc_message_unittest.cc   input.Set(2, base::Value::CreateNullValue());
input              23 ipc/ipc_message_unittest.cc   IPC::WriteParam(&msg, input);
input              29 ipc/ipc_message_unittest.cc   EXPECT_TRUE(input.Equals(&output));
input              39 ipc/ipc_message_unittest.cc   base::DictionaryValue input;
input              40 ipc/ipc_message_unittest.cc   input.Set("null", base::Value::CreateNullValue());
input              41 ipc/ipc_message_unittest.cc   input.Set("bool", new base::FundamentalValue(true));
input              42 ipc/ipc_message_unittest.cc   input.Set("int", new base::FundamentalValue(42));
input              43 ipc/ipc_message_unittest.cc   input.SetWithoutPathExpansion("int.with.dot", new base::FundamentalValue(43));
input              55 ipc/ipc_message_unittest.cc   input.Set("dict", subdict.release());
input              58 ipc/ipc_message_unittest.cc   IPC::WriteParam(&msg, input);
input              64 ipc/ipc_message_unittest.cc   EXPECT_TRUE(input.Equals(&output));
input             112 media/audio/audio_low_latency_input_output_unittest.cc     bool input = audio_manager()->HasAudioInputDevices();
input             114 media/audio/audio_low_latency_input_output_unittest.cc     LOG_IF(WARNING, !input) << "No input device detected.";
input             116 media/audio/audio_low_latency_input_output_unittest.cc     return input && output;
input              38 media/audio/audio_manager_base.cc   DispatcherParams(const AudioParameters& input,
input              41 media/audio/audio_manager_base.cc       : input_params(input),
input             320 media/audio/mac/audio_manager_mac.cc     AudioDeviceID* device, bool input) {
input             325 media/audio/mac/audio_manager_mac.cc   pa.mSelector = input ? kAudioHardwarePropertyDefaultInputDevice :
input              56 media/audio/mac/audio_manager_mac.h   static bool GetDefaultDevice(AudioDeviceID* device, bool input);
input              88 media/audio/pulse/audio_manager_pulse.cc     bool input, media::AudioDeviceNames* device_names) {
input              95 media/audio/pulse/audio_manager_pulse.cc   if (input) {
input              55 media/audio/pulse/audio_manager_pulse.h   void GetAudioDeviceNames(bool input, media::AudioDeviceNames* device_names);
input              30 media/audio/virtual_audio_input_stream.cc   void AddInput(AudioConverter::InputCallback* input) {
input              31 media/audio/virtual_audio_input_stream.cc     audio_converter_.AddInput(input);
input              34 media/audio/virtual_audio_input_stream.cc   void RemoveInput(AudioConverter::InputCallback* input) {
input              35 media/audio/virtual_audio_input_stream.cc     audio_converter_.RemoveInput(input);
input             151 media/audio/win/audio_low_latency_input_win_unittest.cc   bool input = audio_man->HasAudioInputDevices();
input             152 media/audio/win/audio_low_latency_input_win_unittest.cc   LOG_IF(WARNING, !input) << "No input device detected.";
input             153 media/audio/win/audio_low_latency_input_win_unittest.cc   return input;
input             266 media/audio/win/audio_manager_win.cc     bool input,
input             272 media/audio/win/audio_manager_win.cc     if (input)
input             278 media/audio/win/audio_manager_win.cc     if (input)
input              89 media/audio/win/audio_manager_win.h   void GetAudioDeviceNamesImpl(bool input, AudioDeviceNames* device_names);
input              91 media/base/audio_converter.cc void AudioConverter::AddInput(InputCallback* input) {
input              92 media/base/audio_converter.cc   DCHECK(std::find(transform_inputs_.begin(), transform_inputs_.end(), input) ==
input              94 media/base/audio_converter.cc   transform_inputs_.push_back(input);
input              97 media/base/audio_converter.cc void AudioConverter::RemoveInput(InputCallback* input) {
input              98 media/base/audio_converter.cc   DCHECK(std::find(transform_inputs_.begin(), transform_inputs_.end(), input) !=
input             100 media/base/audio_converter.cc   transform_inputs_.remove(input);
input             202 media/base/audio_converter.cc     InputCallback* input = *it;
input             204 media/base/audio_converter.cc     const float volume = input->ProvideInput(provide_input_dest, buffer_delay);
input              83 media/base/audio_converter.h   void AddInput(InputCallback* input);
input              84 media/base/audio_converter.h   void RemoveInput(InputCallback* input);
input              37 media/base/audio_renderer_mixer.cc void AudioRendererMixer::AddMixerInput(AudioConverter::InputCallback* input,
input              47 media/base/audio_renderer_mixer.cc   DCHECK(mixer_inputs_.find(input) == mixer_inputs_.end());
input              48 media/base/audio_renderer_mixer.cc   mixer_inputs_[input] = error_cb;
input              49 media/base/audio_renderer_mixer.cc   audio_converter_.AddInput(input);
input              53 media/base/audio_renderer_mixer.cc     AudioConverter::InputCallback* input) {
input              55 media/base/audio_renderer_mixer.cc   audio_converter_.RemoveInput(input);
input              57 media/base/audio_renderer_mixer.cc   DCHECK(mixer_inputs_.find(input) != mixer_inputs_.end());
input              58 media/base/audio_renderer_mixer.cc   mixer_inputs_.erase(input);
input              29 media/base/audio_renderer_mixer.h   void AddMixerInput(AudioConverter::InputCallback* input,
input              31 media/base/audio_renderer_mixer.h   void RemoveMixerInput(AudioConverter::InputCallback* input);
input              82 media/base/audio_splicer.cc   bool AddInput(const scoped_refptr<AudioBuffer>& input);
input             136 media/base/audio_splicer.cc bool AudioStreamSanitizer::AddInput(const scoped_refptr<AudioBuffer>& input) {
input             137 media/base/audio_splicer.cc   DCHECK(!received_end_of_stream_ || input->end_of_stream());
input             139 media/base/audio_splicer.cc   if (input->end_of_stream()) {
input             140 media/base/audio_splicer.cc     output_buffers_.push_back(input);
input             145 media/base/audio_splicer.cc   DCHECK(input->timestamp() != kNoTimestamp());
input             146 media/base/audio_splicer.cc   DCHECK(input->duration() > base::TimeDelta());
input             147 media/base/audio_splicer.cc   DCHECK_GT(input->frame_count(), 0);
input             150 media/base/audio_splicer.cc     output_timestamp_helper_.SetBaseTimestamp(input->timestamp());
input             152 media/base/audio_splicer.cc   if (output_timestamp_helper_.base_timestamp() > input->timestamp()) {
input             157 media/base/audio_splicer.cc   const base::TimeDelta timestamp = input->timestamp();
input             172 media/base/audio_splicer.cc     AddOutputBuffer(input);
input             183 media/base/audio_splicer.cc         input->channel_layout(),
input             184 media/base/audio_splicer.cc         input->channel_count(),
input             185 media/base/audio_splicer.cc         input->sample_rate(),
input             192 media/base/audio_splicer.cc     AddOutputBuffer(input);
input             206 media/base/audio_splicer.cc   if (input->frame_count() <= frames_to_skip) {
input             216 media/base/audio_splicer.cc   AccurateTrimStart(frames_to_skip, input, output_timestamp_helper_);
input             217 media/base/audio_splicer.cc   AddOutputBuffer(input);
input             278 media/base/audio_splicer.cc bool AudioSplicer::AddInput(const scoped_refptr<AudioBuffer>& input) {
input             283 media/base/audio_splicer.cc     return output_sanitizer_->AddInput(input);
input             294 media/base/audio_splicer.cc     if (input->end_of_stream() ||
input             295 media/base/audio_splicer.cc         input->timestamp() >= max_splice_end_timestamp_) {
input             298 media/base/audio_splicer.cc       return output_sanitizer_->AddInput(input);
input             303 media/base/audio_splicer.cc     if (input->timestamp() + input->duration() < splice_timestamp_) {
input             305 media/base/audio_splicer.cc       return output_sanitizer_->AddInput(input);
input             321 media/base/audio_splicer.cc         input->timestamp() != splice_timestamp_) {
input             322 media/base/audio_splicer.cc       return pre_splice_sanitizer_->AddInput(input);
input             326 media/base/audio_splicer.cc   } else if (!input->end_of_stream() &&
input             327 media/base/audio_splicer.cc              input->timestamp() == splice_timestamp_) {
input             338 media/base/audio_splicer.cc   if (!post_splice_sanitizer_->AddInput(input))
input             363 media/base/audio_splicer.cc   if (!input->end_of_stream() && input->timestamp() < max_splice_end_timestamp_)
input              39 media/base/audio_splicer.h   bool AddInput(const scoped_refptr<AudioBuffer>& input);
input              69 media/base/audio_splicer_unittest.cc   void VerifyNextBuffer(const scoped_refptr<AudioBuffer>& input) {
input              72 media/base/audio_splicer_unittest.cc     EXPECT_EQ(input->timestamp(), output->timestamp());
input              73 media/base/audio_splicer_unittest.cc     EXPECT_EQ(input->duration(), output->duration());
input              74 media/base/audio_splicer_unittest.cc     EXPECT_EQ(input->frame_count(), output->frame_count());
input              75 media/base/audio_splicer_unittest.cc     EXPECT_TRUE(VerifyData(output, GetValue(input)));
input             129 media/base/audio_splicer_unittest.cc   bool AddInput(const scoped_refptr<AudioBuffer>& input) {
input             134 media/base/audio_splicer_unittest.cc         input->end_of_stream()
input             137 media/base/audio_splicer_unittest.cc                                     input->channel_layout(),
input             138 media/base/audio_splicer_unittest.cc                                     input->channel_count(),
input             139 media/base/audio_splicer_unittest.cc                                     input->sample_rate(),
input             140 media/base/audio_splicer_unittest.cc                                     input->frame_count(),
input             141 media/base/audio_splicer_unittest.cc                                     &input->channel_data()[0],
input             142 media/base/audio_splicer_unittest.cc                                     input->timestamp(),
input             143 media/base/audio_splicer_unittest.cc                                     input->duration());
input             125 media/base/channel_mixer.cc     const AudioParameters& input, const AudioParameters& output) {
input             126 media/base/channel_mixer.cc   Initialize(input.channel_layout(),
input             127 media/base/channel_mixer.cc              input.channels(),
input             334 media/base/channel_mixer.cc void ChannelMixer::Transform(const AudioBus* input, AudioBus* output) {
input             336 media/base/channel_mixer.cc   CHECK_EQ(matrix_[0].size(), static_cast<size_t>(input->channels()));
input             337 media/base/channel_mixer.cc   CHECK_EQ(input->frames(), output->frames());
input             345 media/base/channel_mixer.cc       for (int input_ch = 0; input_ch < input->channels(); ++input_ch) {
input             349 media/base/channel_mixer.cc           memcpy(output->channel(output_ch), input->channel(input_ch),
input             359 media/base/channel_mixer.cc     for (int input_ch = 0; input_ch < input->channels(); ++input_ch) {
input             364 media/base/channel_mixer.cc         vector_math::FMAC(input->channel(input_ch), scale, output->frames(),
input              28 media/base/channel_mixer.h   ChannelMixer(const AudioParameters& input, const AudioParameters& output);
input              32 media/base/channel_mixer.h   void Transform(const AudioBus* input, AudioBus* output);
input             158 media/base/text_renderer.cc     const scoped_refptr<DecoderBuffer>& input) {
input             163 media/base/text_renderer.cc     DCHECK(!input);
input             208 media/base/text_renderer.cc   if (input->end_of_stream()) {
input             214 media/base/text_renderer.cc   DCHECK_GE(input->side_data_size(), 2);
input             218 media/base/text_renderer.cc   const char* id_ptr = reinterpret_cast<const char*>(input->side_data());
input             227 media/base/text_renderer.cc   std::string text(input->data(), input->data() + input->data_size());
input             230 media/base/text_renderer.cc       new TextCue(input->timestamp(),
input             231 media/base/text_renderer.cc                   input->duration(),
input              93 media/base/text_renderer.h                    const scoped_refptr<DecoderBuffer>& input);
input             193 media/base/user_input_monitor_win.cc   RAWINPUT* input = reinterpret_cast<RAWINPUT*>(buffer.get());
input             203 media/base/user_input_monitor_win.cc   if (input->header.dwType == RIM_TYPEMOUSE && input->header.hDevice != NULL) {
input             212 media/base/user_input_monitor_win.cc   } else if (input->header.dwType == RIM_TYPEKEYBOARD &&
input             213 media/base/user_input_monitor_win.cc              input->header.hDevice != NULL) {
input             214 media/base/user_input_monitor_win.cc     ui::EventType event = (input->data.keyboard.Flags & RI_KEY_BREAK)
input             218 media/base/user_input_monitor_win.cc         ui::KeyboardCodeForWindowsKeyCode(input->data.keyboard.VKey);
input             222 media/base/user_input_monitor_win.cc   return DefRawInputProc(&input, 1, sizeof(RAWINPUTHEADER));
input              39 media/base/vector_math_unittest.cc   void FillTestVectors(float input, float output) {
input              41 media/base/vector_math_unittest.cc     fill(input_vector_.get(), input_vector_.get() + kVectorSize, input);
input              69 media/cast/test/receiver.cc   test::InputBuilder input(display_text, DEFAULT_SEND_IP, INT_MIN, INT_MAX);
input              70 media/cast/test/receiver.cc   std::string ip_address = input.GetStringInput();
input              74 media/cast/test/receiver.cc     ip_address = input.GetStringInput();
input             100 media/cast/test/receiver.cc   test::InputBuilder input("Choose audio receiver payload type.",
input             104 media/cast/test/receiver.cc   audio_config->rtp_payload_type = input.GetIntInput();
input             115 media/cast/test/receiver.cc   test::InputBuilder input("Choose video receiver payload type.",
input             119 media/cast/test/receiver.cc   video_config->rtp_payload_type = input.GetIntInput();
input              68 media/cast/test/sender.cc   test::InputBuilder input(
input              70 media/cast/test/sender.cc   *port = input.GetIntInput();
input              74 media/cast/test/sender.cc   test::InputBuilder input(display_text, DEFAULT_RECEIVER_IP, INT_MIN, INT_MAX);
input              75 media/cast/test/sender.cc   std::string ip_address = input.GetStringInput();
input              78 media/cast/test/sender.cc     ip_address = input.GetStringInput();
input              84 media/cast/test/sender.cc   test::InputBuilder input(
input              89 media/cast/test/sender.cc   return input.GetIntInput();
input              93 media/cast/test/sender.cc   test::InputBuilder input(
input              98 media/cast/test/sender.cc   return input.GetStringInput();
input             102 media/cast/test/sender.cc   test::InputBuilder input(
input             107 media/cast/test/sender.cc   return input.GetStringInput();
input             111 media/cast/test/sender.cc   test::InputBuilder input(
input             113 media/cast/test/sender.cc   return (1 == input.GetIntInput());
input             117 media/cast/test/sender.cc   test::InputBuilder input(
input             119 media/cast/test/sender.cc   return (1 == input.GetIntInput());
input             123 media/cast/test/sender.cc   test::InputBuilder input(
input             125 media/cast/test/sender.cc   return input.GetStringInput();
input             149 media/cast/test/sender.cc   test::InputBuilder input(
input             151 media/cast/test/sender.cc   audio_config->rtp_config.payload_type = input.GetIntInput();
input             172 media/cast/test/sender.cc   test::InputBuilder input(
input             174 media/cast/test/sender.cc   video_config->rtp_config.payload_type = input.GetIntInput();
input              47 media/cast/test/utility/input_builder.cc   std::string input = raw_input;
input              48 media/cast/test/utility/input_builder.cc   input = input.substr(0, input.size() - 1);  // Strip last \n.
input              49 media/cast/test/utility/input_builder.cc   if (input.empty() && !default_value_.empty())
input              52 media/cast/test/utility/input_builder.cc   if (!ValidateInput(input)) {
input              56 media/cast/test/utility/input_builder.cc   return input;
input              66 media/cast/test/utility/input_builder.cc bool InputBuilder::ValidateInput(const std::string input) const {
input              71 media/cast/test/utility/input_builder.cc   if (!base::StringToInt(input, &value))
input              36 media/cast/test/utility/input_builder.h   bool ValidateInput(const std::string input) const;
input             125 media/cdm/aes_decryptor.cc static scoped_refptr<DecoderBuffer> DecryptData(const DecoderBuffer& input,
input             127 media/cdm/aes_decryptor.cc   CHECK(input.data_size());
input             128 media/cdm/aes_decryptor.cc   CHECK(input.decrypt_config());
input             137 media/cdm/aes_decryptor.cc   DCHECK_EQ(input.decrypt_config()->iv().size(),
input             139 media/cdm/aes_decryptor.cc   if (!encryptor.SetCounter(input.decrypt_config()->iv())) {
input             144 media/cdm/aes_decryptor.cc   const char* sample = reinterpret_cast<const char*>(input.data());
input             145 media/cdm/aes_decryptor.cc   size_t sample_size = static_cast<size_t>(input.data_size());
input             151 media/cdm/aes_decryptor.cc   if (input.decrypt_config()->subsamples().empty()) {
input             166 media/cdm/aes_decryptor.cc       input.decrypt_config()->subsamples();
input              25 media/cdm/json_web_key.cc static std::string EncodeBase64(const uint8* input, int input_length) {
input              28 media/cdm/json_web_key.cc       std::string(reinterpret_cast<const char*>(input), input_length),
input             258 media/filters/audio_renderer_algorithm_unittest.cc     scoped_refptr<AudioBuffer> input =
input             265 media/filters/audio_renderer_algorithm_unittest.cc     const std::vector<uint8*>& channel_data = input->channel_data();
input             292 media/filters/audio_renderer_algorithm_unittest.cc           algorithm_.EnqueueBuffer(input);
input             144 media/filters/decrypting_audio_decoder_unittest.cc       scoped_refptr<DecoderBuffer> input,
input             167 media/filters/decrypting_audio_decoder_unittest.cc     decoder_->Decode(input,
input              25 media/filters/ffmpeg_audio_decoder.cc                                  const scoped_refptr<DecoderBuffer>& input) {
input              30 media/filters/ffmpeg_audio_decoder.cc   return result == 0 && decoded_size == 0 && input->end_of_stream();
input              98 media/filters/h264_to_annex_b_bitstream_converter.cc     const uint8* input,
input             104 media/filters/h264_to_annex_b_bitstream_converter.cc   if (input == NULL || input_size == 0) {
input             125 media/filters/h264_to_annex_b_bitstream_converter.cc          input++, size_of_len_field--, data_left--) {
input             127 media/filters/h264_to_annex_b_bitstream_converter.cc       nal_unit_length |= *input;
input             138 media/filters/h264_to_annex_b_bitstream_converter.cc     int nal_unit_type = *input & 0x1F;
input             148 media/filters/h264_to_annex_b_bitstream_converter.cc     input += nal_unit_length;
input             155 media/filters/h264_to_annex_b_bitstream_converter.cc     const uint8* input,
input             163 media/filters/h264_to_annex_b_bitstream_converter.cc   const uint8* decoder_configuration = input;
input             234 media/filters/h264_to_annex_b_bitstream_converter.cc     const uint8* input, uint32 input_size,
input             236 media/filters/h264_to_annex_b_bitstream_converter.cc   const uint8* inscan = input;  // We read the input from here progressively
input              51 media/filters/h264_to_annex_b_bitstream_converter.h   uint32 CalculateNeededOutputBufferSize(const uint8* input,
input              79 media/filters/h264_to_annex_b_bitstream_converter.h   bool ConvertAVCDecoderConfigToByteStream(const uint8* input,
input             108 media/filters/h264_to_annex_b_bitstream_converter.h   bool ConvertNalUnitStreamToByteStream(const uint8* input, uint32 input_size,
input             301 media/filters/opus_audio_decoder.cc     const scoped_refptr<DecoderBuffer>& input,
input             306 media/filters/opus_audio_decoder.cc   DCHECK(input.get());
input             310 media/filters/opus_audio_decoder.cc   if (input->end_of_stream()) {
input             317 media/filters/opus_audio_decoder.cc   if (input->timestamp() == kNoTimestamp() &&
input             325 media/filters/opus_audio_decoder.cc       input->timestamp() != kNoTimestamp() &&
input             326 media/filters/opus_audio_decoder.cc       input->timestamp() < last_input_timestamp_) {
input             327 media/filters/opus_audio_decoder.cc     base::TimeDelta diff = input->timestamp() - last_input_timestamp_;
input             329 media/filters/opus_audio_decoder.cc                 << " ts " << input->timestamp().InMicroseconds() << " us"
input             337 media/filters/opus_audio_decoder.cc     start_input_timestamp_ = input->timestamp();
input             339 media/filters/opus_audio_decoder.cc       input->timestamp() == start_input_timestamp_) {
input             343 media/filters/opus_audio_decoder.cc   last_input_timestamp_ = input->timestamp();
input             347 media/filters/opus_audio_decoder.cc   if (!Decode(input, &output_buffer)) {
input             463 media/filters/opus_audio_decoder.cc bool OpusAudioDecoder::Decode(const scoped_refptr<DecoderBuffer>& input,
input             481 media/filters/opus_audio_decoder.cc                                     input->data(),
input             482 media/filters/opus_audio_decoder.cc                                     input->data_size(),
input             489 media/filters/opus_audio_decoder.cc                 << " timestamp: " << input->timestamp().InMicroseconds()
input             490 media/filters/opus_audio_decoder.cc                 << " us, duration: " << input->duration().InMicroseconds()
input             491 media/filters/opus_audio_decoder.cc                 << " us, packet size: " << input->data_size() << " bytes with"
input             497 media/filters/opus_audio_decoder.cc       !input->end_of_stream()) {
input             498 media/filters/opus_audio_decoder.cc     DCHECK(input->timestamp() != kNoTimestamp());
input             499 media/filters/opus_audio_decoder.cc     output_timestamp_helper_->SetBaseTimestamp(input->timestamp());
input             516 media/filters/opus_audio_decoder.cc     if (input->discard_padding().InMicroseconds() > 0) {
input             518 media/filters/opus_audio_decoder.cc           input->discard_padding(), config_.samples_per_second());
input              44 media/filters/opus_audio_decoder.h   void DecodeBuffer(const scoped_refptr<DecoderBuffer>& input,
input              50 media/filters/opus_audio_decoder.h   bool Decode(const scoped_refptr<DecoderBuffer>& input,
input              61 media/filters/wsola_internals.cc void MultiChannelMovingBlockEnergies(const AudioBus* input,
input              64 media/filters/wsola_internals.cc   int num_blocks = input->frames() - (frames_per_block - 1);
input              65 media/filters/wsola_internals.cc   int channels = input->channels();
input              67 media/filters/wsola_internals.cc   for (int k = 0; k < input->channels(); ++k) {
input              68 media/filters/wsola_internals.cc     const float* input_channel = input->channel(k);
input              36 media/filters/wsola_internals.h MEDIA_EXPORT void MultiChannelMovingBlockEnergies(const AudioBus* input,
input             160 media/midi/midi_manager_alsa.cc       bool input;
input             168 media/midi/midi_manager_alsa.cc       input = snd_ctl_rawmidi_info(handle, midi_in) == 0;
input             169 media/midi/midi_manager_alsa.cc       if (!output && !input)
input             177 media/midi/midi_manager_alsa.cc       if (input) {
input             105 media/video/capture/mac/avfoundation_glue.h - (void)addInput:(CrAVCaptureInput*)input;
input             106 media/video/capture/mac/avfoundation_glue.h - (void)removeInput:(CrAVCaptureInput*)input;
input              15 mojo/common/common_type_converters.cc     const base::StringPiece& input,
input              17 mojo/common/common_type_converters.cc   if (input.empty())
input              19 mojo/common/common_type_converters.cc   String::Builder result(input.size(), buf);
input              20 mojo/common/common_type_converters.cc   memcpy(&result[0], input.data(), input.size());
input              25 mojo/common/common_type_converters.cc     const String& input) {
input              26 mojo/common/common_type_converters.cc   return input.is_null() ? base::StringPiece() :
input              27 mojo/common/common_type_converters.cc                            base::StringPiece(&input[0], input.size());
input              32 mojo/common/common_type_converters.cc     const base::string16& input,
input              35 mojo/common/common_type_converters.cc       base::UTF16ToUTF8(input), buf);
input              39 mojo/common/common_type_converters.cc     const String& input) {
input              40 mojo/common/common_type_converters.cc   return input.is_null() ? base::string16() :
input              41 mojo/common/common_type_converters.cc       base::UTF8ToUTF16(base::StringPiece(&input[0], input.size()));
input              19 mojo/common/common_type_converters.h   static String ConvertFrom(const base::StringPiece& input, Buffer* buf);
input              20 mojo/common/common_type_converters.h   static base::StringPiece ConvertTo(const String& input);
input              26 mojo/common/common_type_converters.h   static String ConvertFrom(const base::string16& input, Buffer* buf);
input              27 mojo/common/common_type_converters.h   static base::string16 ConvertTo(const String& input);
input              19 mojo/examples/pepper_container_app/type_converters.h   static Point ConvertFrom(const PP_Point& input, Buffer* buf) {
input              21 mojo/examples/pepper_container_app/type_converters.h     point.set_x(input.x);
input              22 mojo/examples/pepper_container_app/type_converters.h     point.set_y(input.y);
input              26 mojo/examples/pepper_container_app/type_converters.h   static PP_Point ConvertTo(const Point& input) {
input              27 mojo/examples/pepper_container_app/type_converters.h     return PP_MakePoint(static_cast<int32_t>(input.x()),
input              28 mojo/examples/pepper_container_app/type_converters.h                         static_cast<int32_t>(input.y()));
input              35 mojo/examples/pepper_container_app/type_converters.h   static Size ConvertFrom(const PP_Size& input, Buffer* buf) {
input              37 mojo/examples/pepper_container_app/type_converters.h     size.set_width(input.width);
input              38 mojo/examples/pepper_container_app/type_converters.h     size.set_height(input.height);
input              42 mojo/examples/pepper_container_app/type_converters.h   static PP_Size ConvertTo(const Size& input) {
input              43 mojo/examples/pepper_container_app/type_converters.h     return PP_MakeSize(static_cast<int32_t>(input.width()),
input              44 mojo/examples/pepper_container_app/type_converters.h                        static_cast<int32_t>(input.height()));
input              51 mojo/examples/pepper_container_app/type_converters.h   static Rect ConvertFrom(const PP_Rect& input, Buffer* buf) {
input              53 mojo/examples/pepper_container_app/type_converters.h     rect.set_position(input.point);
input              54 mojo/examples/pepper_container_app/type_converters.h     rect.set_size(input.size);
input              58 mojo/examples/pepper_container_app/type_converters.h   static PP_Rect ConvertTo(const Rect& input) {
input              59 mojo/examples/pepper_container_app/type_converters.h     PP_Rect rect = { input.position().To<PP_Point>(),
input              60 mojo/examples/pepper_container_app/type_converters.h                      input.size().To<PP_Size>() };
input             104 mojo/public/cpp/bindings/array.h   static String ConvertFrom(const std::string& input, Buffer* buf);
input             105 mojo/public/cpp/bindings/array.h   static std::string ConvertTo(const String& input);
input             111 mojo/public/cpp/bindings/array.h   static String ConvertFrom(const char input[N], Buffer* buf) {
input             113 mojo/public/cpp/bindings/array.h     memcpy(&result[0], input, N - 1);
input             122 mojo/public/cpp/bindings/array.h   static String ConvertFrom(const char input[N], Buffer* buf) {
input             123 mojo/public/cpp/bindings/array.h     return TypeConverter<String, char[N]>::ConvertFrom(input, buf);
input             130 mojo/public/cpp/bindings/array.h   static String ConvertFrom(const char* input, Buffer* buf);
input             138 mojo/public/cpp/bindings/array.h   static Array<T> ConvertFrom(const std::vector<E>& input, Buffer* buf) {
input             139 mojo/public/cpp/bindings/array.h     typename Array<T>::Builder result(input.size(), buf);
input             140 mojo/public/cpp/bindings/array.h     for (size_t i = 0; i < input.size(); ++i)
input             141 mojo/public/cpp/bindings/array.h       result[i] = TypeConverter<T, E>::ConvertFrom(input[i], buf);
input             144 mojo/public/cpp/bindings/array.h   static std::vector<E> ConvertTo(const Array<T>& input) {
input             146 mojo/public/cpp/bindings/array.h     if (!input.is_null()) {
input             147 mojo/public/cpp/bindings/array.h       result.resize(input.size());
input             148 mojo/public/cpp/bindings/array.h       for (size_t i = 0; i < input.size(); ++i)
input             149 mojo/public/cpp/bindings/array.h         result[i] = TypeConverter<T, E>::ConvertTo(input[i]);
input              10 mojo/public/cpp/bindings/lib/array.cc String TypeConverter<String, std::string>::ConvertFrom(const std::string& input,
input              12 mojo/public/cpp/bindings/lib/array.cc   String::Builder result(input.size(), buf);
input              13 mojo/public/cpp/bindings/lib/array.cc   if (!input.empty())
input              14 mojo/public/cpp/bindings/lib/array.cc     memcpy(&result[0], input.data(), input.size());
input              18 mojo/public/cpp/bindings/lib/array.cc std::string TypeConverter<String, std::string>::ConvertTo(const String& input) {
input              19 mojo/public/cpp/bindings/lib/array.cc   if (input.is_null() || input.size() == 0)
input              22 mojo/public/cpp/bindings/lib/array.cc   return std::string(&input[0], &input[0] + input.size());
input              26 mojo/public/cpp/bindings/lib/array.cc String TypeConverter<String, const char*>::ConvertFrom(const char* input,
input              28 mojo/public/cpp/bindings/lib/array.cc   if (!input)
input              31 mojo/public/cpp/bindings/lib/array.cc   size_t size = strlen(input);
input              34 mojo/public/cpp/bindings/lib/array.cc     memcpy(&result[0], input, size);
input              30 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc   static test_structs::Rect ConvertFrom(const RedmondRect& input, Buffer* buf) {
input              32 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.set_x(input.left);
input              33 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.set_y(input.top);
input              34 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.set_width(input.right - input.left);
input              35 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.set_height(input.bottom - input.top);
input              38 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc   static RedmondRect ConvertTo(const test_structs::Rect& input) {
input              40 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.left = input.x();
input              41 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.top = input.y();
input              42 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.right = input.x() + input.width();
input              43 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     rect.bottom = input.y() + input.height();
input              51 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc   static test_structs::NamedRegion ConvertFrom(const RedmondNamedRegion& input,
input              54 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     region.set_name(String(input.name, buf));
input              55 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     region.set_rects(mojo::Array<test_structs::Rect>(input.rects, buf));
input              58 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc   static RedmondNamedRegion ConvertTo(const test_structs::NamedRegion& input) {
input              60 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     region.name = input.name().To<std::string>();
input              61 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc     region.rects = input.rects().To<std::vector<RedmondRect> >();
input              13 mojo/services/gles2/command_buffer_type_conversions.cc     const gpu::CommandBuffer::State& input,
input              16 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_num_entries(input.num_entries);
input              17 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_get_offset(input.get_offset);
input              18 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_put_offset(input.put_offset);
input              19 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_token(input.token);
input              20 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_error(input.error);
input              21 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_context_lost_reason(input.context_lost_reason);
input              22 mojo/services/gles2/command_buffer_type_conversions.cc   result.set_generation(input.generation);
input              28 mojo/services/gles2/command_buffer_type_conversions.cc     const CommandBufferState& input) {
input              30 mojo/services/gles2/command_buffer_type_conversions.cc   state.num_entries = input.num_entries();
input              31 mojo/services/gles2/command_buffer_type_conversions.cc   state.get_offset = input.get_offset();
input              32 mojo/services/gles2/command_buffer_type_conversions.cc   state.put_offset = input.put_offset();
input              33 mojo/services/gles2/command_buffer_type_conversions.cc   state.token = input.token();
input              34 mojo/services/gles2/command_buffer_type_conversions.cc   state.error = static_cast<gpu::error::Error>(input.error());
input              36 mojo/services/gles2/command_buffer_type_conversions.cc       static_cast<gpu::error::ContextLostReason>(input.context_lost_reason());
input              37 mojo/services/gles2/command_buffer_type_conversions.cc   state.generation = input.generation();
input              19 mojo/services/gles2/command_buffer_type_conversions.h   static CommandBufferState ConvertFrom(const gpu::CommandBuffer::State& input,
input              21 mojo/services/gles2/command_buffer_type_conversions.h   static gpu::CommandBuffer::State ConvertTo(const CommandBufferState& input);
input              16 mojo/services/native_viewport/geometry_conversions.h   static Point ConvertFrom(const gfx::Point& input, Buffer* buf) {
input              18 mojo/services/native_viewport/geometry_conversions.h     point.set_x(input.x());
input              19 mojo/services/native_viewport/geometry_conversions.h     point.set_y(input.y());
input              22 mojo/services/native_viewport/geometry_conversions.h   static gfx::Point ConvertTo(const Point& input) {
input              23 mojo/services/native_viewport/geometry_conversions.h     return gfx::Point(input.x(), input.y());
input              30 mojo/services/native_viewport/geometry_conversions.h   static Size ConvertFrom(const gfx::Size& input, Buffer* buf) {
input              32 mojo/services/native_viewport/geometry_conversions.h     size.set_width(input.width());
input              33 mojo/services/native_viewport/geometry_conversions.h     size.set_height(input.height());
input              36 mojo/services/native_viewport/geometry_conversions.h   static gfx::Size ConvertTo(const Size& input) {
input              37 mojo/services/native_viewport/geometry_conversions.h     return gfx::Size(input.width(), input.height());
input              44 mojo/services/native_viewport/geometry_conversions.h   static Rect ConvertFrom(const gfx::Rect& input, Buffer* buf) {
input              46 mojo/services/native_viewport/geometry_conversions.h     rect.set_position(input.origin());
input              47 mojo/services/native_viewport/geometry_conversions.h     rect.set_size(input.size());
input              50 mojo/services/native_viewport/geometry_conversions.h   static gfx::Rect ConvertTo(const Rect& input) {
input              51 mojo/services/native_viewport/geometry_conversions.h     return gfx::Rect(input.position().x(), input.position().y(),
input              52 mojo/services/native_viewport/geometry_conversions.h                      input.size().width(), input.size().height());
input              44 mojo/shell/android/apk/src/org/chromium/mojo_shell_apk/MojoShellActivity.java             final EditText input = new EditText(this);
input              45 mojo/shell/android/apk/src/org/chromium/mojo_shell_apk/MojoShellActivity.java             alert.setView(input);
input              49 mojo/shell/android/apk/src/org/chromium/mojo_shell_apk/MojoShellActivity.java                     String url = input.getText().toString();
input              63 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc   const uint8_t* input = &kRLETextureData[0];
input              73 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc   while (input < input_end || decoded_count > 0) {
input              75 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       assert(input + 4 <= input_end);
input              78 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       data |= (kBase64Decode[*input++] << 18);
input              79 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       data |= (kBase64Decode[*input++] << 12);
input              80 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       data |= (kBase64Decode[*input++] <<  6);
input              81 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       data |= (kBase64Decode[*input++]      );
input              88 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       if (input[-1] == '=') decoded_count--;
input              89 native_client_sdk/src/examples/api/graphics_3d/graphics_3d.cc       if (input[-2] == '=') decoded_count--;
input              64 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc   const uint8_t* input = &kRLETextureData[0];
input              74 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc   while (input < input_end || decoded_count > 0) {
input              76 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       assert(input + 4 <= input_end);
input              79 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       data |= (kBase64Decode[*input++] << 18);
input              80 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       data |= (kBase64Decode[*input++] << 12);
input              81 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       data |= (kBase64Decode[*input++] <<  6);
input              82 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       data |= (kBase64Decode[*input++]      );
input              89 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       if (input[-1] == '=') decoded_count--;
input              90 native_client_sdk/src/gonacl_appengine/src/cube/cube.cc       if (input[-2] == '=') decoded_count--;
input              12 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c   uint8_t input[4];
input              13 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c   memcpy(input, &networklong, 4);
input              15 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c   return ((((uint32_t) input[0]) << 24) |
input              16 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c           (((uint32_t) input[1]) << 16) |
input              17 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c           (((uint32_t) input[2]) << 8) |
input              18 native_client_sdk/src/libraries/nacl_io/syscalls/ntohl.c           ((uint32_t) input[3]));
input              12 native_client_sdk/src/libraries/nacl_io/syscalls/ntohs.c   uint8_t input[2];
input              13 native_client_sdk/src/libraries/nacl_io/syscalls/ntohs.c   memcpy(input, &networkshort, 2);
input              15 native_client_sdk/src/libraries/nacl_io/syscalls/ntohs.c   return ((((uint32_t) input[0]) << 8) |
input              16 native_client_sdk/src/libraries/nacl_io/syscalls/ntohs.c           ((uint32_t) input[1]));
input             177 native_client_sdk/src/tests/nacl_io_test/jspipe_test.cc   struct tioc_nacl_input_string input;
input             178 native_client_sdk/src/tests/nacl_io_test/jspipe_test.cc   input.buffer = string;
input             179 native_client_sdk/src/tests/nacl_io_test/jspipe_test.cc   input.length = strlen(input.buffer);
input             180 native_client_sdk/src/tests/nacl_io_test/jspipe_test.cc   return ki_ioctl_wrapper(fd, TIOCNACLINPUT, &input);
input             459 native_client_sdk/src/tests/nacl_io_test/socket_test.cc     const char* input;
input             484 native_client_sdk/src/tests/nacl_io_test/socket_test.cc     ASSERT_TRUE(inet_pton(tests[i].family, tests[i].input, addr))
input             485 native_client_sdk/src/tests/nacl_io_test/socket_test.cc         << "inet_pton failed for " << tests[i].input;
input             486 native_client_sdk/src/tests/nacl_io_test/socket_test.cc     const char* expected = tests[i].output ? tests[i].output : tests[i].input;
input             136 native_client_sdk/src/tests/nacl_io_test/tty_test.cc   struct tioc_nacl_input_string input;
input             137 native_client_sdk/src/tests/nacl_io_test/tty_test.cc   input.buffer = string;
input             138 native_client_sdk/src/tests/nacl_io_test/tty_test.cc   input.length = strlen(input.buffer);
input             139 native_client_sdk/src/tests/nacl_io_test/tty_test.cc   return ki_ioctl_wrapper(fd, TIOCNACLINPUT, &input);
input             264 net/base/escape.cc str EscapeForHTMLImpl(const str& input) {
input             266 net/base/escape.cc   result.reserve(input.size());  // Optimize for no escaping.
input             268 net/base/escape.cc   for (typename str::const_iterator i = input.begin(); i != input.end(); ++i)
input             320 net/base/escape.cc std::string EscapeNonASCII(const std::string& input) {
input             321 net/base/escape.cc   return Escape(input, kNonASCIICharmap, false);
input             332 net/base/escape.cc std::string EscapeForHTML(const std::string& input) {
input             333 net/base/escape.cc   return EscapeForHTMLImpl(input);
input             336 net/base/escape.cc base::string16 EscapeForHTML(const base::string16& input) {
input             337 net/base/escape.cc   return EscapeForHTMLImpl(input);
input             386 net/base/escape.cc base::string16 UnescapeForHTML(const base::string16& input) {
input             398 net/base/escape.cc   if (input.find(base::ASCIIToUTF16("&")) == std::string::npos)
input             399 net/base/escape.cc     return input;
input             402 net/base/escape.cc   base::string16 text(input);
input              40 net/base/escape.h NET_EXPORT std::string EscapeNonASCII(const std::string& input);
input              23 net/base/escape_unittest.cc   const char* input;
input              28 net/base/escape_unittest.cc   const wchar_t* input;
input              34 net/base/escape_unittest.cc   const char* input;
input              40 net/base/escape_unittest.cc   const char* input;
input              53 net/base/escape_unittest.cc   const char* input;
input              59 net/base/escape_unittest.cc   const char* input;
input              71 net/base/escape_unittest.cc     EXPECT_EQ(value.output, EscapeQueryParamValue(value.input, true));
input              81 net/base/escape_unittest.cc     EXPECT_EQ(value.output, EscapeQueryParamValue(value.input, false));
input             185 net/base/escape_unittest.cc     std::string str(unescape_cases[i].input);
input             192 net/base/escape_unittest.cc   std::string input("Null");
input             193 net/base/escape_unittest.cc   input.push_back(0);  // Also have a NULL in the input.
input             194 net/base/escape_unittest.cc   input.append("%00%39Test");
input             201 net/base/escape_unittest.cc   EXPECT_EQ(expected, UnescapeURLComponent(input, UnescapeRule::CONTROL_CHARS));
input             207 net/base/escape_unittest.cc   EXPECT_EQ(expected, UnescapeURLComponent(input, UnescapeRule::NORMAL));
input             278 net/base/escape_unittest.cc     base::string16 str(base::WideToUTF16(unescape_cases[i].input));
input             285 net/base/escape_unittest.cc   base::string16 input(base::WideToUTF16(L"Null"));
input             286 net/base/escape_unittest.cc   input.push_back(0);  // Also have a NULL in the input.
input             287 net/base/escape_unittest.cc   input.append(base::WideToUTF16(L"%00%39Test"));
input             294 net/base/escape_unittest.cc   EXPECT_EQ(expected, UnescapeURLComponent(input, UnescapeRule::CONTROL_CHARS));
input             300 net/base/escape_unittest.cc   EXPECT_EQ(expected, UnescapeURLComponent(input, UnescapeRule::NORMAL));
input             348 net/base/escape_unittest.cc     std::string unescaped = UnescapeURLComponent(unescape_cases[i].input,
input             352 net/base/escape_unittest.cc     unescaped = UnescapeURLComponent(unescape_cases[i].input,
input             358 net/base/escape_unittest.cc         unescape_cases[i].input, UnescapeRule::NORMAL, NULL);
input             382 net/base/escape_unittest.cc     UnescapeAndDecodeUTF8URLComponent(adjust_cases[i].input,
input             395 net/base/escape_unittest.cc     std::string result = EscapeForHTML(std::string(tests[i].input));
input             415 net/base/escape_unittest.cc     base::string16 result = UnescapeForHTML(base::ASCIIToUTF16(tests[i].input));
input              66 net/base/hash_value.h   bool FromString(const base::StringPiece input);
input             169 net/base/ip_pattern.cc bool IPPattern::ValueTextToInt(const base::StringPiece& input,
input             171 net/base/ip_pattern.cc   bool ok = is_ipv4_ ? base::StringToUint(input, output) :
input             172 net/base/ip_pattern.cc                        base::HexStringToUInt(input, output);
input             174 net/base/ip_pattern.cc     DVLOG(1) << "Could not convert value to number: " << input;
input              44 net/base/ip_pattern.h   bool ValueTextToInt(const base::StringPiece& input, uint32* output) const;
input             190 net/base/keygen_handler_mac.cc     std::string input(reinterpret_cast<char*>(encoded.Data), encoded.Length);
input             191 net/base/keygen_handler_mac.cc     base::Base64Encode(input, &result);
input              37 net/base/net_log_logger_unittest.cc   std::string input;
input              38 net/base/net_log_logger_unittest.cc   ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
input              41 net/base/net_log_logger_unittest.cc   scoped_ptr<base::Value> root(reader.ReadToValue(input));
input              69 net/base/net_log_logger_unittest.cc   std::string input;
input              70 net/base/net_log_logger_unittest.cc   ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
input              73 net/base/net_log_logger_unittest.cc   scoped_ptr<base::Value> root(reader.ReadToValue(input));
input             104 net/base/net_log_logger_unittest.cc   std::string input;
input             105 net/base/net_log_logger_unittest.cc   ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
input             108 net/base/net_log_logger_unittest.cc   scoped_ptr<base::Value> root(reader.ReadToValue(input));
input              73 net/base/net_util_unittest.cc   const char* input;
input             412 net/base/net_util_unittest.cc   const char* input;
input             740 net/base/net_util_unittest.cc       base::string16 output(IDNToUnicode(idn_cases[i].input, kLanguages[j]));
input             743 net/base/net_util_unittest.cc           ASCIIToUTF16(idn_cases[i].input));
input             756 net/base/net_util_unittest.cc       base::string16 output(IDNToUnicode(idn_cases[i].input, kLanguages[j]));
input             759 net/base/net_util_unittest.cc           ASCIIToUTF16(idn_cases[i].input));
input            2294 net/base/net_util_unittest.cc     const char* input;
input            2326 net/base/net_util_unittest.cc     bool ok = ParseHostAndPort(tests[i].input, &host, &port);
input            2641 net/base/net_util_unittest.cc         GURL(tests[i].input), tests[i].languages, tests[i].format_types,
input             568 net/base/sdch_manager.cc void SdchManager::UrlSafeBase64Encode(const std::string& input,
input             572 net/base/sdch_manager.cc   base::Base64Encode(input, output);
input             357 net/base/sdch_manager.h   static void UrlSafeBase64Encode(const std::string& input,
input              38 net/base/url_util.cc   const std::string input = url.query();
input              39 net/base/url_util.cc   url_parse::Component cursor(0, input.size());
input              43 net/base/url_util.cc              input.data(), &cursor, &key_range, &value_range)) {
input              45 net/base/url_util.cc         input.data() + key_range.begin, key_range.len);
input              47 net/base/url_util.cc         input.data() + value_range.begin, value_range.len);
input              54 net/base/url_util.cc       key_value_pair.assign(input.data(),
input             192 net/cert/ct_serialization.cc void WriteEncodedBytes(const base::StringPiece& input, std::string* output) {
input             193 net/cert/ct_serialization.cc   input.AppendToString(output);
input             202 net/cert/ct_serialization.cc                         const base::StringPiece& input,
input             204 net/cert/ct_serialization.cc   size_t input_size = input.size();
input             210 net/cert/ct_serialization.cc   WriteUint(prefix_length, input.size(), output);
input             211 net/cert/ct_serialization.cc   WriteEncodedBytes(input, output);
input             220 net/cert/ct_serialization.cc bool EncodeAsn1CertLogEntry(const LogEntry& input, std::string* output) {
input             222 net/cert/ct_serialization.cc                             input.leaf_certificate, output);
input             229 net/cert/ct_serialization.cc bool EncodePrecertLogEntry(const LogEntry& input, std::string* output) {
input             232 net/cert/ct_serialization.cc           reinterpret_cast<const char*>(input.issuer_key_hash.data),
input             236 net/cert/ct_serialization.cc                             input.tbs_certificate, output);
input             241 net/cert/ct_serialization.cc bool EncodeDigitallySigned(const DigitallySigned& input,
input             243 net/cert/ct_serialization.cc   WriteUint(kHashAlgorithmLength, input.hash_algorithm, output);
input             244 net/cert/ct_serialization.cc   WriteUint(kSigAlgorithmLength, input.signature_algorithm,
input             246 net/cert/ct_serialization.cc   return WriteVariableBytes(kSignatureLengthBytes, input.signature_data,
input             250 net/cert/ct_serialization.cc bool DecodeDigitallySigned(base::StringPiece* input,
input             256 net/cert/ct_serialization.cc   if (!ReadUint(kHashAlgorithmLength, input, &hash_algo) ||
input             257 net/cert/ct_serialization.cc       !ReadUint(kSigAlgorithmLength, input, &sig_algo) ||
input             258 net/cert/ct_serialization.cc       !ReadVariableBytes(kSignatureLengthBytes, input, &sig_data)) {
input             277 net/cert/ct_serialization.cc bool EncodeLogEntry(const LogEntry& input, std::string* output) {
input             278 net/cert/ct_serialization.cc   WriteUint(kLogEntryTypeLength, input.type, output);
input             279 net/cert/ct_serialization.cc   switch (input.type) {
input             281 net/cert/ct_serialization.cc       return EncodeAsn1CertLogEntry(input, output);
input             283 net/cert/ct_serialization.cc       return EncodePrecertLogEntry(input, output);
input             305 net/cert/ct_serialization.cc bool DecodeSCTList(base::StringPiece* input,
input             309 net/cert/ct_serialization.cc                 input, &result)) {
input             313 net/cert/ct_serialization.cc   if (!input->empty() || result.empty())
input             320 net/cert/ct_serialization.cc     base::StringPiece* input,
input             325 net/cert/ct_serialization.cc   if (!ReadUint(kVersionLength, input, &version))
input             336 net/cert/ct_serialization.cc   if (!ReadFixedBytes(kLogIdLength, input, &log_id) ||
input             337 net/cert/ct_serialization.cc       !ReadUint(kTimestampLength, input, &timestamp) ||
input             338 net/cert/ct_serialization.cc       !ReadVariableBytes(kExtensionsLengthBytes, input,
input             340 net/cert/ct_serialization.cc       !DecodeDigitallySigned(input, &result->signature)) {
input              23 net/cert/ct_serialization.h NET_EXPORT_PRIVATE bool EncodeDigitallySigned(const DigitallySigned& input,
input              29 net/cert/ct_serialization.h NET_EXPORT_PRIVATE bool DecodeDigitallySigned(base::StringPiece* input,
input              34 net/cert/ct_serialization.h NET_EXPORT_PRIVATE bool EncodeLogEntry(const LogEntry& input,
input              58 net/cert/ct_serialization.h NET_EXPORT_PRIVATE bool DecodeSCTList(base::StringPiece* input,
input              65 net/cert/ct_serialization.h     base::StringPiece* input,
input             165 net/cert/x509_util_unittest.cc   std::vector<uint8> input;
input             166 net/cert/x509_util_unittest.cc   input.resize(sizeof(private_key_info));
input             167 net/cert/x509_util_unittest.cc   memcpy(&input.front(), private_key_info, sizeof(private_key_info));
input             170 net/cert/x509_util_unittest.cc       crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
input            1989 net/cookies/cookie_monster_unittest.cc       const CookiesInputInfo* input = &input_info[input_index];
input            1992 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->name, output->Name());
input            1993 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->value, output->Value());
input            1994 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->url.host(), output->Domain());
input            1995 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->path, output->Path());
input            1998 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->secure, output->IsSecure());
input            1999 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->http_only, output->IsHttpOnly());
input            2001 net/cookies/cookie_monster_unittest.cc       EXPECT_EQ(input->expiration_time.ToInternalValue(),
input              46 net/cookies/parsed_cookie_unittest.cc     std::string input(values[i]);
input              49 net/cookies/parsed_cookie_unittest.cc     ParsedCookie pc("aBc=" + input + " ; path=\"/\"  ; httponly ");
input             255 net/cookies/parsed_cookie_unittest.cc   const char input[] = "ANCUUID=zohNumRKgI0oxyhSsV3Z7D  ; "
input             261 net/cookies/parsed_cookie_unittest.cc   ParsedCookie pc(input);
input             141 net/cronet/android/sample/src/org/chromium/cronet_sample_apk/CronetSampleActivity.java         final EditText input = new EditText(this);
input             142 net/cronet/android/sample/src/org/chromium/cronet_sample_apk/CronetSampleActivity.java         input.setText(url);
input             143 net/cronet/android/sample/src/org/chromium/cronet_sample_apk/CronetSampleActivity.java         alert.setView(input);
input             146 net/cronet/android/sample/src/org/chromium/cronet_sample_apk/CronetSampleActivity.java                 String url = input.getText().toString();
input              19 net/dns/dns_config_service_win_unittest.cc     const wchar_t* input;
input              43 net/dns/dns_config_service_win_unittest.cc     bool result = internal::ParseSearchList(t.input, &actual_output);
input              48 net/dns/dns_config_service_win_unittest.cc       EXPECT_FALSE(result) << "Unexpected parse success on " << t.input;
input             403 net/dns/dns_config_service_win_unittest.cc     internal::DnsSystemSettings::RegDword input;
input             419 net/dns/dns_config_service_win_unittest.cc       t.input,
input             757 net/filter/sdch_filter_unittest.cc static std::string gzip_compress(const std::string &input) {
input             771 net/filter/sdch_filter_unittest.cc   zlib_stream.next_in = bit_cast<Bytef*>(input.data());
input             772 net/filter/sdch_filter_unittest.cc   zlib_stream.avail_in = input.size();
input             158 net/ftp/ftp_directory_listing_parser_ls_unittest.cc                                     good_cases[i].input));
input             162 net/ftp/ftp_directory_listing_parser_ls_unittest.cc         GetSingleLineTestCase(good_cases[i].input),
input              33 net/ftp/ftp_directory_listing_parser_netware_unittest.cc                                     good_cases[i].input));
input              36 net/ftp/ftp_directory_listing_parser_netware_unittest.cc         GetSingleLineTestCase(good_cases[i].input));
input              56 net/ftp/ftp_directory_listing_parser_os2_unittest.cc                                     good_cases[i].input));
input              60 net/ftp/ftp_directory_listing_parser_os2_unittest.cc         GetSingleLineTestCase(good_cases[i].input),
input              19 net/ftp/ftp_directory_listing_parser_unittest.h     const char* input;
input              56 net/ftp/ftp_directory_listing_parser_vms.cc bool ParseVmsFilesize(const base::string16& input, int64* size) {
input              57 net/ftp/ftp_directory_listing_parser_vms.cc   if (base::ContainsOnlyChars(input, base::ASCIIToUTF16("*"))) {
input              68 net/ftp/ftp_directory_listing_parser_vms.cc   if (base::StringToInt64(input, size)) {
input              76 net/ftp/ftp_directory_listing_parser_vms.cc   base::SplitString(input, '/', &parts);
input              94 net/ftp/ftp_directory_listing_parser_vms.cc bool LooksLikeVmsFileProtectionListingPart(const base::string16& input) {
input              95 net/ftp/ftp_directory_listing_parser_vms.cc   if (input.length() > 4)
input             101 net/ftp/ftp_directory_listing_parser_vms.cc   base::string16 match(input);
input             110 net/ftp/ftp_directory_listing_parser_vms.cc bool LooksLikeVmsFileProtectionListing(const base::string16& input) {
input             111 net/ftp/ftp_directory_listing_parser_vms.cc   if (input.length() < 2)
input             113 net/ftp/ftp_directory_listing_parser_vms.cc   if (input[0] != '(' || input[input.length() - 1] != ')')
input             119 net/ftp/ftp_directory_listing_parser_vms.cc   base::SplitString(input.substr(1, input.length() - 2), ',', &parts);
input             129 net/ftp/ftp_directory_listing_parser_vms.cc bool LooksLikeVmsUserIdentificationCode(const base::string16& input) {
input             130 net/ftp/ftp_directory_listing_parser_vms.cc   if (input.length() < 2)
input             132 net/ftp/ftp_directory_listing_parser_vms.cc   return input[0] == '[' && input[input.length() - 1] == ']';
input              57 net/ftp/ftp_directory_listing_parser_vms_unittest.cc                                     good_cases[i].input));
input              60 net/ftp/ftp_directory_listing_parser_vms_unittest.cc         GetSingleLineTestCase(good_cases[i].input));
input              62 net/ftp/ftp_directory_listing_parser_windows_unittest.cc                                     good_cases[i].input));
input              66 net/ftp/ftp_directory_listing_parser_windows_unittest.cc         GetSingleLineTestCase(good_cases[i].input),
input              35 net/ftp/ftp_network_transaction.cc bool IsValidFTPCommandString(const std::string& input) {
input              41 net/ftp/ftp_network_transaction.cc   if (input.find_first_of("\r\n") != std::string::npos)
input              22 net/ftp/ftp_util_unittest.cc     const char* input;
input              39 net/ftp/ftp_util_unittest.cc               net::FtpUtil::UnixFilePathToVMS(kTestCases[i].input))
input              40 net/ftp/ftp_util_unittest.cc         << kTestCases[i].input;
input              46 net/ftp/ftp_util_unittest.cc     const char* input;
input              72 net/ftp/ftp_util_unittest.cc               net::FtpUtil::UnixDirectoryPathToVMS(kTestCases[i].input))
input              73 net/ftp/ftp_util_unittest.cc         << kTestCases[i].input;
input              79 net/ftp/ftp_util_unittest.cc     const char* input;
input             112 net/ftp/ftp_util_unittest.cc               net::FtpUtil::VMSPathToUnix(kTestCases[i].input))
input             113 net/ftp/ftp_util_unittest.cc         << kTestCases[i].input;
input             216 net/http/http_auth_handler_ntlm_portable.cc   const uint8* input  = reinterpret_cast<const uint8*>(str);
input             217 net/http/http_auth_handler_ntlm_portable.cc   for (uint32 i = 0; i < str_len; ++i, input += 2, cursor += 2) {
input             219 net/http/http_auth_handler_ntlm_portable.cc     uint8 temp = input[0];
input             220 net/http/http_auth_handler_ntlm_portable.cc     cursor[0] = input[1];
input              28 net/http/http_chunked_decoder_unittest.cc     std::string input = inputs[i];
input              29 net/http/http_chunked_decoder_unittest.cc     int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
input              32 net/http/http_chunked_decoder_unittest.cc       result.append(input.data(), n);
input              48 net/http/http_chunked_decoder_unittest.cc     std::string input = inputs[i];
input              49 net/http/http_chunked_decoder_unittest.cc     int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
input              27 net/http/http_content_disposition.cc bool DecodeQEncoding(const std::string& input, std::string* output) {
input              29 net/http/http_content_disposition.cc   temp.reserve(input.size());
input              30 net/http/http_content_disposition.cc   for (std::string::const_iterator it = input.begin(); it != input.end();
input              35 net/http/http_content_disposition.cc       if ((input.end() - it < 3) ||
input             231 net/http/http_content_disposition.cc bool DecodeFilenameValue(const std::string& input,
input             240 net/http/http_content_disposition.cc   base::StringTokenizer t(input, " \t\n\r");
input             270 net/http/http_content_disposition.cc bool ParseExtValueComponents(const std::string& input,
input             273 net/http/http_content_disposition.cc   base::StringTokenizer t(input, "'");
input             265 net/http/http_util_unittest.cc     const char* input;
input             276 net/http/http_util_unittest.cc     int input_len = static_cast<int>(strlen(tests[i].input));
input             277 net/http/http_util_unittest.cc     int eoh = HttpUtil::LocateEndOfHeaders(tests[i].input, input_len);
input             284 net/http/http_util_unittest.cc     const char* input;  // with '|' representing '\0'
input             586 net/http/http_util_unittest.cc     std::string input = tests[i].input;
input             587 net/http/http_util_unittest.cc     std::replace(input.begin(), input.end(), '|', '\0');
input             588 net/http/http_util_unittest.cc     std::string raw = HttpUtil::AssembleRawHeaders(input.data(), input.size());
input             148 net/http/md4.cc void MD4Sum(const Uint8 *input, Uint32 inputLen, Uint8 *result)
input             164 net/http/md4.cc     md4step(state, (input + (i << 6)));
input             168 net/http/md4.cc   memcpy(final, input + (m << 6), n);
input              69 net/http/md4.h void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
input            1175 net/proxy/proxy_config_service_linux.cc     base::ScopedFILE input(base::OpenFile(kioslaverc, "r"));
input            1176 net/proxy/proxy_config_service_linux.cc     if (!input.get())
input            1183 net/proxy/proxy_config_service_linux.cc     while (fgets(line, sizeof(line), input.get())) {
input            1243 net/proxy/proxy_config_service_linux.cc     if (ferror(input.get()))
input              70 net/quic/crypto/crypto_framer.cc bool CryptoFramer::ProcessInput(StringPiece input) {
input              75 net/quic/crypto/crypto_framer.cc   error_ = Process(input);
input             195 net/quic/crypto/crypto_framer.cc QuicErrorCode CryptoFramer::Process(StringPiece input) {
input             197 net/quic/crypto/crypto_framer.cc   buffer_.append(input.data(), input.length());
input              62 net/quic/crypto/crypto_framer.h   bool ProcessInput(base::StringPiece input);
input              79 net/quic/crypto/crypto_framer.h   QuicErrorCode Process(base::StringPiece input);
input             257 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             281 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input             297 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             328 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input             345 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             368 net/quic/crypto/crypto_framer_test.cc   for (size_t i = 0; i < arraysize(input); i++) {
input             369 net/quic/crypto/crypto_framer_test.cc     EXPECT_TRUE(framer.ProcessInput(StringPiece(AsChars(input) + i, 1)));
input             385 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             403 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input             413 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             431 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input             441 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             451 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input             461 net/quic/crypto/crypto_framer_test.cc   unsigned char input[] = {
input             479 net/quic/crypto/crypto_framer_test.cc       framer.ProcessInput(StringPiece(AsChars(input), arraysize(input))));
input              31 net/quic/crypto/crypto_utils_test.cc     const char *input, *expected;
input              43 net/quic/crypto/crypto_utils_test.cc               CryptoUtils::NormalizeHostname(tests[i].input));
input              45 net/quic/quic_utils_test.cc     const string input;
input              58 net/quic/quic_utils_test.cc               QuicUtils::StringToHexASCIIDump(tests[i].input.c_str()));
input              60 net/quic/quic_utils_test.cc               QuicUtils::StringToHexASCIIDump(tests[i].input));
input              62 net/quic/quic_utils_test.cc               QuicUtils::StringToHexASCIIDump(StringPiece(tests[i].input)));
input             262 net/server/http_server.cc     int input = charToInput(ch);
input             263 net/server/http_server.cc     int next_state = parser_state[state][input];
input             308 net/server/http_server.cc           DCHECK(input == INPUT_LF);
input             119 net/spdy/buffered_spdy_framer_unittest.cc   void SimulateInFramer(const unsigned char* input, size_t size) {
input             122 net/spdy/buffered_spdy_framer_unittest.cc     const char* input_ptr = reinterpret_cast<const char*>(input);
input             200 net/spdy/hpack_decoder_test.cc   char input[] = "\x00\x88\x4e\xb0\x8b\x74\x97\x90\xfa\x7f";
input             201 net/spdy/hpack_decoder_test.cc   StringPiece foo(input, arraysize(input) - 1);
input             266 net/spdy/hpack_decoder_test.cc   string input;
input             274 net/spdy/hpack_decoder_test.cc     output_stream.TakeString(&input);
input             275 net/spdy/hpack_decoder_test.cc     EXPECT_TRUE(DecodeHeaderBlock(StringPiece(input)));
input             286 net/spdy/hpack_decoder_test.cc     output_stream.TakeString(&input);
input             287 net/spdy/hpack_decoder_test.cc     EXPECT_FALSE(DecodeHeaderBlock(StringPiece(input)));
input             254 net/spdy/hpack_huffman_table_test.cc   StringPiece input(input_storage, arraysize(input_storage));
input             264 net/spdy/hpack_huffman_table_test.cc   table.EncodeString(input, &output_stream);
input             269 net/spdy/hpack_huffman_table_test.cc   EXPECT_TRUE(table.DecodeString(&input_stream, input.size(), &buffer_out));
input             270 net/spdy/hpack_huffman_table_test.cc   EXPECT_EQ(buffer_out, input);
input             334 net/spdy/hpack_huffman_table_test.cc     StringPiece input(input_storage, arraysize(input_storage));
input             336 net/spdy/hpack_huffman_table_test.cc     HpackInputStream input_stream(kuint32max, input);
input             344 net/spdy/hpack_huffman_table_test.cc     StringPiece input(input_storage, arraysize(input_storage));
input             346 net/spdy/hpack_huffman_table_test.cc     HpackInputStream input_stream(kuint32max, input);
input             353 net/spdy/hpack_huffman_table_test.cc     StringPiece input(&input_storage[0], input_storage.size());
input             355 net/spdy/hpack_huffman_table_test.cc     HpackInputStream input_stream(kuint32max, input);
input             366 net/spdy/hpack_huffman_table_test.cc     StringPiece input(input_storage, arraysize(input_storage));
input             368 net/spdy/hpack_huffman_table_test.cc     HpackInputStream input_stream(kuint32max, input);
input             446 net/spdy/hpack_huffman_table_test.cc     StringPiece input(storage, arraysize(storage));
input             448 net/spdy/hpack_huffman_table_test.cc     string buffer_in, buffer_out(input.size(), '\0');
input             450 net/spdy/hpack_huffman_table_test.cc     table.EncodeString(input, &output_stream);
input             454 net/spdy/hpack_huffman_table_test.cc     EXPECT_TRUE(table.DecodeString(&input_stream, input.size(), &buffer_out));
input             455 net/spdy/hpack_huffman_table_test.cc     EXPECT_EQ(input, buffer_out);
input             467 net/spdy/hpack_huffman_table_test.cc   StringPiece input(storage, arraysize(storage));
input             469 net/spdy/hpack_huffman_table_test.cc   string buffer_in, buffer_out(input.size(), '\0');
input             471 net/spdy/hpack_huffman_table_test.cc   table.EncodeString(input, &output_stream);
input             475 net/spdy/hpack_huffman_table_test.cc   EXPECT_TRUE(table.DecodeString(&input_stream, input.size(), &buffer_out));
input             476 net/spdy/hpack_huffman_table_test.cc   EXPECT_EQ(input, buffer_out);
input             517 net/spdy/hpack_input_stream_test.cc   string output, input(kEncodedFixture, arraysize(kEncodedFixture)-1);
input             518 net/spdy/hpack_input_stream_test.cc   HpackInputStream input_stream(arraysize(kDecodedFixture)-1, input);
input             527 net/spdy/hpack_input_stream_test.cc   string output, input(kEncodedFixture, arraysize(kEncodedFixture)-1);
input             529 net/spdy/hpack_input_stream_test.cc   HpackInputStream input_stream(arraysize(kDecodedFixture)-2, input);
input             537 net/spdy/hpack_input_stream_test.cc   string output, input(kEncodedFixture, arraysize(kEncodedFixture)-1);
input             538 net/spdy/hpack_input_stream_test.cc   input[0]++;  // Input prefix is one byte larger than available input.
input             539 net/spdy/hpack_input_stream_test.cc   HpackInputStream input_stream(arraysize(kDecodedFixture)-1, input);
input             415 net/spdy/spdy_framer_test.cc   void SimulateInFramer(const unsigned char* input, size_t size) {
input             419 net/spdy/spdy_framer_test.cc     const char* input_ptr = reinterpret_cast<const char*>(input);
input              54 net/test/python_utils_unittest.cc   std::string input("PythonUtilsTest");
input              55 net/test/python_utils_unittest.cc   std::string python_cmd = base::StringPrintf("print '%s';", input.c_str());
input              60 net/test/python_utils_unittest.cc   EXPECT_EQ(input, output);
input              97 net/third_party/nss/ssl/ssl3con.c 			     int maxOutputLen, const unsigned char *input,
input             877 net/third_party/nss/ssl/ssl3con.c 	    const unsigned char *input, int inputLen)
input             885 net/third_party/nss/ssl/ssl3con.c     if (input != output)
input             886 net/third_party/nss/ssl/ssl3con.c 	PORT_Memcpy(output, input, inputLen);
input            2392 net/third_party/nss/ssl/ssl3con.c     const SSL3Opaque * input,
input            2401 net/third_party/nss/ssl/ssl3con.c     PRINT_BUF(95, (NULL, "frag hash1: input", input, inputLength));
input            2461 net/third_party/nss/ssl/ssl3con.c 	    hashObj->update(write_mac_context, input, inputLength);
input            2492 net/third_party/nss/ssl/ssl3con.c 		HMAC_Update(cx, input, inputLength);
input            2506 net/third_party/nss/ssl/ssl3con.c 	rv |= PK11_DigestOp(mac_context, input, inputLength);
input            2533 net/third_party/nss/ssl/ssl3con.c     const SSL3Opaque * input,
input            2573 net/third_party/nss/ssl/ssl3con.c     inputItem.data = (unsigned char *) input;
input            2608 net/third_party/nss/ssl/ssl3con.c 				 input, inputLen, outbuf, outLen);
input             750 net/tools/balsa/balsa_frame.cc void BalsaFrame::ProcessChunkExtensions(const char* input, size_t size,
input             752 net/tools/balsa/balsa_frame.cc   ProcessChunkExtensionsManual(base::StringPiece(input, size), extensions);
input            1217 net/tools/balsa/balsa_frame.cc size_t BalsaFrame::ProcessInput(const char* input, size_t size) {
input            1218 net/tools/balsa/balsa_frame.cc   const char* current = input;
input            1248 net/tools/balsa/balsa_frame.cc     current += ProcessHeaders(input, bytes_to_process);
input            1547 net/tools/balsa/balsa_frame.cc     << std::string(input, current)
input            1551 net/tools/balsa/balsa_frame.cc     << " consumed: " << (current - input);
input            1556 net/tools/balsa/balsa_frame.cc   return current - input;
input             131 net/tools/balsa/balsa_frame.h   size_t ProcessInput(const char* input, size_t size);
input             135 net/tools/balsa/balsa_frame.h   static void ProcessChunkExtensions(const char* input, size_t size,
input             206 net/tools/balsa/balsa_frame.h     virtual void ProcessBodyInput(const char *input, size_t size) OVERRIDE {}
input             207 net/tools/balsa/balsa_frame.h     virtual void ProcessBodyData(const char *input, size_t size) OVERRIDE {}
input             208 net/tools/balsa/balsa_frame.h     virtual void ProcessHeaderInput(const char *input, size_t size) OVERRIDE {}
input             209 net/tools/balsa/balsa_frame.h     virtual void ProcessTrailerInput(const char *input, size_t size) OVERRIDE {}
input             228 net/tools/balsa/balsa_frame.h     virtual void ProcessChunkExtensions(const char *input,
input              89 net/tools/balsa/balsa_frame_test.cc   const char input[] = "\r\n";
input              96 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             106 net/tools/balsa/balsa_frame_test.cc   const char input[] = "GET / HTTP/1.0\r\nkey1: value1\r\n\r\n";
input             142 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             143 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             152 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(input, StringPiece(header, header_length));
input             156 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 200 OK\r\n"
input             192 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             193 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             210 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 200 OK\r\n"
input             256 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             260 net/tools/balsa/balsa_frame_test.cc   read += frame_->ProcessInput(&input[read], strlen(input) - read);
input             261 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             280 net/tools/balsa/balsa_frame_test.cc   const char input[] = "GET / HTTP/1.0\r\nkey1: value1\r\n\r\n";
input             293 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             294 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             307 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 InvalidStatusCode OK\r\n"
input             320 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             331 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 InvalidStatusCode OK\r\n"
input             344 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             361 net/tools/balsa/balsa_frame_test.cc   const char input[] = "GET / HTTP/1.0\r\n\r\n";
input             371 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             381 net/tools/balsa/balsa_frame_test.cc   const char input[] = "GET / HTTP/1.0\r\n\r\n";
input             391 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             401 net/tools/balsa/balsa_frame_test.cc   const char input[] = "GET / HTTP/1.0\r\n"
input             433 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             434 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             449 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 200 OK\r\n"
input             488 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             492 net/tools/balsa/balsa_frame_test.cc   read += frame_->ProcessInput(&input[read], strlen(input) - read);
input             493 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             511 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 200 OK\r\n"
input             534 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             538 net/tools/balsa/balsa_frame_test.cc   read += frame_->ProcessInput(&input[read], strlen(input) - read);
input             539 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input             556 net/tools/balsa/balsa_frame_test.cc   const char input[] = "HTTP/1.1 200 OK\r\n"
input             578 net/tools/balsa/balsa_frame_test.cc   size_t read = frame_->ProcessInput(input, strlen(input));
input             582 net/tools/balsa/balsa_frame_test.cc   read += frame_->ProcessInput(&input[read], strlen(input) - read);
input             583 net/tools/balsa/balsa_frame_test.cc   ASSERT_EQ(strlen(input), read);
input              33 net/tools/balsa/balsa_visitor_interface.h   virtual void ProcessBodyInput(const char *input, size_t size) = 0;
input              44 net/tools/balsa/balsa_visitor_interface.h   virtual void ProcessBodyData(const char *input, size_t size) = 0;
input              52 net/tools/balsa/balsa_visitor_interface.h   virtual void ProcessHeaderInput(const char *input, size_t size) = 0;
input              62 net/tools/balsa/balsa_visitor_interface.h   virtual void ProcessTrailerInput(const char *input, size_t size) = 0;
input             139 net/tools/balsa/balsa_visitor_interface.h   virtual void ProcessChunkExtensions(const char* input, size_t size) = 0;
input              22 net/tools/balsa/noop_balsa_visitor.h   virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE { }
input              23 net/tools/balsa/noop_balsa_visitor.h   virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE { }
input              24 net/tools/balsa/noop_balsa_visitor.h   virtual void ProcessHeaderInput(const char* input, size_t size) OVERRIDE { }
input              25 net/tools/balsa/noop_balsa_visitor.h   virtual void ProcessTrailerInput(const char* input, size_t size) OVERRIDE { }
input              45 net/tools/balsa/noop_balsa_visitor.h   virtual void ProcessChunkExtensions(const char* input, size_t size) OVERRIDE {
input             303 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     string input;
input             304 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     input.append(i + UrlToFilenameEncoder::kMaximumSubdirectoryLength, 'x');
input             305 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     ValidateAllSegmentsSmall(input);
input             314 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     string input;
input             315 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     input.append(i + UrlToFilenameEncoder::kMaximumSubdirectoryLength - 1, 'x');
input             316 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     input.append(1, '.');  // this will expand to 3 characters.
input             317 net/tools/dump_cache/url_to_filename_encoder_unittest.cc     ValidateAllSegmentsSmall(input);
input              38 net/tools/flip_server/http_interface.cc void HttpSM::ProcessBodyData(const char* input, size_t size) {
input              42 net/tools/flip_server/http_interface.cc     sm_spdy_interface_->SendDataFrame(stream_id_, input, size, 0, false);
input              35 net/tools/flip_server/http_interface.h   virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE {}
input              36 net/tools/flip_server/http_interface.h   virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE;
input              37 net/tools/flip_server/http_interface.h   virtual void ProcessHeaderInput(const char* input, size_t size) OVERRIDE {}
input              38 net/tools/flip_server/http_interface.h   virtual void ProcessTrailerInput(const char* input, size_t size) OVERRIDE {}
input              57 net/tools/flip_server/http_interface.h   virtual void ProcessChunkExtensions(const char* input, size_t size) OVERRIDE {
input              32 net/tools/flip_server/mem_cache.cc void StoreBodyAndHeadersVisitor::ProcessBodyData(const char* input,
input              34 net/tools/flip_server/mem_cache.cc   body.append(input, size);
input              24 net/tools/flip_server/mem_cache.h   virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE {}
input              25 net/tools/flip_server/mem_cache.h   virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE;
input              26 net/tools/flip_server/mem_cache.h   virtual void ProcessHeaderInput(const char* input, size_t size) OVERRIDE {}
input              27 net/tools/flip_server/mem_cache.h   virtual void ProcessTrailerInput(const char* input, size_t size) OVERRIDE {}
input              49 net/tools/flip_server/mem_cache.h   virtual void ProcessChunkExtensions(const char* input, size_t size) OVERRIDE {
input             382 net/tools/flip_server/spdy_interface_test.cc   const char input[] = {'\0', '\0', '\0'};
input             393 net/tools/flip_server/spdy_interface_test.cc   interface_->ProcessReadInput(input, sizeof(input));
input             155 net/tools/flip_server/streamer_interface.cc void StreamerSM::ProcessBodyInput(const char* input, size_t size) {
input             159 net/tools/flip_server/streamer_interface.cc   sm_other_interface_->ProcessWriteInput(input, size);
input              93 net/tools/flip_server/streamer_interface.h   virtual void ProcessBodyInput(const char* input, size_t size) OVERRIDE;
input              96 net/tools/flip_server/streamer_interface.h   virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE {}
input              97 net/tools/flip_server/streamer_interface.h   virtual void ProcessHeaderInput(const char* input, size_t size) OVERRIDE {}
input              98 net/tools/flip_server/streamer_interface.h   virtual void ProcessTrailerInput(const char* input, size_t size) OVERRIDE {}
input             116 net/tools/flip_server/streamer_interface.h   virtual void ProcessChunkExtensions(const char* input, size_t size) OVERRIDE {
input              32 net/tools/quic/quic_in_memory_cache.cc   virtual void ProcessBodyData(const char* input, size_t size) OVERRIDE {
input              33 net/tools/quic/quic_in_memory_cache.cc     AppendToBody(input, size);
input              53 net/tools/quic/quic_in_memory_cache.cc   void AppendToBody(const char* input, size_t size) {
input              54 net/tools/quic/quic_in_memory_cache.cc     body_.append(input, size);
input              70 net/websockets/websocket_deflater_test.cc   std::string input(32, 'a');
input              73 net/websockets/websocket_deflater_test.cc   for (size_t i = 0; i < input.size(); ++i) {
input              74 net/websockets/websocket_deflater_test.cc     ASSERT_TRUE(deflater.AddBytes(&input[i], 1));
input             108 net/websockets/websocket_deflater_test.cc   std::string input = word + std::string(256, 'a') + word;
input             111 net/websockets/websocket_deflater_test.cc   ASSERT_TRUE(deflater.AddBytes(input.data(), input.size()));
input             125 net/websockets/websocket_deflater_test.cc   std::string input = word + std::string(256, 'a') + word;
input             128 net/websockets/websocket_deflater_test.cc   ASSERT_TRUE(deflater.AddBytes(input.data(), input.size()));
input             131 net/websockets/websocket_frame_parser_test.cc   std::vector<char> input;
input             134 net/websockets/websocket_frame_parser_test.cc     input.insert(input.end(),
input             142 net/websockets/websocket_frame_parser_test.cc   EXPECT_TRUE(parser.Decode(&input.front(), input.size(), &frames));
input             313 net/websockets/websocket_frame_parser_test.cc     std::vector<char> input(frame_header, frame_header + frame_header_length);
input             317 net/websockets/websocket_frame_parser_test.cc     input.insert(input.end(), input_payload_size, 'a');
input             323 net/websockets/websocket_frame_parser_test.cc               parser.Decode(&input.front(), input.size(), &frames));
input             233 net/websockets/websocket_frame_test.cc     const char* input;
input             257 net/websockets/websocket_frame_test.cc     std::vector<char> frame_data(kTests[i].input,
input             258 net/websockets/websocket_frame_test.cc                                  kTests[i].input + kTests[i].data_length);
input             161 net/websockets/websocket_handshake_handler.cc   std::string input(data, length);
input             163 net/websockets/websocket_handshake_handler.cc       HttpUtil::LocateEndOfHeaders(input.data(), input.size(), 0);
input             167 net/websockets/websocket_handshake_handler.cc   ParseHandshakeHeader(input.data(),
input             102 net/websockets/websocket_inflater_test.cc   std::string input("\xf2\x48\xcd\xc9\xc9\x07\x00", 7);
input             105 net/websockets/websocket_inflater_test.cc   for (size_t i = 0; i < input.size(); ++i) {
input             106 net/websockets/websocket_inflater_test.cc     ASSERT_TRUE(inflater.AddBytes(&input[i], 1));
input             187 net/websockets/websocket_inflater_test.cc   std::vector<char> input;
input             197 net/websockets/websocket_inflater_test.cc     input.push_back(static_cast<char>(generator.Generate()));
input             199 net/websockets/websocket_inflater_test.cc   ASSERT_TRUE(deflater.AddBytes(&input[0], input.size()));
input             219 net/websockets/websocket_inflater_test.cc   EXPECT_EQ(output, input);
input              69 ppapi/c/dev/ppb_char_set_dev.h                               const char* input, uint32_t input_len,
input             101 ppapi/c/trusted/ppb_char_set_trusted.h   PP_Bool (*CharSetToUTF16)(const char* input,
input              29 ppapi/cpp/array_output.h     const std::vector<PP_Resource>& input,
input              32 ppapi/cpp/array_output.h   output->reserve(input.size());
input              33 ppapi/cpp/array_output.h   for (size_t i = 0; i < input.size(); i++)
input              34 ppapi/cpp/array_output.h     output->push_back(ResourceObjectType(PASS_REF, input[i]));
input              82 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         int input = va_arg(vl, int);
input              83 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->u.bval = input;
input              87 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         double input = va_arg(vl, double);
input              88 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->u.dval = input;
input              95 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         char* input = (char *)malloc(len);
input              96 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         if (!input) {
input             100 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         memcpy(input, orig_arr, len);
input             101 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->arrays.carr = input;
input             106 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         NaClSrpcImcDescType input = va_arg(vl, NaClSrpcImcDescType);
input             107 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->u.hval = input;
input             111 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         int32_t input = va_arg(vl, int32_t);
input             112 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->u.ival = input;
input             116 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         int64_t input = va_arg(vl, int64_t);
input             117 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->u.lval = input;
input             123 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         char* input = strdup(orig_str);
input             124 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         if (!input) {
input             128 ppapi/native_client/src/trusted/plugin/nacl_subprocess.cc         params->ins()[i]->arrays.str = input;
input              76 ppapi/proxy/file_chooser_resource.cc     const std::string& input,
input              78 ppapi/proxy/file_chooser_resource.cc   if (input.empty())
input              82 ppapi/proxy/file_chooser_resource.cc   base::SplitString(input, ',', &type_list);
input              53 ppapi/proxy/file_chooser_resource.h   static void PopulateAcceptTypes(const std::string& input,
input              44 ppapi/proxy/file_chooser_resource_unittest.cc bool CheckParseAcceptType(const std::string& input,
input              48 ppapi/proxy/file_chooser_resource_unittest.cc   FileChooserResource::PopulateAcceptTypes(input, &output);
input              68 ppapi/proxy/pdf_resource_unittest.cc   base::string16 input;
input              70 ppapi/proxy/pdf_resource_unittest.cc   base::UTF8ToUTF16("abcdefabcdef", 12, &input);
input              76 ppapi/proxy/pdf_resource_unittest.cc       reinterpret_cast<const unsigned short*>(input.c_str()),
input             193 ppapi/proxy/serialized_var.cc                                            const PP_Var* input,
input             198 ppapi/proxy/serialized_var.cc     output->push_back(SerializedVarSendInput(dispatcher, input[i]));
input             227 ppapi/proxy/serialized_var.h                             const PP_Var* input,
input              39 ppapi/proxy/serialized_var_unittest.cc     SerializedVarTestConstructor input(host_object);
input              40 ppapi/proxy/serialized_var_unittest.cc     SerializedVarReceiveInput receive_input(input);
input              87 ppapi/proxy/serialized_var_unittest.cc     SerializedVarTestConstructor input(kTestString);
input              88 ppapi/proxy/serialized_var_unittest.cc     SerializedVarReceiveInput receive_input(input);
input              30 ppapi/shared_impl/array_writer.cc     const std::vector<scoped_refptr<Resource> >& input) {
input              34 ppapi/shared_impl/array_writer.cc                                      static_cast<uint32_t>(input.size()),
input              41 ppapi/shared_impl/array_writer.cc   if (input.empty())
input              48 ppapi/shared_impl/array_writer.cc   for (size_t i = 0; i < input.size(); i++)
input              49 ppapi/shared_impl/array_writer.cc     dest_resources[i] = input[i]->GetReference();
input              53 ppapi/shared_impl/array_writer.cc bool ArrayWriter::StoreResourceVector(const std::vector<PP_Resource>& input) {
input              57 ppapi/shared_impl/array_writer.cc                                      static_cast<uint32_t>(input.size()),
input              64 ppapi/shared_impl/array_writer.cc   if (input.empty())
input              68 ppapi/shared_impl/array_writer.cc     for (size_t i = 0; i < input.size(); i++)
input              69 ppapi/shared_impl/array_writer.cc       PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(input[i]);
input              73 ppapi/shared_impl/array_writer.cc   std::copy(input.begin(), input.end(), static_cast<PP_Resource*>(dest));
input              78 ppapi/shared_impl/array_writer.cc     const std::vector<scoped_refptr<Var> >& input) {
input              82 ppapi/shared_impl/array_writer.cc                                      static_cast<uint32_t>(input.size()),
input              89 ppapi/shared_impl/array_writer.cc   if (input.empty())
input              96 ppapi/shared_impl/array_writer.cc   for (size_t i = 0; i < input.size(); i++)
input              97 ppapi/shared_impl/array_writer.cc     dest_vars[i] = input[i]->GetPPVar();
input             101 ppapi/shared_impl/array_writer.cc bool ArrayWriter::StoreVarVector(const std::vector<PP_Var>& input) {
input             105 ppapi/shared_impl/array_writer.cc                                      static_cast<uint32_t>(input.size()),
input             112 ppapi/shared_impl/array_writer.cc   if (input.empty())
input             116 ppapi/shared_impl/array_writer.cc     for (size_t i = 0; i < input.size(); i++)
input             117 ppapi/shared_impl/array_writer.cc       PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(input[i]);
input             121 ppapi/shared_impl/array_writer.cc   std::copy(input.begin(), input.end(), static_cast<PP_Var*>(dest));
input              54 ppapi/shared_impl/array_writer.h   bool StoreArray(const T* input, uint32_t count) {
input              68 ppapi/shared_impl/array_writer.h     if (input)
input              69 ppapi/shared_impl/array_writer.h       memcpy(dest, input, sizeof(T) * count);
input              76 ppapi/shared_impl/array_writer.h   bool StoreVector(const std::vector<T>& input) {
input              77 ppapi/shared_impl/array_writer.h     return StoreArray(input.size() ? &input[0] : NULL, input.size());
input              91 ppapi/shared_impl/array_writer.h   bool StoreResourceVector(const std::vector<scoped_refptr<Resource> >& input);
input              95 ppapi/shared_impl/array_writer.h   bool StoreResourceVector(const std::vector<PP_Resource>& input);
input             104 ppapi/shared_impl/array_writer.h   bool StoreVarVector(const std::vector<scoped_refptr<Var> >& input);
input             108 ppapi/shared_impl/array_writer.h   bool StoreVarVector(const std::vector<PP_Var>& input);
input              17 ppapi/shared_impl/ppb_url_util_shared.cc void ConvertComponent(const url_parse::Component& input,
input              19 ppapi/shared_impl/ppb_url_util_shared.cc   output->begin = input.begin;
input              20 ppapi/shared_impl/ppb_url_util_shared.cc   output->len = input.len;
input              29 ppapi/shared_impl/ppb_url_util_shared.cc void ConvertComponents(const url_parse::Parsed& input,
input              34 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.scheme, &output->scheme);
input              35 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.username, &output->username);
input              36 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.password, &output->password);
input              37 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.host, &output->host);
input              38 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.port, &output->port);
input              39 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.path, &output->path);
input              40 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.query, &output->query);
input              41 ppapi/shared_impl/ppb_url_util_shared.cc   ConvertComponent(input.ref, &output->ref);
input             172 ppapi/shared_impl/private/ppb_char_set_shared.cc     const char* input,
input             183 ppapi/shared_impl/private/ppb_char_set_shared.cc   CharSetToUTF16(input, input_len, input_char_set, on_error, NULL,
input             192 ppapi/shared_impl/private/ppb_char_set_shared.cc   PP_Bool result = CharSetToUTF16(input, input_len, input_char_set, on_error,
input             204 ppapi/shared_impl/private/ppb_char_set_shared.cc     const char* input,
input             210 ppapi/shared_impl/private/ppb_char_set_shared.cc   if (!input || !input_char_set || !output_utf16_length) {
input             224 ppapi/shared_impl/private/ppb_char_set_shared.cc   if (!base::CodepageToUTF16(std::string(input, input_len), input_char_set,
input              31 ppapi/shared_impl/private/ppb_char_set_shared.h   static uint16_t* CharSetToUTF16Deprecated(const char* input,
input              36 ppapi/shared_impl/private/ppb_char_set_shared.h   static PP_Bool CharSetToUTF16(const char* input,
input             131 ppapi/tests/test_flash_clipboard.cc   std::string input = "Hello world plain text!";
input             132 ppapi/tests/test_flash_clipboard.cc   ASSERT_TRUE(WriteStringVar(PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT, input));
input             135 ppapi/tests/test_flash_clipboard.cc   ASSERT_TRUE(ReadPlainTextMatches(input));
input             141 ppapi/tests/test_flash_clipboard.cc   std::string input = "Hello world html!";
input             142 ppapi/tests/test_flash_clipboard.cc   ASSERT_TRUE(WriteStringVar(PP_FLASH_CLIPBOARD_FORMAT_HTML, input));
input             144 ppapi/tests/test_flash_clipboard.cc   ASSERT_TRUE(ReadHTMLMatches(input));
input             242 ppapi/tests/test_flash_clipboard.cc   std::string input = "Hello world plain text!";
input             243 ppapi/tests/test_flash_clipboard.cc   ASSERT_TRUE(WriteStringVar(PP_FLASH_CLIPBOARD_FORMAT_PLAINTEXT, input));
input              52 ppapi/thunk/ppb_char_set_thunk.cc                                    const char* input, uint32_t input_len,
input              63 ppapi/thunk/ppb_char_set_thunk.cc       input, input_len, input_char_set, on_error, output_length);
input              66 ppapi/thunk/ppb_char_set_thunk.cc PP_Bool CharSetToUTF16(const char* input,
input              73 ppapi/thunk/ppb_char_set_thunk.cc       input, input_len, input_char_set, on_error,
input             109 remoting/base/compound_buffer_unittest.cc   static size_t ReadFromInput(CompoundBufferInputStream* input,
input             118 remoting/base/compound_buffer_unittest.cc       if (!input->Next(&in, &in_size)) {
input             126 remoting/base/compound_buffer_unittest.cc           input->BackUp(in_size - out_size);
input             137 remoting/base/compound_buffer_unittest.cc   static void ReadString(CompoundBufferInputStream* input,
input             142 remoting/base/compound_buffer_unittest.cc     EXPECT_EQ(ReadFromInput(input, buffer.get(), str.size()), str.size());
input              28 remoting/host/input_injector_win.cc   INPUT input;
input              29 remoting/host/input_injector_win.cc   memset(&input, 0, sizeof(input));
input              30 remoting/host/input_injector_win.cc   input.type = INPUT_KEYBOARD;
input              31 remoting/host/input_injector_win.cc   input.ki.time = 0;
input              32 remoting/host/input_injector_win.cc   input.ki.dwFlags = flags;
input              33 remoting/host/input_injector_win.cc   input.ki.wScan = scancode;
input              41 remoting/host/input_injector_win.cc     input.ki.wScan &= 0xFF;
input              43 remoting/host/input_injector_win.cc       input.ki.dwFlags |= KEYEVENTF_EXTENDEDKEY;
input              46 remoting/host/input_injector_win.cc   if (SendInput(1, &input, sizeof(INPUT)) == 0)
input             253 remoting/host/input_injector_win.cc   INPUT input;
input             254 remoting/host/input_injector_win.cc   memset(&input, 0, sizeof(input));
input             255 remoting/host/input_injector_win.cc   input.type = INPUT_MOUSE;
input             258 remoting/host/input_injector_win.cc     input.mi.dx = event.delta_x();
input             259 remoting/host/input_injector_win.cc     input.mi.dy = event.delta_y();
input             260 remoting/host/input_injector_win.cc     input.mi.dwFlags |= MOUSEEVENTF_MOVE | MOUSEEVENTF_VIRTUALDESK;
input             267 remoting/host/input_injector_win.cc       input.mi.dx = static_cast<int>((x * 65535) / (width - 1));
input             268 remoting/host/input_injector_win.cc       input.mi.dy = static_cast<int>((y * 65535) / (height - 1));
input             269 remoting/host/input_injector_win.cc       input.mi.dwFlags |=
input             283 remoting/host/input_injector_win.cc       input.mi.mouseData = wheel_delta_x;
input             284 remoting/host/input_injector_win.cc       input.mi.dwFlags |= MOUSEEVENTF_HWHEEL;
input             287 remoting/host/input_injector_win.cc       input.mi.mouseData = wheel_delta_y;
input             288 remoting/host/input_injector_win.cc       input.mi.dwFlags |= MOUSEEVENTF_WHEEL;
input             307 remoting/host/input_injector_win.cc       input.mi.dwFlags |= down ? MOUSEEVENTF_LEFTDOWN : MOUSEEVENTF_LEFTUP;
input             309 remoting/host/input_injector_win.cc       input.mi.dwFlags |= down ? MOUSEEVENTF_MIDDLEDOWN : MOUSEEVENTF_MIDDLEUP;
input             311 remoting/host/input_injector_win.cc       input.mi.dwFlags |= down ? MOUSEEVENTF_RIGHTDOWN : MOUSEEVENTF_RIGHTUP;
input             313 remoting/host/input_injector_win.cc       input.mi.dwFlags |= down ? MOUSEEVENTF_LEFTDOWN : MOUSEEVENTF_LEFTUP;
input             317 remoting/host/input_injector_win.cc   if (input.mi.dwFlags) {
input             318 remoting/host/input_injector_win.cc     if (SendInput(1, &input, sizeof(INPUT)) == 0)
input             177 remoting/host/local_input_monitor_win.cc   RAWINPUT* input = reinterpret_cast<RAWINPUT*>(buffer.get());
input             190 remoting/host/local_input_monitor_win.cc   if (input->header.dwType == RIM_TYPEMOUSE &&
input             191 remoting/host/local_input_monitor_win.cc       input->header.hDevice != NULL) {
input             204 remoting/host/local_input_monitor_win.cc   return DefRawInputProc(&input, 1, sizeof(RAWINPUTHEADER));
input              48 remoting/host/native_messaging/native_messaging_channel.cc     base::PlatformFile input,
input              50 remoting/host/native_messaging/native_messaging_channel.cc     : native_messaging_reader_(DuplicatePlatformFile(input)),
input              34 remoting/host/native_messaging/native_messaging_channel.h   NativeMessagingChannel(base::PlatformFile input, base::PlatformFile output);
input              52 sandbox/win/src/handle_closer_agent.cc     base::char16* input = entry->handle_type;
input              53 sandbox/win/src/handle_closer_agent.cc     HandleMap::mapped_type& handle_names = handles_to_close_[input];
input              54 sandbox/win/src/handle_closer_agent.cc     input = reinterpret_cast<base::char16*>(reinterpret_cast<char*>(entry)
input              59 sandbox/win/src/handle_closer_agent.cc           = handle_names.insert(input);
input              61 sandbox/win/src/handle_closer_agent.cc       input += name.first->size() + 1;
input              68 sandbox/win/src/handle_closer_agent.cc     DCHECK(reinterpret_cast<base::char16*>(entry) >= input);
input              69 sandbox/win/src/handle_closer_agent.cc     DCHECK(reinterpret_cast<base::char16*>(entry) - input <
input              70 skia/ext/convolver_unittest.cc   std::vector<unsigned char> input;
input              71 skia/ext/convolver_unittest.cc   input.resize(byte_count);
input              73 skia/ext/convolver_unittest.cc   unsigned char* input_ptr = &input[0];
input              96 skia/ext/convolver_unittest.cc   std::vector<unsigned char> input;
input              97 skia/ext/convolver_unittest.cc   input.resize(src_byte_count);
input             108 skia/ext/convolver_unittest.cc     input[i] = rand() * 255 / RAND_MAX;
input             116 skia/ext/convolver_unittest.cc   BGRAConvolve2D(&input[0], src_width, true, filter_x, filter_y,
input             125 skia/ext/convolver_unittest.cc         int value = input[src_offset] +  // Top left source pixel.
input             126 skia/ext/convolver_unittest.cc                     input[src_offset + 4] +  // Top right source pixel.
input             127 skia/ext/convolver_unittest.cc                     input[src_offset + src_row_stride] +  // Lower left.
input             128 skia/ext/convolver_unittest.cc                     input[src_offset + src_row_stride + 4];  // Lower right.
input             350 skia/ext/convolver_unittest.cc   std::vector<unsigned char> input;
input             353 skia/ext/convolver_unittest.cc   input.resize(src_byte_count, 0);
input             357 skia/ext/convolver_unittest.cc   input[non_zero_pixel_index] = 255;
input             366 skia/ext/convolver_unittest.cc   SingleChannelConvolveX1D(&input[0], src_row_stride, 1, kChannelCount,
input             376 skia/ext/convolver_unittest.cc   SingleChannelConvolveY1D(&input[0], src_row_stride, 1, kChannelCount,
input             420 skia/ext/convolver_unittest.cc   std::vector<unsigned char> input(src_byte_count);
input             428 skia/ext/convolver_unittest.cc       input[i] = 255;
input             431 skia/ext/convolver_unittest.cc       input[i] = 100;
input             434 skia/ext/convolver_unittest.cc       input[i] = 200;
input             436 skia/ext/convolver_unittest.cc       input[i] = 0;
input             447 skia/ext/convolver_unittest.cc   SingleChannelConvolveX1D(&input[0], src_row_stride, 1, kChannelCount,
input             471 skia/ext/convolver_unittest.cc   SingleChannelConvolveY1D(&input[0], src_row_stride, 1, kChannelCount,
input              95 skia/ext/recursive_gaussian_convolution_unittest.cc   std::vector<unsigned char> input;
input              98 skia/ext/recursive_gaussian_convolution_unittest.cc       &input, kImgWidth, kImgHeight, kChannelIndex, kChannelCount,
input             116 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelConvolveX1D(&input[0], src_row_stride,
input             126 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             160 skia/ext/recursive_gaussian_convolution_unittest.cc   std::vector<unsigned char> input;
input             163 skia/ext/recursive_gaussian_convolution_unittest.cc       &input, kImgWidth, kImgHeight, kChannelIndex, kChannelCount,
input             177 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             213 skia/ext/recursive_gaussian_convolution_unittest.cc   std::transform(input.begin(), input.end(), input.begin(),
input             215 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             245 skia/ext/recursive_gaussian_convolution_unittest.cc   std::vector<unsigned char> input;
input             248 skia/ext/recursive_gaussian_convolution_unittest.cc       &input, kImgWidth, kImgHeight, kChannelIndex, kChannelCount,
input             265 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianX(&input[0], src_row_stride,
input             270 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             298 skia/ext/recursive_gaussian_convolution_unittest.cc   std::transform(input.begin(), input.end(), input.begin(),
input             300 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianX(&input[0], src_row_stride,
input             305 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             334 skia/ext/recursive_gaussian_convolution_unittest.cc   std::vector<unsigned char> input;
input             337 skia/ext/recursive_gaussian_convolution_unittest.cc       &input, kImgWidth, kImgHeight, kChannelIndex, kChannelCount,
input             354 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianX(&input[0], src_row_stride,
input             359 skia/ext/recursive_gaussian_convolution_unittest.cc   SingleChannelRecursiveGaussianY(&input[0], src_row_stride,
input             127 sync/internal_api/public/base/unique_position.h   static std::string Compress(const std::string& input);
input             128 sync/internal_api/public/base/unique_position.h   static std::string CompressImpl(const std::string& input);
input             393 sync/internal_api/public/base/unique_position_unittest.cc     std::string input = cache_guid_ + base::Int64ToString(next_id_--);
input             395 sync/internal_api/public/base/unique_position_unittest.cc     base::Base64Encode(base::SHA1HashString(input), &output);
input             326 sync/notifier/gcm_network_channel.cc void GCMNetworkChannel::Base64EncodeURLSafe(const std::string& input,
input             328 sync/notifier/gcm_network_channel.cc   base::Base64Encode(input, output);
input             339 sync/notifier/gcm_network_channel.cc bool GCMNetworkChannel::Base64DecodeURLSafe(const std::string& input,
input             342 sync/notifier/gcm_network_channel.cc   size_t padded_size = (input.size() + 3) - (input.size() + 3) % 4;
input             343 sync/notifier/gcm_network_channel.cc   std::string padded_input(input);
input              98 sync/notifier/gcm_network_channel.h   static void Base64EncodeURLSafe(const std::string& input,
input             100 sync/notifier/gcm_network_channel.h   static bool Base64DecodeURLSafe(const std::string& input,
input             155 sync/notifier/gcm_network_channel_unittest.cc   static void Base64EncodeURLSafe(const std::string& input,
input             157 sync/notifier/gcm_network_channel_unittest.cc     GCMNetworkChannel::Base64EncodeURLSafe(input, output);
input             160 sync/notifier/gcm_network_channel_unittest.cc   static bool Base64DecodeURLSafe(const std::string& input,
input             162 sync/notifier/gcm_network_channel_unittest.cc     return GCMNetworkChannel::Base64DecodeURLSafe(input, output);
input             383 sync/notifier/gcm_network_channel_unittest.cc   std::string input;
input             387 sync/notifier/gcm_network_channel_unittest.cc   Base64EncodeURLSafe(input, &base64);
input             390 sync/notifier/gcm_network_channel_unittest.cc   EXPECT_EQ(input, plain);
input             393 sync/notifier/gcm_network_channel_unittest.cc     input = "abra.cadabra";
input             394 sync/notifier/gcm_network_channel_unittest.cc     input.resize(length);
input             395 sync/notifier/gcm_network_channel_unittest.cc     Base64EncodeURLSafe(input, &base64);
input             399 sync/notifier/gcm_network_channel_unittest.cc     EXPECT_EQ(input, plain);
input             402 sync/notifier/gcm_network_channel_unittest.cc   input = "\xfb\xff";
input             403 sync/notifier/gcm_network_channel_unittest.cc   Base64EncodeURLSafe(input, &base64);
input             406 sync/notifier/gcm_network_channel_unittest.cc   EXPECT_EQ(input, plain);
input             195 sync/util/nigori.cc   std::string input;
input             196 sync/util/nigori.cc   if (!Base64Decode(encrypted, &input))
input             199 sync/util/nigori.cc   if (input.size() < kIvSize * 2 + kHashSize)
input             206 sync/util/nigori.cc   std::string iv(input.substr(0, kIvSize));
input             207 sync/util/nigori.cc   std::string ciphertext(input.substr(kIvSize,
input             208 sync/util/nigori.cc                                       input.size() - (kIvSize + kHashSize)));
input             209 sync/util/nigori.cc   std::string hash(input.substr(input.size() - kHashSize, kHashSize));
input             438 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+coverage).add_coverage (c->input);
input             484 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+coverage).add_coverage (c->input);
input             590 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh       c->input->add (record->secondGlyph);
input             658 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+coverage).add_coverage (c->input);
input             727 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh       klass1.add_class (c->input, i);
input             732 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh       klass2.add_class (c->input, i);
input             879 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+coverage).add_coverage (c->input);
input            1026 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+markCoverage).add_coverage (c->input);
input            1027 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+baseCoverage).add_coverage (c->input);
input            1130 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+markCoverage).add_coverage (c->input);
input            1131 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+ligatureCoverage).add_coverage (c->input);
input            1246 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+mark1Coverage).add_coverage (c->input);
input            1247 third_party/harfbuzz-ng/src/hb-ot-layout-gpos-table.hh     (this+mark2Coverage).add_coverage (c->input);
input              57 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh       c->input->add (glyph_id);
input             133 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh       c->input->add (iter.get_glyph ());
input             331 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh     (this+coverage).add_coverage (c->input);
input             462 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh       c->input->add (iter.get_glyph ());
input             606 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh       c->input->add (component[i]);
input             777 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh       c->input->add (iter.get_glyph ());
input             943 third_party/harfbuzz-ng/src/hb-ot-layout-gsub-table.hh     (this+coverage).add_coverage (c->input);
input             172 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     hb_set_t *old_input  = input;
input             174 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     before = input = after = hb_set_get_empty ();
input             181 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     input  = old_input;
input             189 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   hb_set_t *input;
input             204 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			      input  (glyphs_input  ? glyphs_input  : hb_set_get_empty ()),
input             698 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 				      const USHORT input[], /* Array of input values--start with second glyph */
input             706 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     if (likely (!match_func (c->glyphs[i], input[i - 1], match_data)))
input             713 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 				const USHORT input[], /* Array of input values--start with second glyph */
input             728 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   skippy_iter.set_match_func (match_func, match_data, input);
input            1058 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					   const USHORT input[], /* Array of input values--start with second glyph */
input            1064 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			inputCount ? inputCount - 1 : 0, input,
input            1072 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						  const USHORT input[], /* Array of input values--start with second glyph */
input            1077 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   collect_array (c, c->input,
input            1078 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 		 inputCount ? inputCount - 1 : 0, input,
input            1086 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					       const USHORT input[], /* Array of input values--start with second glyph */
input            1092 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			    inputCount, input,
input            1097 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					 const USHORT input[], /* Array of input values--start with second glyph */
input            1105 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 		      inputCount, input,
input            1119 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
input            1121 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			    inputCount, input,
input            1129 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
input            1131 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 				   inputCount, input,
input            1139 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
input            1140 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     return TRACE_RETURN (context_would_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context));
input            1146 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0));
input            1147 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     return TRACE_RETURN (context_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context));
input            1155 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 	&& c->check_range (input,
input            1156 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			   input[0].static_size * inputCount
input            1165 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   USHORT	input[VAR];		/* Array of match inputs--start with
input            1170 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   DEFINE_SIZE_ARRAY2 (4, input, lookupRecordX);
input            1253 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+coverage).add_coverage (c->input);
input            1341 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+coverage).add_coverage (c->input);
input            1432 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+coverage[0]).add_coverage (c->input);
input            1561 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						 const USHORT input[], /* Array of input values--start with second glyph */
input            1572 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			inputCount ? inputCount - 1 : 0, input,
input            1585 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						        const USHORT input[], /* Array of input values--start with second glyph */
input            1595 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh   collect_array (c, c->input,
input            1596 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 		 inputCount ? inputCount - 1 : 0, input,
input            1609 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						     const USHORT input[], /* Array of input values--start with second glyph */
input            1618 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 			    inputCount, input,
input            1626 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					       const USHORT input[], /* Array of input values--start with second glyph */
input            1636 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 		      inputCount, input,
input            1657 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
input            1658 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
input            1662 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 				  input.len, input.array,
input            1671 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
input            1672 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
input            1676 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					 input.len, input.array,
input            1685 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
input            1686 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
input            1690 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 							   input.len, input.array,
input            1698 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
input            1699 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
input            1703 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						     input.len, input.array,
input            1711 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack);
input            1712 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     if (!input.sanitize (c)) return TRACE_RETURN (false);
input            1713 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input);
input            1813 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+coverage).add_coverage (c->input);
input            1903 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+coverage).add_coverage (c->input);
input            2002 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2004 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     if (!(this+input[0]).intersects (c->glyphs))
input            2007 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
input            2015 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 				  input.len, (const USHORT *) input.array + 1,
input            2024 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2026 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     (this+input[0]).add_coverage (c->input);
input            2028 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
input            2036 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 					 input.len, (const USHORT *) input.array + 1,
input            2046 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2047 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
input            2055 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 							   input.len, (const USHORT *) input.array + 1,
input            2062 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2063 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     return this+input[0];
input            2069 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2071 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     unsigned int index = (this+input[0]).get_coverage (c->buffer->cur().codepoint);
input            2074 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
input            2082 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh 						     input.len, (const USHORT *) input.array + 1,
input            2090 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack);
input            2091 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     if (!input.sanitize (c, this)) return TRACE_RETURN (false);
input            2092 third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh     OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input);
input             210 third_party/harfbuzz-ng/src/hb-ot-layout.h   const hb_codepoint_t *input,
input              76 third_party/leveldatabase/port/port_chromium.cc bool Snappy_Compress(const char* input, size_t input_length,
input              81 third_party/leveldatabase/port/port_chromium.cc   snappy::RawCompress(input, input_length, &(*output)[0], &outlen);
input             107 third_party/leveldatabase/port/port_chromium.h bool Snappy_Compress(const char* input, size_t input_length,
input             109 third_party/leveldatabase/port/port_chromium.h bool Snappy_GetUncompressedLength(const char* input, size_t length,
input              21 third_party/libaddressinput/chromium/chrome_rule_test.cc     const wchar_t* input;
input              50 third_party/libaddressinput/chromium/chrome_rule_test.cc     const std::string input(base::WideToUTF8(expectations[i].input));
input              54 third_party/libaddressinput/chromium/chrome_rule_test.cc               rule.CanonicalizeSubKey(input, &output))
input              55 third_party/libaddressinput/chromium/chrome_rule_test.cc         << "Failed for input " << input;
input             111 third_party/libevent/evbuffer.c 		howmuch = bufev->wm_read.high - EVBUFFER_LENGTH(bufev->input);
input             114 third_party/libevent/evbuffer.c 			struct evbuffer *buf = bufev->input;
input             122 third_party/libevent/evbuffer.c 	res = evbuffer_read(bufev->input, fd, howmuch);
input             139 third_party/libevent/evbuffer.c 	len = EVBUFFER_LENGTH(bufev->input);
input             143 third_party/libevent/evbuffer.c 		struct evbuffer *buf = bufev->input;
input             242 third_party/libevent/evbuffer.c 	if ((bufev->input = evbuffer_new()) == NULL) {
input             248 third_party/libevent/evbuffer.c 		evbuffer_free(bufev->input);
input             314 third_party/libevent/evbuffer.c 	evbuffer_free(bufev->input);
input             357 third_party/libevent/evbuffer.c 	struct evbuffer *buf = bufev->input;
input             438 third_party/libevent/evbuffer.c 	bufferevent_read_pressure_cb(bufev->input,
input             439 third_party/libevent/evbuffer.c 	    0, EVBUFFER_LENGTH(bufev->input), bufev);
input             761 third_party/libevent/event.h 	struct evbuffer *input;
input             966 third_party/libevent/event.h #define EVBUFFER_INPUT(x)	(x)->input
input            1084 third_party/libevent/test/regress.c 	if (EVBUFFER_LENGTH(bev->input) == 8333) {
input            1141 third_party/libevent/test/regress.c 	int len = EVBUFFER_LENGTH(bev->input);
input            1146 third_party/libevent/test/regress.c 	evbuffer_drain(bev->input, len);
input             165 third_party/libevent/test/regress_http.c  	event_debug(("%s: %s\n", __func__, EVBUFFER_DATA(bev->input)));
input             167 third_party/libevent/test/regress_http.c 	if (evbuffer_find(bev->input,
input             173 third_party/libevent/test/regress_http.c 		done = evhttp_parse_firstline(req, bev->input);
input             177 third_party/libevent/test/regress_http.c 		done = evhttp_parse_headers(req, bev->input);
input             798 third_party/libevent/test/regress_http.c 	if (evbuffer_find(bev->input, (const unsigned char*) what, strlen(what)) != NULL) {
input             162 third_party/libjingle/overrides/talk/base/logging.cc void LogMultiline(LoggingSeverity level, const char* label, bool input,
input             168 third_party/libjingle/overrides/talk/base/logging.cc   const char * direction = (input ? " << " : " >> ");
input             172 third_party/libjingle/overrides/talk/base/logging.cc     if (state && state->unprintable_count_[input]) {
input             174 third_party/libjingle/overrides/talk/base/logging.cc                    << state->unprintable_count_[input]
input             176 third_party/libjingle/overrides/talk/base/logging.cc       state->unprintable_count_[input] = 0;
input             207 third_party/libjingle/overrides/talk/base/logging.cc   size_t consecutive_unprintable = state ? state->unprintable_count_[input] : 0;
input             275 third_party/libjingle/overrides/talk/base/logging.cc     state->unprintable_count_[input] = consecutive_unprintable;
input             149 third_party/libjingle/overrides/talk/base/logging.h void LogMultiline(LoggingSeverity level, const char* label, bool input,
input             166 third_party/libpng/pngwutil.c    char *input;   /* The uncompressed input data */
input             184 third_party/libpng/pngwutil.c    comp->input = NULL;
input             190 third_party/libpng/pngwutil.c        comp->input = text;
input             358 third_party/libpng/pngwutil.c    if (comp->input)
input             360 third_party/libpng/pngwutil.c       png_write_chunk_data(png_ptr, (png_bytep)comp->input,
input             785 third_party/libpng/pngwutil.c    comp.input = NULL;
input            1408 third_party/libpng/pngwutil.c    comp.input = NULL;
input            1469 third_party/libpng/pngwutil.c    comp.input = NULL;
input             597 third_party/libwebp/dec/idec.c     if (WebPGetFeatures(data, data_size, &config->input) != VP8_STATUS_OK) {
input             709 third_party/libwebp/dec/webp.c   DefaultFeatures(&config->input);
input             735 third_party/libwebp/dec/webp.c   status = GetFeatures(data, data_size, &config->input);
input             454 third_party/libwebp/webp/decode.h   WebPBitstreamFeatures input;  // Immutable bitstream features (optional)
input              25 third_party/libxml/chromium/libxml_utils.cc bool XmlReader::Load(const std::string& input) {
input              30 third_party/libxml/chromium/libxml_utils.cc   reader_ = xmlReaderForMemory(input.data(), static_cast<int>(input.size()),
input              47 third_party/libxml/chromium/libxml_utils.h   bool Load(const std::string& input);
input             294 third_party/libxml/src/HTMLparser.c #define UPPER (toupper(*ctxt->input->cur))
input             296 third_party/libxml/src/HTMLparser.c #define SKIP(val) ctxt->nbChars += (val),ctxt->input->cur += (val),ctxt->input->col+=(val)
input             298 third_party/libxml/src/HTMLparser.c #define NXT(val) ctxt->input->cur[(val)]
input             300 third_party/libxml/src/HTMLparser.c #define UPP(val) (toupper(ctxt->input->cur[(val)]))
input             302 third_party/libxml/src/HTMLparser.c #define CUR_PTR ctxt->input->cur
input             304 third_party/libxml/src/HTMLparser.c #define SHRINK if ((ctxt->input->cur - ctxt->input->base > 2 * INPUT_CHUNK) && \
input             305 third_party/libxml/src/HTMLparser.c 		   (ctxt->input->end - ctxt->input->cur < 2 * INPUT_CHUNK)) \
input             306 third_party/libxml/src/HTMLparser.c 	xmlParserInputShrink(ctxt->input)
input             309 third_party/libxml/src/HTMLparser.c 		 (ctxt->input->end - ctxt->input->cur < INPUT_CHUNK))	\
input             310 third_party/libxml/src/HTMLparser.c 	xmlParserInputGrow(ctxt->input, INPUT_CHUNK)
input             312 third_party/libxml/src/HTMLparser.c #define CURRENT ((int) (*ctxt->input->cur))
input             319 third_party/libxml/src/HTMLparser.c #define CUR ((int) (*ctxt->input->cur))
input             322 third_party/libxml/src/HTMLparser.c #define RAW (ctxt->token ? -1 : (*ctxt->input->cur))
input             326 third_party/libxml/src/HTMLparser.c     if (*(ctxt->input->cur) == '\n') {					\
input             327 third_party/libxml/src/HTMLparser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
input             328 third_party/libxml/src/HTMLparser.c     } else ctxt->input->col++;						\
input             329 third_party/libxml/src/HTMLparser.c     ctxt->token = 0; ctxt->input->cur += l; ctxt->nbChars++;		\
input             363 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL) ||
input             364 third_party/libxml/src/HTMLparser.c         (ctxt->input->encoding != NULL) || (ctxt->input->buf == NULL) ||
input             365 third_party/libxml/src/HTMLparser.c         (ctxt->input->buf->encoder != NULL))
input             367 third_party/libxml/src/HTMLparser.c     if ((ctxt->input->cur == NULL) || (ctxt->input->end == NULL))
input             370 third_party/libxml/src/HTMLparser.c     start = ctxt->input->cur;
input             371 third_party/libxml/src/HTMLparser.c     end = ctxt->input->end;
input             432 third_party/libxml/src/HTMLparser.c 	const unsigned char *cur = ctxt->input->cur;
input             439 third_party/libxml/src/HTMLparser.c 		xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             440 third_party/libxml/src/HTMLparser.c                 cur = ctxt->input->cur;
input             447 third_party/libxml/src/HTMLparser.c 		    xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             448 third_party/libxml/src/HTMLparser.c                     cur = ctxt->input->cur;
input             454 third_party/libxml/src/HTMLparser.c 			xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             455 third_party/libxml/src/HTMLparser.c                         cur = ctxt->input->cur;
input             485 third_party/libxml/src/HTMLparser.c             if ((*ctxt->input->cur == 0) &&
input             486 third_party/libxml/src/HTMLparser.c                 (ctxt->input->cur < ctxt->input->end)) {
input             494 third_party/libxml/src/HTMLparser.c 	    return((int) *ctxt->input->cur);
input             503 third_party/libxml/src/HTMLparser.c     if ((int) *ctxt->input->cur < 0x80)
input             504 third_party/libxml/src/HTMLparser.c 	return((int) *ctxt->input->cur);
input             517 third_party/libxml/src/HTMLparser.c             if (ctxt->input->encoding != NULL)
input             518 third_party/libxml/src/HTMLparser.c                 xmlFree((xmlChar *) ctxt->input->encoding);
input             519 third_party/libxml/src/HTMLparser.c             ctxt->input->encoding = guess;
input             544 third_party/libxml/src/HTMLparser.c 	if (ctxt->input->end - ctxt->input->cur >= 4) {
input             546 third_party/libxml/src/HTMLparser.c 			    ctxt->input->cur[0], ctxt->input->cur[1],
input             547 third_party/libxml/src/HTMLparser.c 			    ctxt->input->cur[2], ctxt->input->cur[3]);
input             549 third_party/libxml/src/HTMLparser.c 	    snprintf(buffer, 149, "Bytes: 0x%02X\n", ctxt->input->cur[0]);
input             558 third_party/libxml/src/HTMLparser.c     return((int) *ctxt->input->cur);
input             574 third_party/libxml/src/HTMLparser.c     while (IS_BLANK_CH(*(ctxt->input->cur))) {
input             575 third_party/libxml/src/HTMLparser.c 	if ((*ctxt->input->cur == 0) &&
input             576 third_party/libxml/src/HTMLparser.c 	    (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0)) {
input             579 third_party/libxml/src/HTMLparser.c 	    if (*(ctxt->input->cur) == '\n') {
input             580 third_party/libxml/src/HTMLparser.c 		ctxt->input->line++; ctxt->input->col = 1;
input             581 third_party/libxml/src/HTMLparser.c 	    } else ctxt->input->col++;
input             582 third_party/libxml/src/HTMLparser.c 	    ctxt->input->cur++;
input             584 third_party/libxml/src/HTMLparser.c 	    if (*ctxt->input->cur == 0)
input             585 third_party/libxml/src/HTMLparser.c 		xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input            2147 third_party/libxml/src/HTMLparser.c     htmlParserInputPtr input;
input            2149 third_party/libxml/src/HTMLparser.c     input = (xmlParserInputPtr) xmlMalloc(sizeof(htmlParserInput));
input            2150 third_party/libxml/src/HTMLparser.c     if (input == NULL) {
input            2154 third_party/libxml/src/HTMLparser.c     memset(input, 0, sizeof(htmlParserInput));
input            2155 third_party/libxml/src/HTMLparser.c     input->filename = NULL;
input            2156 third_party/libxml/src/HTMLparser.c     input->directory = NULL;
input            2157 third_party/libxml/src/HTMLparser.c     input->base = NULL;
input            2158 third_party/libxml/src/HTMLparser.c     input->cur = NULL;
input            2159 third_party/libxml/src/HTMLparser.c     input->buf = NULL;
input            2160 third_party/libxml/src/HTMLparser.c     input->line = 1;
input            2161 third_party/libxml/src/HTMLparser.c     input->col = 1;
input            2162 third_party/libxml/src/HTMLparser.c     input->buf = NULL;
input            2163 third_party/libxml/src/HTMLparser.c     input->free = NULL;
input            2164 third_party/libxml/src/HTMLparser.c     input->version = NULL;
input            2165 third_party/libxml/src/HTMLparser.c     input->consumed = 0;
input            2166 third_party/libxml/src/HTMLparser.c     input->length = 0;
input            2167 third_party/libxml/src/HTMLparser.c     return(input);
input            2423 third_party/libxml/src/HTMLparser.c     in = ctxt->input->cur;
input            2435 third_party/libxml/src/HTMLparser.c 	    count = in - ctxt->input->cur;
input            2436 third_party/libxml/src/HTMLparser.c 	    ret = xmlDictLookup(ctxt->dict, ctxt->input->cur, count);
input            2437 third_party/libxml/src/HTMLparser.c 	    ctxt->input->cur = in;
input            2439 third_party/libxml/src/HTMLparser.c 	    ctxt->input->col += count;
input            2477 third_party/libxml/src/HTMLparser.c     return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
input            2638 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) return(NULL);
input            2855 third_party/libxml/src/HTMLparser.c                 if (xmlStrncasecmp(ctxt->name, ctxt->input->cur+2,
input            3260 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            3453 third_party/libxml/src/HTMLparser.c     if (ctxt->input->encoding != NULL)
input            3470 third_party/libxml/src/HTMLparser.c 	if (ctxt->input->encoding != NULL)
input            3471 third_party/libxml/src/HTMLparser.c 	    xmlFree((xmlChar *) ctxt->input->encoding);
input            3472 third_party/libxml/src/HTMLparser.c 	ctxt->input->encoding = xmlStrdup(encoding);
input            3483 third_party/libxml/src/HTMLparser.c 		(ctxt->input->buf != NULL) &&
input            3484 third_party/libxml/src/HTMLparser.c 		(ctxt->input->buf->encoder == NULL)) {
input            3505 third_party/libxml/src/HTMLparser.c 	if ((ctxt->input->buf != NULL) &&
input            3506 third_party/libxml/src/HTMLparser.c 	    (ctxt->input->buf->encoder != NULL) &&
input            3507 third_party/libxml/src/HTMLparser.c 	    (ctxt->input->buf->raw != NULL) &&
input            3508 third_party/libxml/src/HTMLparser.c 	    (ctxt->input->buf->buffer != NULL)) {
input            3515 third_party/libxml/src/HTMLparser.c 	    processed = ctxt->input->cur - ctxt->input->base;
input            3516 third_party/libxml/src/HTMLparser.c 	    xmlBufferShrink(ctxt->input->buf->buffer, processed);
input            3517 third_party/libxml/src/HTMLparser.c 	    nbchars = xmlCharEncInFunc(ctxt->input->buf->encoder,
input            3518 third_party/libxml/src/HTMLparser.c 		                       ctxt->input->buf->buffer,
input            3519 third_party/libxml/src/HTMLparser.c 				       ctxt->input->buf->raw);
input            3525 third_party/libxml/src/HTMLparser.c 	    ctxt->input->base =
input            3526 third_party/libxml/src/HTMLparser.c 	    ctxt->input->cur = ctxt->input->buf->buffer->content;
input            3527 third_party/libxml/src/HTMLparser.c             ctxt->input->end =
input            3528 third_party/libxml/src/HTMLparser.c                           &ctxt->input->base[ctxt->input->buf->buffer->use];
input            3600 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            4148 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            4159 third_party/libxml/src/HTMLparser.c         node_info.begin_pos = ctxt->input->consumed +
input            4160 third_party/libxml/src/HTMLparser.c                           (CUR_PTR - ctxt->input->base);
input            4161 third_party/libxml/src/HTMLparser.c 	node_info.begin_line = ctxt->input->line;
input            4210 third_party/libxml/src/HTMLparser.c 	   node_info.end_pos = ctxt->input->consumed +
input            4211 third_party/libxml/src/HTMLparser.c 			      (CUR_PTR - ctxt->input->base);
input            4212 third_party/libxml/src/HTMLparser.c 	   node_info.end_line = ctxt->input->line;
input            4235 third_party/libxml/src/HTMLparser.c 	oldptr = ctxt->input->cur;
input            4237 third_party/libxml/src/HTMLparser.c 	if (oldptr==ctxt->input->cur) break;
input            4245 third_party/libxml/src/HTMLparser.c        node_info.end_pos = ctxt->input->consumed +
input            4246 third_party/libxml/src/HTMLparser.c                           (CUR_PTR - ctxt->input->base);
input            4247 third_party/libxml/src/HTMLparser.c        node_info.end_line = ctxt->input->line;
input            4265 third_party/libxml/src/HTMLparser.c        ctxt->nodeInfo->end_pos = ctxt->input->consumed +
input            4266 third_party/libxml/src/HTMLparser.c                                 (CUR_PTR - ctxt->input->base);
input            4267 third_party/libxml/src/HTMLparser.c        ctxt->nodeInfo->end_line = ctxt->input->line;
input            4295 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            4306 third_party/libxml/src/HTMLparser.c         node_info.begin_pos = ctxt->input->consumed +
input            4307 third_party/libxml/src/HTMLparser.c                           (CUR_PTR - ctxt->input->base);
input            4308 third_party/libxml/src/HTMLparser.c 	node_info.begin_line = ctxt->input->line;
input            4575 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            4590 third_party/libxml/src/HTMLparser.c         ((ctxt->input->end - ctxt->input->cur) >= 4)) {
input            4729 third_party/libxml/src/HTMLparser.c 	ctxt->input = NULL;
input            4734 third_party/libxml/src/HTMLparser.c     ctxt->input = NULL;
input            4749 third_party/libxml/src/HTMLparser.c 	ctxt->input = NULL;
input            4768 third_party/libxml/src/HTMLparser.c 	ctxt->input = NULL;
input            4855 third_party/libxml/src/HTMLparser.c     xmlParserInputPtr input;
input            4870 third_party/libxml/src/HTMLparser.c     input = xmlNewInputStream(ctxt);
input            4871 third_party/libxml/src/HTMLparser.c     if (input == NULL) {
input            4876 third_party/libxml/src/HTMLparser.c     input->filename = NULL;
input            4877 third_party/libxml/src/HTMLparser.c     input->buf = buf;
input            4878 third_party/libxml/src/HTMLparser.c     input->base = input->buf->buffer->content;
input            4879 third_party/libxml/src/HTMLparser.c     input->cur = input->buf->buffer->content;
input            4880 third_party/libxml/src/HTMLparser.c     input->end = &input->buf->buffer->content[input->buf->buffer->use];
input            4882 third_party/libxml/src/HTMLparser.c     inputPush(ctxt, input);
input            4913 third_party/libxml/src/HTMLparser.c 	if (ctxt->input->encoding != NULL)
input            4914 third_party/libxml/src/HTMLparser.c 	    xmlFree((xmlChar *) ctxt->input->encoding);
input            4915 third_party/libxml/src/HTMLparser.c 	ctxt->input->encoding = xmlStrdup((const xmlChar *) encoding);
input            4982 third_party/libxml/src/HTMLparser.c     in = ctxt->input;
input            5109 third_party/libxml/src/HTMLparser.c     in = ctxt->input;
input            5229 third_party/libxml/src/HTMLparser.c 	in = ctxt->input;
input            5900 third_party/libxml/src/HTMLparser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) {
input            5905 third_party/libxml/src/HTMLparser.c     if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
input            5906 third_party/libxml/src/HTMLparser.c         (ctxt->input->buf != NULL) && (ctxt->instate != XML_PARSER_EOF))  {
input            5907 third_party/libxml/src/HTMLparser.c 	int base = ctxt->input->base - ctxt->input->buf->buffer->content;
input            5908 third_party/libxml/src/HTMLparser.c 	int cur = ctxt->input->cur - ctxt->input->base;
input            5911 third_party/libxml/src/HTMLparser.c 	res = xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
input            5917 third_party/libxml/src/HTMLparser.c 	ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            5918 third_party/libxml/src/HTMLparser.c 	ctxt->input->cur = ctxt->input->base + cur;
input            5919 third_party/libxml/src/HTMLparser.c 	ctxt->input->end =
input            5920 third_party/libxml/src/HTMLparser.c 	  &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
input            5926 third_party/libxml/src/HTMLparser.c 	if ((terminate) || (ctxt->input->buf->buffer->use > 80))
input            5930 third_party/libxml/src/HTMLparser.c 	if ((ctxt->input != NULL) && ctxt->input->buf != NULL) {
input            5931 third_party/libxml/src/HTMLparser.c 	    xmlParserInputBufferPtr in = ctxt->input->buf;
input            6042 third_party/libxml/src/HTMLparser.c     if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
input            6043 third_party/libxml/src/HTMLparser.c         (ctxt->input->buf != NULL))  {
input            6044 third_party/libxml/src/HTMLparser.c 	int base = ctxt->input->base - ctxt->input->buf->buffer->content;
input            6045 third_party/libxml/src/HTMLparser.c 	int cur = ctxt->input->cur - ctxt->input->base;
input            6047 third_party/libxml/src/HTMLparser.c 	xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
input            6049 third_party/libxml/src/HTMLparser.c 	ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            6050 third_party/libxml/src/HTMLparser.c 	ctxt->input->cur = ctxt->input->base + cur;
input            6051 third_party/libxml/src/HTMLparser.c 	ctxt->input->end =
input            6052 third_party/libxml/src/HTMLparser.c 	    &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
input            6400 third_party/libxml/src/HTMLparser.c     xmlParserInputPtr input;
input            6409 third_party/libxml/src/HTMLparser.c     while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
input            6410 third_party/libxml/src/HTMLparser.c         xmlFreeInputStream(input);
input            6413 third_party/libxml/src/HTMLparser.c     ctxt->input = NULL;
input            6563 third_party/libxml/src/HTMLparser.c 	    if (ctxt->input->encoding != NULL)
input            6564 third_party/libxml/src/HTMLparser.c 	      xmlFree((xmlChar *) ctxt->input->encoding);
input            6565 third_party/libxml/src/HTMLparser.c             ctxt->input->encoding = xmlStrdup((xmlChar *)encoding);
input            6568 third_party/libxml/src/HTMLparser.c     if ((URL != NULL) && (ctxt->input != NULL) &&
input            6569 third_party/libxml/src/HTMLparser.c         (ctxt->input->filename == NULL))
input            6570 third_party/libxml/src/HTMLparser.c         ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
input            6674 third_party/libxml/src/HTMLparser.c     xmlParserInputBufferPtr input;
input            6681 third_party/libxml/src/HTMLparser.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            6682 third_party/libxml/src/HTMLparser.c     if (input == NULL)
input            6686 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input            6689 third_party/libxml/src/HTMLparser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            6691 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input            6717 third_party/libxml/src/HTMLparser.c     xmlParserInputBufferPtr input;
input            6724 third_party/libxml/src/HTMLparser.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            6726 third_party/libxml/src/HTMLparser.c     if (input == NULL)
input            6730 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input            6733 third_party/libxml/src/HTMLparser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            6735 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input            6828 third_party/libxml/src/HTMLparser.c     xmlParserInputBufferPtr input;
input            6838 third_party/libxml/src/HTMLparser.c     input = xmlParserInputBufferCreateMem(buffer, size, XML_CHAR_ENCODING_NONE);
input            6839 third_party/libxml/src/HTMLparser.c     if (input == NULL) {
input            6843 third_party/libxml/src/HTMLparser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            6845 third_party/libxml/src/HTMLparser.c 	xmlFreeParserInputBuffer(input);
input            6870 third_party/libxml/src/HTMLparser.c     xmlParserInputBufferPtr input;
input            6881 third_party/libxml/src/HTMLparser.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            6882 third_party/libxml/src/HTMLparser.c     if (input == NULL)
input            6884 third_party/libxml/src/HTMLparser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            6886 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input            6914 third_party/libxml/src/HTMLparser.c     xmlParserInputBufferPtr input;
input            6924 third_party/libxml/src/HTMLparser.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            6926 third_party/libxml/src/HTMLparser.c     if (input == NULL)
input            6928 third_party/libxml/src/HTMLparser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            6930 third_party/libxml/src/HTMLparser.c         xmlFreeParserInputBuffer(input);
input             242 third_party/libxml/src/SAX2.c     if ((ctx == NULL) || (ctxt->input == NULL)) return(NULL);
input             243 third_party/libxml/src/SAX2.c     return((const xmlChar *) ctxt->input->filename); 
input             258 third_party/libxml/src/SAX2.c     if ((ctx == NULL) || (ctxt->input == NULL)) return(0);
input             259 third_party/libxml/src/SAX2.c     return(ctxt->input->line);
input             274 third_party/libxml/src/SAX2.c     if ((ctx == NULL) || (ctxt->input == NULL)) return(0);
input             275 third_party/libxml/src/SAX2.c     return(ctxt->input->col);
input             394 third_party/libxml/src/SAX2.c 	xmlParserInputPtr input = NULL;
input             402 third_party/libxml/src/SAX2.c 	    input = ctxt->sax->resolveEntity(ctxt->userData, ExternalID,
input             404 third_party/libxml/src/SAX2.c 	if (input == NULL) {
input             413 third_party/libxml/src/SAX2.c 	oldinput = ctxt->input;
input             423 third_party/libxml/src/SAX2.c 	    ctxt->input = oldinput;
input             432 third_party/libxml/src/SAX2.c 	ctxt->input = NULL;
input             433 third_party/libxml/src/SAX2.c 	xmlPushInput(ctxt, input);
input             438 third_party/libxml/src/SAX2.c 	if (ctxt->input->length >= 4) {
input             439 third_party/libxml/src/SAX2.c 	    enc = xmlDetectCharEncoding(ctxt->input->cur, 4);
input             443 third_party/libxml/src/SAX2.c 	if (input->filename == NULL)
input             444 third_party/libxml/src/SAX2.c 	    input->filename = (char *) xmlCanonicPath(SystemID);
input             445 third_party/libxml/src/SAX2.c 	input->line = 1;
input             446 third_party/libxml/src/SAX2.c 	input->col = 1;
input             447 third_party/libxml/src/SAX2.c 	input->base = ctxt->input->cur;
input             448 third_party/libxml/src/SAX2.c 	input->cur = ctxt->input->cur;
input             449 third_party/libxml/src/SAX2.c 	input->free = NULL;
input             462 third_party/libxml/src/SAX2.c 	xmlFreeInputStream(ctxt->input);
input             468 third_party/libxml/src/SAX2.c 	ctxt->input = oldinput;
input             500 third_party/libxml/src/SAX2.c     if (ctxt->input != NULL)
input             501 third_party/libxml/src/SAX2.c 	base = ctxt->input->filename;
input             656 third_party/libxml/src/SAX2.c 	    if (ctxt->input != NULL)
input             657 third_party/libxml/src/SAX2.c 		base = ctxt->input->filename;
input             675 third_party/libxml/src/SAX2.c 	    if (ctxt->input != NULL)
input             676 third_party/libxml/src/SAX2.c 		base = ctxt->input->filename;
input             892 third_party/libxml/src/SAX2.c 	    if (ctxt->input != NULL)
input             893 third_party/libxml/src/SAX2.c 		base = ctxt->input->filename;
input             912 third_party/libxml/src/SAX2.c 	    if (ctxt->input != NULL)
input             913 third_party/libxml/src/SAX2.c 		base = ctxt->input->filename;
input            1003 third_party/libxml/src/SAX2.c 	(ctxt->input != NULL) && (ctxt->input->filename != NULL)) {
input            1004 third_party/libxml/src/SAX2.c 	ctxt->myDoc->URL = xmlPathToURI((const xmlChar *)ctxt->input->filename);
input            1611 third_party/libxml/src/SAX2.c 	if (ctxt->input != NULL) {
input            1612 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
input            1613 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
input            1773 third_party/libxml/src/SAX2.c       node_info.end_pos = ctxt->input->cur - ctxt->input->base;
input            1774 third_party/libxml/src/SAX2.c       node_info.end_line = ctxt->input->line;
input            1869 third_party/libxml/src/SAX2.c     if (ctxt->input != NULL)
input            1870 third_party/libxml/src/SAX2.c         ret->line = ctxt->input->line;
input            2217 third_party/libxml/src/SAX2.c 	if (ctxt->input != NULL) {
input            2218 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
input            2219 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
input            2361 third_party/libxml/src/SAX2.c         node_info.end_pos = ctxt->input->cur - ctxt->input->base;
input            2362 third_party/libxml/src/SAX2.c         node_info.end_line = ctxt->input->line;
input            2580 third_party/libxml/src/SAX2.c 	if (ctxt->input != NULL) {
input            2581 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
input            2582 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
input            2640 third_party/libxml/src/SAX2.c 	if (ctxt->input != NULL) {
input            2641 third_party/libxml/src/SAX2.c 	    if (ctxt->input->line < 65535)
input            2642 third_party/libxml/src/SAX2.c 		ret->line = (short) ctxt->input->line;
input             105 third_party/libxml/src/c14n.c static xmlChar *xmlC11NNormalizeString(const xmlChar * input,
input            2144 third_party/libxml/src/c14n.c xmlC11NNormalizeString(const xmlChar * input,
input            2147 third_party/libxml/src/c14n.c     const xmlChar *cur = input;
input            2152 third_party/libxml/src/c14n.c     if (input == NULL)
input            2800 third_party/libxml/src/debugXML.c xmlShell(xmlDocPtr doc, char *filename, xmlShellReadlineFunc input,
input            2815 third_party/libxml/src/debugXML.c     if (input == NULL)
input            2824 third_party/libxml/src/debugXML.c     ctxt->input = input;
input            2848 third_party/libxml/src/debugXML.c         cmdline = ctxt->input(prompt);
input            1306 third_party/libxml/src/encoding.c                           xmlCharEncodingInputFunc input,
input            1350 third_party/libxml/src/encoding.c     handler->input = input;
input            1692 third_party/libxml/src/encoding.c 	    enc->input = NULL;
input            1719 third_party/libxml/src/encoding.c 	    enc->input = NULL;
input            1950 third_party/libxml/src/encoding.c     if (handler->input != NULL) {
input            1951 third_party/libxml/src/encoding.c 	ret = handler->input(&out->content[out->use], &written,
input            2064 third_party/libxml/src/encoding.c     if (handler->input != NULL) {
input            2065 third_party/libxml/src/encoding.c         ret = handler->input(&out->content[out->use], &written,
input            2427 third_party/libxml/src/encoding.c     in = ctxt->input;
input             554 third_party/libxml/src/entities.c xmlEncodeEntitiesReentrant(xmlDocPtr doc, const xmlChar *input) {
input             555 third_party/libxml/src/entities.c     const xmlChar *cur = input;
input             561 third_party/libxml/src/entities.c     if (input == NULL) return(NULL);
input             708 third_party/libxml/src/entities.c xmlEncodeSpecialChars(xmlDocPtr doc ATTRIBUTE_UNUSED, const xmlChar *input) {
input             709 third_party/libxml/src/entities.c     const xmlChar *cur = input;
input             713 third_party/libxml/src/entities.c     if (input == NULL) return(NULL);
input             153 third_party/libxml/src/error.c xmlParserPrintFileInfo(xmlParserInputPtr input) {
input             154 third_party/libxml/src/error.c     if (input != NULL) {
input             155 third_party/libxml/src/error.c 	if (input->filename)
input             157 third_party/libxml/src/error.c 		    "%s:%d: ", input->filename,
input             158 third_party/libxml/src/error.c 		    input->line);
input             161 third_party/libxml/src/error.c 		    "Entity: line %d: ", input->line);
input             173 third_party/libxml/src/error.c xmlParserPrintFileContextInternal(xmlParserInputPtr input , 
input             180 third_party/libxml/src/error.c     if (input == NULL) return;
input             181 third_party/libxml/src/error.c     cur = input->cur;
input             182 third_party/libxml/src/error.c     base = input->base;
input             194 third_party/libxml/src/error.c     col = input->cur - cur;
input             228 third_party/libxml/src/error.c xmlParserPrintFileContext(xmlParserInputPtr input) {
input             229 third_party/libxml/src/error.c    xmlParserPrintFileContextInternal(input, xmlGenericError,
input             253 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             280 third_party/libxml/src/error.c         input = ctxt->input;
input             281 third_party/libxml/src/error.c         if ((input != NULL) && (input->filename == NULL) &&
input             283 third_party/libxml/src/error.c             cur = input;
input             284 third_party/libxml/src/error.c             input = ctxt->inputTab[ctxt->inputNr - 2];
input             286 third_party/libxml/src/error.c         if (input != NULL) {
input             287 third_party/libxml/src/error.c             if (input->filename)
input             288 third_party/libxml/src/error.c                 channel(data, "%s:%d: ", input->filename, input->line);
input             290 third_party/libxml/src/error.c                 channel(data, "Entity: line %d: ", input->line);
input             392 third_party/libxml/src/error.c         xmlParserPrintFileContextInternal(input, channel, data);
input             451 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             500 third_party/libxml/src/error.c             input = ctxt->input;
input             501 third_party/libxml/src/error.c             if ((input != NULL) && (input->filename == NULL) &&
input             503 third_party/libxml/src/error.c                 input = ctxt->inputTab[ctxt->inputNr - 2];
input             505 third_party/libxml/src/error.c             if (input != NULL) {
input             506 third_party/libxml/src/error.c                 file = input->filename;
input             507 third_party/libxml/src/error.c                 line = input->line;
input             508 third_party/libxml/src/error.c                 col = input->col;
input             675 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             680 third_party/libxml/src/error.c 	input = ctxt->input;
input             681 third_party/libxml/src/error.c 	if ((input != NULL) && (input->filename == NULL) &&
input             683 third_party/libxml/src/error.c 	    cur = input;
input             684 third_party/libxml/src/error.c 	    input = ctxt->inputTab[ctxt->inputNr - 2];
input             686 third_party/libxml/src/error.c 	xmlParserPrintFileInfo(input);
input             696 third_party/libxml/src/error.c 	xmlParserPrintFileContext(input);
input             718 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             723 third_party/libxml/src/error.c 	input = ctxt->input;
input             724 third_party/libxml/src/error.c 	if ((input != NULL) && (input->filename == NULL) &&
input             726 third_party/libxml/src/error.c 	    cur = input;
input             727 third_party/libxml/src/error.c 	    input = ctxt->inputTab[ctxt->inputNr - 2];
input             729 third_party/libxml/src/error.c 	xmlParserPrintFileInfo(input);
input             739 third_party/libxml/src/error.c 	xmlParserPrintFileContext(input);
input             767 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             774 third_party/libxml/src/error.c 	    input = ctxt->input;
input             775 third_party/libxml/src/error.c 	    if ((input->filename == NULL) && (ctxt->inputNr > 1))
input             776 third_party/libxml/src/error.c 		input = ctxt->inputTab[ctxt->inputNr - 2];
input             779 third_party/libxml/src/error.c 		xmlParserPrintFileInfo(input);
input             793 third_party/libxml/src/error.c     if ((ctxt != NULL) && (input != NULL)) {
input             794 third_party/libxml/src/error.c 	xmlParserPrintFileContext(input);
input             811 third_party/libxml/src/error.c     xmlParserInputPtr input = NULL;
input             816 third_party/libxml/src/error.c 	input = ctxt->input;
input             817 third_party/libxml/src/error.c 	if ((input->filename == NULL) && (ctxt->inputNr > 1))
input             818 third_party/libxml/src/error.c 	    input = ctxt->inputTab[ctxt->inputNr - 2];
input             820 third_party/libxml/src/error.c 	xmlParserPrintFileInfo(input);
input             830 third_party/libxml/src/error.c 	xmlParserPrintFileContext(input);
input             120 third_party/libxml/src/include/libxml/debugXML.h     xmlShellReadlineFunc input;
input             207 third_party/libxml/src/include/libxml/debugXML.h 				 xmlShellReadlineFunc input,
input             158 third_party/libxml/src/include/libxml/encoding.h     xmlCharEncodingInputFunc   input;
input             193 third_party/libxml/src/include/libxml/encoding.h                           		 xmlCharEncodingInputFunc input,
input             116 third_party/libxml/src/include/libxml/entities.h 						 const xmlChar *input);
input             120 third_party/libxml/src/include/libxml/entities.h 						 const xmlChar *input);
input             123 third_party/libxml/src/include/libxml/entities.h 						 const xmlChar *input);
input              34 third_party/libxml/src/include/libxml/nanohttp.h 				 const char *input,
input              41 third_party/libxml/src/include/libxml/nanohttp.h 				 const char *input,
input             199 third_party/libxml/src/include/libxml/parser.h     xmlParserInputPtr  input;         /* Current input stream */
input             928 third_party/libxml/src/include/libxml/parser.h 					 xmlParserInputBufferPtr input,
input            1038 third_party/libxml/src/include/libxml/parser.h 					 xmlParserInputBufferPtr input,
input             311 third_party/libxml/src/include/libxml/parserInternals.h 						 xmlParserInputPtr input,
input             335 third_party/libxml/src/include/libxml/parserInternals.h 						 xmlParserInputPtr input);
input             339 third_party/libxml/src/include/libxml/parserInternals.h 			xmlFreeInputStream	(xmlParserInputPtr input);
input             892 third_party/libxml/src/include/libxml/xmlerror.h     xmlParserPrintFileInfo	(xmlParserInputPtr input);
input             894 third_party/libxml/src/include/libxml/xmlerror.h     xmlParserPrintFileContext	(xmlParserInputPtr input);
input             112 third_party/libxml/src/include/libxml/xmlreader.h 			xmlNewTextReader	(xmlParserInputBufferPtr input,
input             122 third_party/libxml/src/include/libxml/xmlreader.h                    xmlParserInputBufferPtr input, const char *URL,
input             189 third_party/libxml/src/include/libxml/xmlschemas.h 					 xmlParserInputBufferPtr input,
input             727 third_party/libxml/src/legacy.c                   const xmlChar * input ATTRIBUTE_UNUSED)
input            1340 third_party/libxml/src/nanohttp.c xmlNanoHTTPMethodRedir(const char *URL, const char *method, const char *input,
input            1396 third_party/libxml/src/nanohttp.c     if (input == NULL)
input            1464 third_party/libxml/src/nanohttp.c     if (input != NULL)
input            1491 third_party/libxml/src/nanohttp.c     if ( input != NULL ) {
input            1493 third_party/libxml/src/nanohttp.c         xmt_bytes = xmlNanoHTTPSend( ctxt, input, ilen );
input            1502 third_party/libxml/src/nanohttp.c 	xmlNanoHTTPSend( ctxt, input, ilen );
input            1594 third_party/libxml/src/nanohttp.c xmlNanoHTTPMethod(const char *URL, const char *method, const char *input,
input            1596 third_party/libxml/src/nanohttp.c     return(xmlNanoHTTPMethodRedir(URL, method, input, contentType,
input             136 third_party/libxml/src/parser.c         if (ctxt->input != NULL) {
input             137 third_party/libxml/src/parser.c             consumed = ctxt->input->consumed +
input             138 third_party/libxml/src/parser.c                 (ctxt->input->cur - ctxt->input->base);
input             154 third_party/libxml/src/parser.c         if (ctxt->input != NULL) {
input             155 third_party/libxml/src/parser.c             consumed = ctxt->input->consumed +
input             156 third_party/libxml/src/parser.c                 (ctxt->input->cur - ctxt->input->base);
input            1517 third_party/libxml/src/parser.c     ctxt->input = value;
input            1539 third_party/libxml/src/parser.c         ctxt->input = ctxt->inputTab[ctxt->inputNr - 1];
input            1541 third_party/libxml/src/parser.c         ctxt->input = NULL;
input            1809 third_party/libxml/src/parser.c #define RAW (*ctxt->input->cur)
input            1810 third_party/libxml/src/parser.c #define CUR (*ctxt->input->cur)
input            1811 third_party/libxml/src/parser.c #define NXT(val) ctxt->input->cur[(val)]
input            1812 third_party/libxml/src/parser.c #define CUR_PTR ctxt->input->cur
input            1833 third_party/libxml/src/parser.c     ctxt->nbChars += (val),ctxt->input->cur += (val),ctxt->input->col+=(val);			\
input            1834 third_party/libxml/src/parser.c     if (*ctxt->input->cur == '%') xmlParserHandlePEReference(ctxt);	\
input            1835 third_party/libxml/src/parser.c     if ((*ctxt->input->cur == 0) &&					\
input            1836 third_party/libxml/src/parser.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))		\
input            1843 third_party/libxml/src/parser.c     	if (*(ctxt->input->cur) == '\n') {				\
input            1844 third_party/libxml/src/parser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
input            1845 third_party/libxml/src/parser.c     	} else ctxt->input->col++;					\
input            1847 third_party/libxml/src/parser.c 	ctxt->input->cur++;						\
input            1849 third_party/libxml/src/parser.c     if (*ctxt->input->cur == '%') xmlParserHandlePEReference(ctxt);	\
input            1850 third_party/libxml/src/parser.c     if ((*ctxt->input->cur == 0) &&					\
input            1851 third_party/libxml/src/parser.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))		\
input            1856 third_party/libxml/src/parser.c 		   (ctxt->input->cur - ctxt->input->base > 2 * INPUT_CHUNK) && \
input            1857 third_party/libxml/src/parser.c 		   (ctxt->input->end - ctxt->input->cur < 2 * INPUT_CHUNK)) \
input            1861 third_party/libxml/src/parser.c     xmlParserInputShrink(ctxt->input);
input            1862 third_party/libxml/src/parser.c     if ((*ctxt->input->cur == 0) &&
input            1863 third_party/libxml/src/parser.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
input            1868 third_party/libxml/src/parser.c 		 (ctxt->input->end - ctxt->input->cur < INPUT_CHUNK))	\
input            1872 third_party/libxml/src/parser.c     xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input            1873 third_party/libxml/src/parser.c     if ((ctxt->input->cur != NULL) && (*ctxt->input->cur == 0) &&
input            1874 third_party/libxml/src/parser.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
input            1883 third_party/libxml/src/parser.c 	ctxt->input->col++;						\
input            1884 third_party/libxml/src/parser.c 	ctxt->input->cur++;						\
input            1886 third_party/libxml/src/parser.c 	if (*ctxt->input->cur == 0)					\
input            1887 third_party/libxml/src/parser.c 	    xmlParserInputGrow(ctxt->input, INPUT_CHUNK);		\
input            1891 third_party/libxml/src/parser.c     if (*(ctxt->input->cur) == '\n') {					\
input            1892 third_party/libxml/src/parser.c 	ctxt->input->line++; ctxt->input->col = 1;			\
input            1893 third_party/libxml/src/parser.c     } else ctxt->input->col++;						\
input            1894 third_party/libxml/src/parser.c     ctxt->input->cur += l;				\
input            1895 third_party/libxml/src/parser.c     if (*ctxt->input->cur == '%') xmlParserHandlePEReference(ctxt);	\
input            1928 third_party/libxml/src/parser.c 	cur = ctxt->input->cur;
input            1931 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
input            1936 third_party/libxml/src/parser.c 		ctxt->input->cur = cur;
input            1937 third_party/libxml/src/parser.c 		xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input            1938 third_party/libxml/src/parser.c 		cur = ctxt->input->cur;
input            1941 third_party/libxml/src/parser.c 	ctxt->input->cur = cur;
input            1959 third_party/libxml/src/parser.c 	    if (*ctxt->input->cur == '%') xmlParserHandlePEReference(ctxt);
input            1987 third_party/libxml/src/parser.c     if ((*ctxt->input->cur == 0) &&
input            1988 third_party/libxml/src/parser.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
input            2003 third_party/libxml/src/parser.c xmlPushInput(xmlParserCtxtPtr ctxt, xmlParserInputPtr input) {
input            2005 third_party/libxml/src/parser.c     if (input == NULL) return(-1);
input            2008 third_party/libxml/src/parser.c 	if ((ctxt->input != NULL) && (ctxt->input->filename))
input            2010 third_party/libxml/src/parser.c 		    "%s(%d): ", ctxt->input->filename,
input            2011 third_party/libxml/src/parser.c 		    ctxt->input->line);
input            2013 third_party/libxml/src/parser.c 		"Pushing input %d : %.30s\n", ctxt->inputNr+1, input->cur);
input            2015 third_party/libxml/src/parser.c     ret = inputPush(ctxt, input);
input            2076 third_party/libxml/src/parser.c 	    ctxt->input->col++;
input            2078 third_party/libxml/src/parser.c 	    ctxt->input->cur++;
input            2105 third_party/libxml/src/parser.c 	    ctxt->input->col++;
input            2107 third_party/libxml/src/parser.c 	    ctxt->input->cur++;
input            2234 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            2245 third_party/libxml/src/parser.c     input = xmlNewInputStream(ctxt);
input            2246 third_party/libxml/src/parser.c     if (input == NULL) {
input            2253 third_party/libxml/src/parser.c         xmlFree(input);
input            2262 third_party/libxml/src/parser.c     input->free = deallocblankswrapper;
input            2263 third_party/libxml/src/parser.c     input->base = buffer;
input            2264 third_party/libxml/src/parser.c     input->cur = buffer;
input            2265 third_party/libxml/src/parser.c     input->length = length;
input            2266 third_party/libxml/src/parser.c     input->end = &buffer[length];
input            2267 third_party/libxml/src/parser.c     return(input);
input            2306 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            2410 third_party/libxml/src/parser.c 	    } else if (ctxt->input->free != deallocblankswrapper) {
input            2411 third_party/libxml/src/parser.c 		    input = xmlNewBlanksWrapperInputStream(ctxt, entity);
input            2412 third_party/libxml/src/parser.c 		    if (xmlPushInput(ctxt, input) < 0)
input            2425 third_party/libxml/src/parser.c 		    input = xmlNewEntityInputStream(ctxt, entity);
input            2426 third_party/libxml/src/parser.c 		    if (xmlPushInput(ctxt, input) < 0)
input            2441 third_party/libxml/src/parser.c 		    if ((ctxt->input->end - ctxt->input->cur)>=4) {
input            3146 third_party/libxml/src/parser.c     if ((*ctxt->input->cur == '\n') && (ctxt->input->cur[-1] == '\r'))
input            3147 third_party/libxml/src/parser.c         return(xmlDictLookup(ctxt->dict, ctxt->input->cur - (len + 1), len));
input            3148 third_party/libxml/src/parser.c     return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
input            3182 third_party/libxml/src/parser.c     in = ctxt->input->cur;
input            3194 third_party/libxml/src/parser.c 	    count = in - ctxt->input->cur;
input            3195 third_party/libxml/src/parser.c 	    ret = xmlDictLookup(ctxt->dict, ctxt->input->cur, count);
input            3196 third_party/libxml/src/parser.c 	    ctxt->input->cur = in;
input            3198 third_party/libxml/src/parser.c 	    ctxt->input->col += count;
input            3240 third_party/libxml/src/parser.c     return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
input            3271 third_party/libxml/src/parser.c     in = ctxt->input->cur;
input            3283 third_party/libxml/src/parser.c 	    count = in - ctxt->input->cur;
input            3284 third_party/libxml/src/parser.c 	    ret = xmlDictLookup(ctxt->dict, ctxt->input->cur, count);
input            3285 third_party/libxml/src/parser.c 	    ctxt->input->cur = in;
input            3287 third_party/libxml/src/parser.c 	    ctxt->input->col += count;
input            3318 third_party/libxml/src/parser.c     in = ctxt->input->cur;
input            3322 third_party/libxml/src/parser.c 	ctxt->input->col++;
input            3326 third_party/libxml/src/parser.c 	ctxt->input->cur = in;
input            3527 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            3546 third_party/libxml/src/parser.c     input = ctxt->input;
input            3564 third_party/libxml/src/parser.c 	    (ctxt->input != input))) && (ctxt->instate != XML_PARSER_EOF)) {
input            3905 third_party/libxml/src/parser.c     if ((ctxt == NULL) || (ctxt->input == NULL)) return(NULL);
input            4131 third_party/libxml/src/parser.c     int line = ctxt->input->line;
input            4132 third_party/libxml/src/parser.c     int col = ctxt->input->col;
input            4142 third_party/libxml/src/parser.c 	in = ctxt->input->cur;
input            4145 third_party/libxml/src/parser.c 	    while (*in == 0x20) { in++; ctxt->input->col++; }
input            4148 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
input            4154 third_party/libxml/src/parser.c 		nbchar = in - ctxt->input->cur;
input            4156 third_party/libxml/src/parser.c 		    const xmlChar *tmp = ctxt->input->cur;
input            4157 third_party/libxml/src/parser.c 		    ctxt->input->cur = in;
input            4183 third_party/libxml/src/parser.c             ccol = ctxt->input->col;
input            4188 third_party/libxml/src/parser.c 	    ctxt->input->col = ccol;
input            4191 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
input            4199 third_party/libxml/src/parser.c 		    ctxt->input->cur = in;
input            4203 third_party/libxml/src/parser.c 		ctxt->input->col++;
input            4206 third_party/libxml/src/parser.c 	    nbchar = in - ctxt->input->cur;
input            4211 third_party/libxml/src/parser.c 		    (IS_BLANK_CH(*ctxt->input->cur))) {
input            4212 third_party/libxml/src/parser.c 		    const xmlChar *tmp = ctxt->input->cur;
input            4213 third_party/libxml/src/parser.c 		    ctxt->input->cur = in;
input            4226 third_party/libxml/src/parser.c                     line = ctxt->input->line;
input            4227 third_party/libxml/src/parser.c                     col = ctxt->input->col;
input            4231 third_party/libxml/src/parser.c 					      ctxt->input->cur, nbchar);
input            4232 third_party/libxml/src/parser.c                     line = ctxt->input->line;
input            4233 third_party/libxml/src/parser.c                     col = ctxt->input->col;
input            4239 third_party/libxml/src/parser.c 	    ctxt->input->cur = in;
input            4243 third_party/libxml/src/parser.c 		    ctxt->input->cur = in;
input            4245 third_party/libxml/src/parser.c 		    ctxt->input->line++; ctxt->input->col = 1;
input            4260 third_party/libxml/src/parser.c 	    in = ctxt->input->cur;
input            4264 third_party/libxml/src/parser.c     ctxt->input->line = line;
input            4265 third_party/libxml/src/parser.c     ctxt->input->col = col;
input            4466 third_party/libxml/src/parser.c     inputid = ctxt->input->id;
input            4552 third_party/libxml/src/parser.c 	if (inputid != ctxt->input->id) {
input            4597 third_party/libxml/src/parser.c     inputid = ctxt->input->id;
input            4606 third_party/libxml/src/parser.c     in = ctxt->input->cur;
input            4610 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
input            4615 third_party/libxml/src/parser.c         ccol = ctxt->input->col;
input            4622 third_party/libxml/src/parser.c 	ctxt->input->col = ccol;
input            4625 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
input            4630 third_party/libxml/src/parser.c 	nbchar = in - ctxt->input->cur;
input            4662 third_party/libxml/src/parser.c 		memcpy(&buf[len], ctxt->input->cur, nbchar);
input            4667 third_party/libxml/src/parser.c 	ctxt->input->cur = in;
input            4670 third_party/libxml/src/parser.c 	    ctxt->input->line++; ctxt->input->col = 1;
input            4675 third_party/libxml/src/parser.c 		ctxt->input->cur = in;
input            4677 third_party/libxml/src/parser.c 		ctxt->input->line++; ctxt->input->col = 1;
input            4688 third_party/libxml/src/parser.c 	in = ctxt->input->cur;
input            4692 third_party/libxml/src/parser.c 		    if (ctxt->input->id != inputid) {
input            4718 third_party/libxml/src/parser.c 		ctxt->input->col++;
input            4721 third_party/libxml/src/parser.c 	    ctxt->input->col++;
input            4861 third_party/libxml/src/parser.c 	xmlParserInputPtr input = ctxt->input;
input            4877 third_party/libxml/src/parser.c 		if (input != ctxt->input) {
input            4945 third_party/libxml/src/parser.c 		if (input != ctxt->input) {
input            5003 third_party/libxml/src/parser.c 	xmlParserInputPtr input = ctxt->input;
input            5037 third_party/libxml/src/parser.c 	    if (input != ctxt->input) {
input            5087 third_party/libxml/src/parser.c 	xmlParserInputPtr input = ctxt->input;
input            5285 third_party/libxml/src/parser.c 	    if (input != ctxt->input) {
input            5655 third_party/libxml/src/parser.c 	xmlParserInputPtr input = ctxt->input;
input            5761 third_party/libxml/src/parser.c 	    if (input != ctxt->input) {
input            5801 third_party/libxml/src/parser.c 	    if ((ctxt->validate) && (ctxt->input->id != inputchk)) {
input            5860 third_party/libxml/src/parser.c 	    if ((ctxt->validate) && (ctxt->input->id != inputchk)) {
input            5927 third_party/libxml/src/parser.c 	int inputid = ctxt->input->id;
input            6061 third_party/libxml/src/parser.c 	    int inputid = ctxt->input->id;
input            6103 third_party/libxml/src/parser.c     if ((ctxt->validate) && (ctxt->input->id != inputchk)) {
input            6231 third_party/libxml/src/parser.c     int inputid = ctxt->input->id;
input            6279 third_party/libxml/src/parser.c 	xmlParserInputPtr input = ctxt->input;
input            6344 third_party/libxml/src/parser.c 	    if (input != ctxt->input) {
input            6386 third_party/libxml/src/parser.c     int id = ctxt->input->id;
input            6396 third_party/libxml/src/parser.c 	    if (ctxt->input->id != id) {
input            6404 third_party/libxml/src/parser.c 	    if ((ctxt->input != NULL) && (ctxt->input->filename))
input            6406 third_party/libxml/src/parser.c 			"%s(%d): ", ctxt->input->filename,
input            6407 third_party/libxml/src/parser.c 			ctxt->input->line);
input            6415 third_party/libxml/src/parser.c 	    unsigned int cons = ctxt->input->consumed;
input            6432 third_party/libxml/src/parser.c 	    if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
input            6438 third_party/libxml/src/parser.c 	    if ((ctxt->input != NULL) && (ctxt->input->filename))
input            6440 third_party/libxml/src/parser.c 			"%s(%d): ", ctxt->input->filename,
input            6441 third_party/libxml/src/parser.c 			ctxt->input->line);
input            6456 third_party/libxml/src/parser.c 	    if (ctxt->input->id != id) {
input            6464 third_party/libxml/src/parser.c 	    if ((ctxt->input != NULL) && (ctxt->input->filename))
input            6466 third_party/libxml/src/parser.c 			"%s(%d): ", ctxt->input->filename,
input            6467 third_party/libxml/src/parser.c 			ctxt->input->line);
input            6500 third_party/libxml/src/parser.c 	    if ((ctxt->input != NULL) && (ctxt->input->filename))
input            6502 third_party/libxml/src/parser.c 			"%s(%d): ", ctxt->input->filename,
input            6503 third_party/libxml/src/parser.c 			ctxt->input->line);
input            6518 third_party/libxml/src/parser.c 	if (ctxt->input->id != id) {
input            6640 third_party/libxml/src/parser.c     ctxt->input->version = version;
input            6690 third_party/libxml/src/parser.c         (ctxt->input->end - ctxt->input->cur >= 4)) {
input            6730 third_party/libxml/src/parser.c 	unsigned int cons = ctxt->input->consumed;
input            6748 third_party/libxml/src/parser.c 	if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
input            7575 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            7643 third_party/libxml/src/parser.c 	} else if (ctxt->input->free != deallocblankswrapper) {
input            7644 third_party/libxml/src/parser.c 	    input = xmlNewBlanksWrapperInputStream(ctxt, entity);
input            7645 third_party/libxml/src/parser.c 	    if (xmlPushInput(ctxt, input) < 0)
input            7653 third_party/libxml/src/parser.c 	    input = xmlNewEntityInputStream(ctxt, entity);
input            7654 third_party/libxml/src/parser.c 	    if (xmlPushInput(ctxt, input) < 0)
input            7688 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            7713 third_party/libxml/src/parser.c     input = xmlNewEntityInputStream(ctxt, entity);
input            7714 third_party/libxml/src/parser.c     if (input == NULL) {
input            7725 third_party/libxml/src/parser.c     if (xmlPushInput(ctxt, input) < 0) {
input            7732 third_party/libxml/src/parser.c     while ((ctxt->input == input) && (ctxt->input->cur < ctxt->input->end) &&
input            7734 third_party/libxml/src/parser.c         xmlBufferAdd(buf, ctxt->input->cur, l);
input            7747 third_party/libxml/src/parser.c     if ((ctxt->input == input) && (ctxt->input->cur >= ctxt->input->end)) {
input            7982 third_party/libxml/src/parser.c 	    unsigned int cons = ctxt->input->consumed;
input            7994 third_party/libxml/src/parser.c 	    if ((CUR_PTR == check) && (cons == ctxt->input->consumed)) {
input            8170 third_party/libxml/src/parser.c 	unsigned int cons = ctxt->input->consumed;
input            8236 third_party/libxml/src/parser.c         if ((cons == ctxt->input->consumed) && (q == CUR_PTR) &&
input            8483 third_party/libxml/src/parser.c     in = ctxt->input->cur;
input            8499 third_party/libxml/src/parser.c 	    ctxt->input->cur = in;
input            8568 third_party/libxml/src/parser.c     end = ctxt->input->end;
input            8571 third_party/libxml/src/parser.c         const xmlChar *oldbase = ctxt->input->base;
input            8573 third_party/libxml/src/parser.c 	if (oldbase != ctxt->input->base) {
input            8574 third_party/libxml/src/parser.c 	    long delta = ctxt->input->base - oldbase;
input            8578 third_party/libxml/src/parser.c 	end = ctxt->input->end;
input            8590 third_party/libxml/src/parser.c 		const xmlChar *oldbase = ctxt->input->base;
input            8594 third_party/libxml/src/parser.c 		if (oldbase != ctxt->input->base) {
input            8595 third_party/libxml/src/parser.c 		    long delta = ctxt->input->base - oldbase;
input            8599 third_party/libxml/src/parser.c 		end = ctxt->input->end;
input            8606 third_party/libxml/src/parser.c 		const xmlChar *oldbase = ctxt->input->base;
input            8610 third_party/libxml/src/parser.c 		if (oldbase != ctxt->input->base) {
input            8611 third_party/libxml/src/parser.c 		    long delta = ctxt->input->base - oldbase;
input            8615 third_party/libxml/src/parser.c 		end = ctxt->input->end;
input            8628 third_party/libxml/src/parser.c 		const xmlChar *oldbase = ctxt->input->base;
input            8632 third_party/libxml/src/parser.c 		if (oldbase != ctxt->input->base) {
input            8633 third_party/libxml/src/parser.c 		    long delta = ctxt->input->base - oldbase;
input            8638 third_party/libxml/src/parser.c 		end = ctxt->input->end;
input            8647 third_party/libxml/src/parser.c 		const xmlChar *oldbase = ctxt->input->base;
input            8651 third_party/libxml/src/parser.c 		if (oldbase != ctxt->input->base) {
input            8652 third_party/libxml/src/parser.c 		    long delta = ctxt->input->base - oldbase;
input            8656 third_party/libxml/src/parser.c 		end = ctxt->input->end;
input            8853 third_party/libxml/src/parser.c     base = ctxt->input->base;
input            8854 third_party/libxml/src/parser.c     cur = ctxt->input->cur - ctxt->input->base;
input            8855 third_party/libxml/src/parser.c     oldline = ctxt->input->line;
input            8856 third_party/libxml/src/parser.c     oldcol = ctxt->input->col;
input            8871 third_party/libxml/src/parser.c     *tlen = ctxt->input->cur - ctxt->input->base - cur;
input            8880 third_party/libxml/src/parser.c     if (ctxt->input->base != base) goto base_changed;
input            8886 third_party/libxml/src/parser.c 	unsigned int cons = ctxt->input->consumed;
input            8891 third_party/libxml/src/parser.c 	if (ctxt->input->base != base) {
input            9020 third_party/libxml/src/parser.c 		if (ctxt->input->base != base) goto base_changed;
input            9057 third_party/libxml/src/parser.c 	if (ctxt->input->base != base) goto base_changed;
input            9066 third_party/libxml/src/parser.c         if ((cons == ctxt->input->consumed) && (q == CUR_PTR) &&
input            9073 third_party/libxml/src/parser.c 	if (ctxt->input->base != base) goto base_changed;
input            9240 third_party/libxml/src/parser.c     ctxt->input->cur = ctxt->input->base + cur;
input            9241 third_party/libxml/src/parser.c     ctxt->input->line = oldline;
input            9242 third_party/libxml/src/parser.c     ctxt->input->col = oldcol;
input            9276 third_party/libxml/src/parser.c     if ((tlen > 0) && (xmlStrncmp(ctxt->input->cur, ctxt->name, tlen) == 0)) {
input            9277 third_party/libxml/src/parser.c         if (ctxt->input->cur[tlen] == '>') {
input            9278 third_party/libxml/src/parser.c 	    ctxt->input->cur += tlen + 1;
input            9281 third_party/libxml/src/parser.c 	ctxt->input->cur += tlen;
input            9451 third_party/libxml/src/parser.c 	unsigned int cons = ctxt->input->consumed;
input            9452 third_party/libxml/src/parser.c 	const xmlChar *cur = ctxt->input->cur;
input            9509 third_party/libxml/src/parser.c 	if ((cons == ctxt->input->consumed) && (test == CUR_PTR)) {
input            9553 third_party/libxml/src/parser.c         node_info.begin_pos = ctxt->input->consumed +
input            9554 third_party/libxml/src/parser.c                           (CUR_PTR - ctxt->input->base);
input            9555 third_party/libxml/src/parser.c 	node_info.begin_line = ctxt->input->line;
input            9565 third_party/libxml/src/parser.c     line = ctxt->input->line;
input            9615 third_party/libxml/src/parser.c 	   node_info.end_pos = ctxt->input->consumed +
input            9616 third_party/libxml/src/parser.c 			      (CUR_PTR - ctxt->input->base);
input            9617 third_party/libxml/src/parser.c 	   node_info.end_line = ctxt->input->line;
input            9643 third_party/libxml/src/parser.c 	   node_info.end_pos = ctxt->input->consumed +
input            9644 third_party/libxml/src/parser.c 			      (CUR_PTR - ctxt->input->base);
input            9645 third_party/libxml/src/parser.c 	   node_info.end_line = ctxt->input->line;
input            9690 third_party/libxml/src/parser.c        node_info.end_pos = ctxt->input->consumed +
input            9691 third_party/libxml/src/parser.c                           (CUR_PTR - ctxt->input->base);
input            9692 third_party/libxml/src/parser.c        node_info.end_line = ctxt->input->line;
input            9925 third_party/libxml/src/parser.c 	        (ctxt->input->buf != NULL) &&
input            9926 third_party/libxml/src/parser.c 	        (ctxt->input->buf->encoder == NULL)) {
input            9947 third_party/libxml/src/parser.c 	    if (ctxt->input->encoding != NULL)
input            9948 third_party/libxml/src/parser.c 		xmlFree((xmlChar *) ctxt->input->encoding);
input            9949 third_party/libxml/src/parser.c 	    ctxt->input->encoding = encoding;
input            10066 third_party/libxml/src/parser.c     ctxt->input->standalone = -2;
input            10132 third_party/libxml/src/parser.c     if ((ctxt->input->encoding != NULL) && (!IS_BLANK_CH(RAW))) {
input            10146 third_party/libxml/src/parser.c     ctxt->input->standalone = xmlParseSDDecl(ctxt);
input            10208 third_party/libxml/src/parser.c     if ((ctxt == NULL) || (ctxt->input == NULL))
input            10227 third_party/libxml/src/parser.c         ((ctxt->input->end - ctxt->input->cur) >= 4)) {
input            10254 third_party/libxml/src/parser.c     if ((ctxt->input->end - ctxt->input->cur) < 35) {
input            10269 third_party/libxml/src/parser.c 	ctxt->standalone = ctxt->input->standalone;
input            10393 third_party/libxml/src/parser.c     if ((ctxt == NULL) || (ctxt->input == NULL))
input            10413 third_party/libxml/src/parser.c     if ((ctxt->input->end - ctxt->input->cur) >= 4) {
input            10512 third_party/libxml/src/parser.c     in = ctxt->input;
input            10588 third_party/libxml/src/parser.c         tmp = ctxt->input->end;
input            10590 third_party/libxml/src/parser.c 	while ((tmp >= ctxt->input->base) && (*tmp != '<')) tmp--;
input            10591 third_party/libxml/src/parser.c 	if (tmp < ctxt->input->base) {
input            10597 third_party/libxml/src/parser.c 	    while ((tmp < ctxt->input->end) && (*tmp != '>')) {
input            10600 third_party/libxml/src/parser.c 		    while ((tmp < ctxt->input->end) && (*tmp != '\'')) tmp++;
input            10601 third_party/libxml/src/parser.c 		    if (tmp < ctxt->input->end) tmp++;
input            10604 third_party/libxml/src/parser.c 		    while ((tmp < ctxt->input->end) && (*tmp != '"')) tmp++;
input            10605 third_party/libxml/src/parser.c 		    if (tmp < ctxt->input->end) tmp++;
input            10609 third_party/libxml/src/parser.c 	    if (tmp < ctxt->input->end)
input            10614 third_party/libxml/src/parser.c 		while ((tmp >= ctxt->input->base) && (*tmp != '>')) tmp--;
input            10615 third_party/libxml/src/parser.c 		if (tmp >= ctxt->input->base)
input            10709 third_party/libxml/src/parser.c     if (ctxt->input == NULL)
input            10765 third_party/libxml/src/parser.c     if ((ctxt->input != NULL) &&
input            10766 third_party/libxml/src/parser.c         (ctxt->input->cur - ctxt->input->base > 4096)) {
input            10783 third_party/libxml/src/parser.c 	if (ctxt->input == NULL) break;
input            10784 third_party/libxml/src/parser.c 	if (ctxt->input->buf == NULL)
input            10785 third_party/libxml/src/parser.c 	    avail = ctxt->input->length -
input            10786 third_party/libxml/src/parser.c 	            (ctxt->input->cur - ctxt->input->base);
input            10793 third_party/libxml/src/parser.c 	    if ((ctxt->input->buf->raw != NULL) &&
input            10794 third_party/libxml/src/parser.c 		(ctxt->input->buf->raw->use > 0)) {
input            10795 third_party/libxml/src/parser.c 		int base = ctxt->input->base -
input            10796 third_party/libxml/src/parser.c 		           ctxt->input->buf->buffer->content;
input            10797 third_party/libxml/src/parser.c 		int current = ctxt->input->cur - ctxt->input->base;
input            10799 third_party/libxml/src/parser.c 		xmlParserInputBufferPush(ctxt->input->buf, 0, "");
input            10800 third_party/libxml/src/parser.c 		ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            10801 third_party/libxml/src/parser.c 		ctxt->input->cur = ctxt->input->base + current;
input            10802 third_party/libxml/src/parser.c 		ctxt->input->end =
input            10803 third_party/libxml/src/parser.c 		    &ctxt->input->buf->buffer->content[
input            10804 third_party/libxml/src/parser.c 		                       ctxt->input->buf->buffer->use];
input            10806 third_party/libxml/src/parser.c 	    avail = ctxt->input->buf->buffer->use -
input            10807 third_party/libxml/src/parser.c 		    (ctxt->input->cur - ctxt->input->base);
input            10846 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            10847 third_party/libxml/src/parser.c 		next = ctxt->input->cur[1];
input            10871 third_party/libxml/src/parser.c 		    if ((ctxt->input->cur[2] == 'x') &&
input            10872 third_party/libxml/src/parser.c 			(ctxt->input->cur[3] == 'm') &&
input            10873 third_party/libxml/src/parser.c 			(ctxt->input->cur[4] == 'l') &&
input            10874 third_party/libxml/src/parser.c 			(IS_BLANK_CH(ctxt->input->cur[5]))) {
input            10889 third_party/libxml/src/parser.c 			ctxt->standalone = ctxt->input->standalone;
input            10891 third_party/libxml/src/parser.c 			    (ctxt->input->encoding != NULL))
input            10892 third_party/libxml/src/parser.c 			    ctxt->encoding = xmlStrdup(ctxt->input->encoding);
input            10939 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            10950 third_party/libxml/src/parser.c 		        if ((lastgt == NULL) || (ctxt->input->cur >= lastgt))
input            11046 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            11047 third_party/libxml/src/parser.c 		next = ctxt->input->cur[1];
input            11050 third_party/libxml/src/parser.c 	        cons = ctxt->input->consumed;
input            11063 third_party/libxml/src/parser.c 		           (ctxt->input->cur[2] == '-') &&
input            11064 third_party/libxml/src/parser.c 			   (ctxt->input->cur[3] == '-')) {
input            11069 third_party/libxml/src/parser.c 		    ctxt->input->cur += 4;
input            11071 third_party/libxml/src/parser.c 		    ctxt->input->cur -= 4;
input            11076 third_party/libxml/src/parser.c 		} else if ((cur == '<') && (ctxt->input->cur[1] == '!') &&
input            11077 third_party/libxml/src/parser.c 		    (ctxt->input->cur[2] == '[') &&
input            11078 third_party/libxml/src/parser.c 		    (ctxt->input->cur[3] == 'C') &&
input            11079 third_party/libxml/src/parser.c 		    (ctxt->input->cur[4] == 'D') &&
input            11080 third_party/libxml/src/parser.c 		    (ctxt->input->cur[5] == 'A') &&
input            11081 third_party/libxml/src/parser.c 		    (ctxt->input->cur[6] == 'T') &&
input            11082 third_party/libxml/src/parser.c 		    (ctxt->input->cur[7] == 'A') &&
input            11083 third_party/libxml/src/parser.c 		    (ctxt->input->cur[8] == '[')) {
input            11113 third_party/libxml/src/parser.c 				    (ctxt->input->cur > lastlt))
input            11129 third_party/libxml/src/parser.c 		if ((cons == ctxt->input->consumed) && (test == CUR_PTR)) {
input            11143 third_party/libxml/src/parser.c 		        if ((lastgt == NULL) || (ctxt->input->cur >= lastgt))
input            11180 third_party/libxml/src/parser.c 			tmp = xmlCheckCdataPush(ctxt->input->cur, 
input            11184 third_party/libxml/src/parser.c 			    ctxt->input->cur += tmp;
input            11190 third_party/libxml/src/parser.c 				                      ctxt->input->cur, tmp);
input            11193 third_party/libxml/src/parser.c 				                      ctxt->input->cur, tmp);
input            11204 third_party/libxml/src/parser.c 		    tmp = xmlCheckCdataPush(ctxt->input->cur, base);
input            11207 third_party/libxml/src/parser.c 			ctxt->input->cur += tmp;
input            11218 third_party/libxml/src/parser.c 			 if ((ctxt->input->cur - ctxt->input->base >= 9) &&
input            11219 third_party/libxml/src/parser.c 			     (!strncmp((const char *)&ctxt->input->cur[-9],
input            11227 third_party/libxml/src/parser.c 						  ctxt->input->cur, base);
input            11230 third_party/libxml/src/parser.c 						  ctxt->input->cur, base);
input            11246 third_party/libxml/src/parser.c 		if (ctxt->input->buf == NULL)
input            11247 third_party/libxml/src/parser.c 		    avail = ctxt->input->length -
input            11248 third_party/libxml/src/parser.c 		            (ctxt->input->cur - ctxt->input->base);
input            11250 third_party/libxml/src/parser.c 		    avail = ctxt->input->buf->buffer->use -
input            11251 third_party/libxml/src/parser.c 		            (ctxt->input->cur - ctxt->input->base);
input            11254 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            11255 third_party/libxml/src/parser.c 		next = ctxt->input->cur[1];
input            11269 third_party/libxml/src/parser.c 		    (ctxt->input->cur[2] == '-') &&
input            11270 third_party/libxml/src/parser.c 		    (ctxt->input->cur[3] == '-')) {
input            11284 third_party/libxml/src/parser.c 		    (ctxt->input->cur[2] == 'D') &&
input            11285 third_party/libxml/src/parser.c 		    (ctxt->input->cur[3] == 'O') &&
input            11286 third_party/libxml/src/parser.c 		    (ctxt->input->cur[4] == 'C') &&
input            11287 third_party/libxml/src/parser.c 		    (ctxt->input->cur[5] == 'T') &&
input            11288 third_party/libxml/src/parser.c 		    (ctxt->input->cur[6] == 'Y') &&
input            11289 third_party/libxml/src/parser.c 		    (ctxt->input->cur[7] == 'P') &&
input            11290 third_party/libxml/src/parser.c 		    (ctxt->input->cur[8] == 'E')) {
input            11341 third_party/libxml/src/parser.c 		if (ctxt->input->buf == NULL)
input            11342 third_party/libxml/src/parser.c 		    avail = ctxt->input->length - (ctxt->input->cur - ctxt->input->base);
input            11344 third_party/libxml/src/parser.c 		    avail = ctxt->input->buf->buffer->use - (ctxt->input->cur - ctxt->input->base);
input            11347 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            11348 third_party/libxml/src/parser.c 		next = ctxt->input->cur[1];
input            11361 third_party/libxml/src/parser.c 		    (ctxt->input->cur[2] == '-') && (ctxt->input->cur[3] == '-')) {
input            11389 third_party/libxml/src/parser.c 		if (ctxt->input->buf == NULL)
input            11390 third_party/libxml/src/parser.c 		    avail = ctxt->input->length - (ctxt->input->cur - ctxt->input->base);
input            11392 third_party/libxml/src/parser.c 		    avail = ctxt->input->buf->buffer->use - (ctxt->input->cur - ctxt->input->base);
input            11395 third_party/libxml/src/parser.c 		cur = ctxt->input->cur[0];
input            11396 third_party/libxml/src/parser.c 		next = ctxt->input->cur[1];
input            11410 third_party/libxml/src/parser.c 		    (ctxt->input->cur[2] == '-') && (ctxt->input->cur[3] == '-')) {
input            11452 third_party/libxml/src/parser.c 		base = ctxt->input->cur - ctxt->input->base;
input            11456 third_party/libxml/src/parser.c 		buf = ctxt->input->buf->buffer->content;
input            11457 third_party/libxml/src/parser.c 		for (;(unsigned int) base < ctxt->input->buf->buffer->use;
input            11468 third_party/libxml/src/parser.c 			     ctxt->input->buf->buffer->use) &&
input            11473 third_party/libxml/src/parser.c 			          ctxt->input->buf->buffer->use; base++) {
input            11505 third_party/libxml/src/parser.c 		            ctxt->input->buf->buffer->use)
input            11513 third_party/libxml/src/parser.c 		     (unsigned int) base + i < ctxt->input->buf->buffer->use;
input            11652 third_party/libxml/src/parser.c 			ctxt->input->cur[0], ctxt->input->cur[1],
input            11653 third_party/libxml/src/parser.c 			ctxt->input->cur[2], ctxt->input->cur[3]);
input            11694 third_party/libxml/src/parser.c     if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
input            11695 third_party/libxml/src/parser.c         (ctxt->input->buf != NULL) && (ctxt->instate != XML_PARSER_EOF))  {
input            11696 third_party/libxml/src/parser.c 	int base = ctxt->input->base - ctxt->input->buf->buffer->content;
input            11697 third_party/libxml/src/parser.c 	int cur = ctxt->input->cur - ctxt->input->base;
input            11705 third_party/libxml/src/parser.c         if ((ctxt->instate == XML_PARSER_START) && (ctxt->input != NULL) &&
input            11706 third_party/libxml/src/parser.c             (ctxt->input->buf != NULL) && (ctxt->input->buf->encoder != NULL)) {
input            11709 third_party/libxml/src/parser.c             if ((xmlStrcasestr(BAD_CAST ctxt->input->buf->encoder->name,
input            11711 third_party/libxml/src/parser.c                 (xmlStrcasestr(BAD_CAST ctxt->input->buf->encoder->name,
input            11714 third_party/libxml/src/parser.c             else if ((xmlStrcasestr(BAD_CAST ctxt->input->buf->encoder->name,
input            11716 third_party/libxml/src/parser.c                      (xmlStrcasestr(BAD_CAST ctxt->input->buf->encoder->name,
input            11720 third_party/libxml/src/parser.c             if (ctxt->input->buf->rawconsumed < len)
input            11721 third_party/libxml/src/parser.c                 len -= ctxt->input->buf->rawconsumed;
input            11735 third_party/libxml/src/parser.c 	res =xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
input            11741 third_party/libxml/src/parser.c 	ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            11742 third_party/libxml/src/parser.c 	ctxt->input->cur = ctxt->input->base + cur;
input            11743 third_party/libxml/src/parser.c 	ctxt->input->end =
input            11744 third_party/libxml/src/parser.c 	    &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
input            11750 third_party/libxml/src/parser.c 	if ((ctxt->input != NULL) && ctxt->input->buf != NULL) {
input            11751 third_party/libxml/src/parser.c 	    xmlParserInputBufferPtr in = ctxt->input->buf;
input            11781 third_party/libxml/src/parser.c     if ((end_in_lf == 1) && (ctxt->input != NULL) &&
input            11782 third_party/libxml/src/parser.c         (ctxt->input->buf != NULL)) {
input            11783 third_party/libxml/src/parser.c 	xmlParserInputBufferPush(ctxt->input->buf, 1, "\r");
input            11791 third_party/libxml/src/parser.c 	if (ctxt->input != NULL) {
input            11792 third_party/libxml/src/parser.c 	    if (ctxt->input->buf == NULL)
input            11793 third_party/libxml/src/parser.c 		avail = ctxt->input->length -
input            11794 third_party/libxml/src/parser.c 			(ctxt->input->cur - ctxt->input->base);
input            11796 third_party/libxml/src/parser.c 		avail = ctxt->input->buf->buffer->use -
input            11797 third_party/libxml/src/parser.c 			(ctxt->input->cur - ctxt->input->base);
input            11931 third_party/libxml/src/parser.c     } else if ((ctxt->input != NULL) && (ctxt->input->buf != NULL)) {
input            11932 third_party/libxml/src/parser.c 	int base = ctxt->input->base - ctxt->input->buf->buffer->content;
input            11933 third_party/libxml/src/parser.c 	int cur = ctxt->input->cur - ctxt->input->base;
input            11935 third_party/libxml/src/parser.c 	xmlParserInputBufferPush(ctxt->input->buf, size, chunk);	      
input            11937 third_party/libxml/src/parser.c 	ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            11938 third_party/libxml/src/parser.c 	ctxt->input->cur = ctxt->input->base + cur;
input            11939 third_party/libxml/src/parser.c 	ctxt->input->end =
input            11940 third_party/libxml/src/parser.c 	    &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->use];
input            11967 third_party/libxml/src/parser.c     if (ctxt->input != NULL) {
input            11968 third_party/libxml/src/parser.c 	ctxt->input->cur = BAD_CAST"";
input            11969 third_party/libxml/src/parser.c 	ctxt->input->base = ctxt->input->cur;
input            12055 third_party/libxml/src/parser.c xmlIOParseDTD(xmlSAXHandlerPtr sax, xmlParserInputBufferPtr input,
input            12062 third_party/libxml/src/parser.c     if (input == NULL)
input            12067 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            12086 third_party/libxml/src/parser.c     pinput = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            12089 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            12109 third_party/libxml/src/parser.c     pinput->base = ctxt->input->cur;
input            12110 third_party/libxml/src/parser.c     pinput->cur = ctxt->input->cur;
input            12127 third_party/libxml/src/parser.c         ((ctxt->input->end - ctxt->input->cur) >= 4)) {
input            12187 third_party/libxml/src/parser.c     xmlParserInputPtr input = NULL;
input            12222 third_party/libxml/src/parser.c 	input = ctxt->sax->resolveEntity(ctxt->userData, ExternalID,
input            12224 third_party/libxml/src/parser.c     if (input == NULL) {
input            12235 third_party/libxml/src/parser.c     if (xmlPushInput(ctxt, input) < 0) {
input            12242 third_party/libxml/src/parser.c     if ((ctxt->input->end - ctxt->input->cur) >= 4) {
input            12243 third_party/libxml/src/parser.c 	enc = xmlDetectCharEncoding(ctxt->input->cur, 4);
input            12247 third_party/libxml/src/parser.c     if (input->filename == NULL)
input            12248 third_party/libxml/src/parser.c 	input->filename = (char *) systemIdCanonic;
input            12251 third_party/libxml/src/parser.c     input->line = 1;
input            12252 third_party/libxml/src/parser.c     input->col = 1;
input            12253 third_party/libxml/src/parser.c     input->base = ctxt->input->cur;
input            12254 third_party/libxml/src/parser.c     input->cur = ctxt->input->cur;
input            12255 third_party/libxml/src/parser.c     input->free = NULL;
input            12413 third_party/libxml/src/parser.c     if ((ctxt->input->end - ctxt->input->cur) >= 4) {
input            12433 third_party/libxml/src/parser.c 	    (!xmlStrEqual(ctxt->input->version, BAD_CAST "1.0"))) {
input            12631 third_party/libxml/src/parser.c     if ((ctxt->input->end - ctxt->input->cur) >= 4) {
input            12697 third_party/libxml/src/parser.c     if (ctxt->input != NULL) {
input            12698 third_party/libxml/src/parser.c 	oldctxt->sizeentities += ctxt->input->consumed;
input            12699 third_party/libxml/src/parser.c 	oldctxt->sizeentities += (ctxt->input->cur - ctxt->input->base);
input            13632 third_party/libxml/src/parser.c 	    if (ctxt->input->buf->compressed > 0)
input            13635 third_party/libxml/src/parser.c 		ret->compression = ctxt->input->buf->compressed;
input            13735 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            13740 third_party/libxml/src/parser.c     input = xmlNewInputStream(ctxt);
input            13741 third_party/libxml/src/parser.c     if (input == NULL) {
input            13749 third_party/libxml/src/parser.c         input->filename = (char *) xmlCanonicPath((const xmlChar *)filename);
input            13750 third_party/libxml/src/parser.c     input->base = buffer;
input            13751 third_party/libxml/src/parser.c     input->cur = buffer;
input            13752 third_party/libxml/src/parser.c     input->end = &buffer[xmlStrlen(buffer)];
input            13753 third_party/libxml/src/parser.c     inputPush(ctxt, input);
input            13823 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            13842 third_party/libxml/src/parser.c     input = xmlNewInputStream(ctxt);
input            13843 third_party/libxml/src/parser.c     if (input == NULL) {
input            13849 third_party/libxml/src/parser.c     input->filename = NULL;
input            13850 third_party/libxml/src/parser.c     input->buf = buf;
input            13851 third_party/libxml/src/parser.c     input->base = input->buf->buffer->content;
input            13852 third_party/libxml/src/parser.c     input->cur = input->buf->buffer->content;
input            13853 third_party/libxml/src/parser.c     input->end = &input->buf->buffer->content[input->buf->buffer->use];
input            13855 third_party/libxml/src/parser.c     inputPush(ctxt, input);
input            14268 third_party/libxml/src/parser.c     xmlParserInputPtr input;
input            14276 third_party/libxml/src/parser.c     while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
input            14277 third_party/libxml/src/parser.c         xmlFreeInputStream(input);
input            14280 third_party/libxml/src/parser.c     ctxt->input = NULL;
input            14429 third_party/libxml/src/parser.c     if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
input            14430 third_party/libxml/src/parser.c         (ctxt->input->buf != NULL)) {
input            14431 third_party/libxml/src/parser.c         int base = ctxt->input->base - ctxt->input->buf->buffer->content;
input            14432 third_party/libxml/src/parser.c         int cur = ctxt->input->cur - ctxt->input->base;
input            14434 third_party/libxml/src/parser.c         xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
input            14436 third_party/libxml/src/parser.c         ctxt->input->base = ctxt->input->buf->buffer->content + base;
input            14437 third_party/libxml/src/parser.c         ctxt->input->cur = ctxt->input->base + cur;
input            14438 third_party/libxml/src/parser.c         ctxt->input->end =
input            14439 third_party/libxml/src/parser.c             &ctxt->input->buf->buffer->content[ctxt->input->buf->buffer->
input            14642 third_party/libxml/src/parser.c     if ((URL != NULL) && (ctxt->input != NULL) &&
input            14643 third_party/libxml/src/parser.c         (ctxt->input->filename == NULL))
input            14644 third_party/libxml/src/parser.c         ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
input            14748 third_party/libxml/src/parser.c     xmlParserInputBufferPtr input;
input            14754 third_party/libxml/src/parser.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            14755 third_party/libxml/src/parser.c     if (input == NULL)
input            14757 third_party/libxml/src/parser.c     input->closecallback = NULL;
input            14760 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            14763 third_party/libxml/src/parser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            14765 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            14791 third_party/libxml/src/parser.c     xmlParserInputBufferPtr input;
input            14797 third_party/libxml/src/parser.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            14799 third_party/libxml/src/parser.c     if (input == NULL)
input            14803 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            14806 third_party/libxml/src/parser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            14808 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            14901 third_party/libxml/src/parser.c     xmlParserInputBufferPtr input;
input            14911 third_party/libxml/src/parser.c     input = xmlParserInputBufferCreateMem(buffer, size, XML_CHAR_ENCODING_NONE);
input            14912 third_party/libxml/src/parser.c     if (input == NULL) {
input            14916 third_party/libxml/src/parser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            14918 third_party/libxml/src/parser.c 	xmlFreeParserInputBuffer(input);
input            14945 third_party/libxml/src/parser.c     xmlParserInputBufferPtr input;
input            14956 third_party/libxml/src/parser.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            14957 third_party/libxml/src/parser.c     if (input == NULL)
input            14959 third_party/libxml/src/parser.c     input->closecallback = NULL;
input            14960 third_party/libxml/src/parser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            14962 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input            14990 third_party/libxml/src/parser.c     xmlParserInputBufferPtr input;
input            15000 third_party/libxml/src/parser.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            15002 third_party/libxml/src/parser.c     if (input == NULL)
input            15004 third_party/libxml/src/parser.c     stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
input            15006 third_party/libxml/src/parser.c         xmlFreeParserInputBuffer(input);
input             451 third_party/libxml/src/parserInternals.c         (ctxt->input == NULL))
input             455 third_party/libxml/src/parserInternals.c         if ((*ctxt->input->cur == 0) &&
input             456 third_party/libxml/src/parserInternals.c             (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0) &&
input             475 third_party/libxml/src/parserInternals.c             if (*(ctxt->input->cur) == '\n') {
input             476 third_party/libxml/src/parserInternals.c                 ctxt->input->line++; ctxt->input->col = 1;
input             478 third_party/libxml/src/parserInternals.c                 ctxt->input->col++;
input             491 third_party/libxml/src/parserInternals.c             cur = ctxt->input->cur;
input             498 third_party/libxml/src/parserInternals.c                     xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             499 third_party/libxml/src/parserInternals.c                     cur = ctxt->input->cur;
input             507 third_party/libxml/src/parserInternals.c                         xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             508 third_party/libxml/src/parserInternals.c                         cur = ctxt->input->cur;
input             514 third_party/libxml/src/parserInternals.c                             xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             515 third_party/libxml/src/parserInternals.c                             cur = ctxt->input->cur;
input             521 third_party/libxml/src/parserInternals.c                         ctxt->input->cur += 4;
input             528 third_party/libxml/src/parserInternals.c                         ctxt->input->cur += 3;
input             542 third_party/libxml/src/parserInternals.c                     ctxt->input->cur += 2;
input             545 third_party/libxml/src/parserInternals.c                 ctxt->input->cur++;
input             548 third_party/libxml/src/parserInternals.c             if (*ctxt->input->cur == 0)
input             549 third_party/libxml/src/parserInternals.c                 xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             558 third_party/libxml/src/parserInternals.c         if (*(ctxt->input->cur) == '\n') {
input             559 third_party/libxml/src/parserInternals.c             ctxt->input->line++; ctxt->input->col = 1;
input             561 third_party/libxml/src/parserInternals.c             ctxt->input->col++;
input             562 third_party/libxml/src/parserInternals.c         ctxt->input->cur++;
input             564 third_party/libxml/src/parserInternals.c         if (*ctxt->input->cur == 0)
input             565 third_party/libxml/src/parserInternals.c             xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             567 third_party/libxml/src/parserInternals.c     if ((*ctxt->input->cur == '%') && (!ctxt->html))
input             569 third_party/libxml/src/parserInternals.c     if ((*ctxt->input->cur == 0) &&
input             570 third_party/libxml/src/parserInternals.c         (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0))
input             581 third_party/libxml/src/parserInternals.c     if ((ctxt == NULL) || (ctxt->input == NULL) ||
input             582 third_party/libxml/src/parserInternals.c         (ctxt->input->end - ctxt->input->cur < 4)) {
input             590 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[0], ctxt->input->cur[1],
input             591 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[2], ctxt->input->cur[3]);
input             597 third_party/libxml/src/parserInternals.c     ctxt->input->cur++;
input             621 third_party/libxml/src/parserInternals.c     if ((ctxt == NULL) || (len == NULL) || (ctxt->input == NULL)) return(0);
input             625 third_party/libxml/src/parserInternals.c     if ((*ctxt->input->cur >= 0x20) && (*ctxt->input->cur <= 0x7F)) {
input             627 third_party/libxml/src/parserInternals.c 	    return((int) *ctxt->input->cur);
input             641 third_party/libxml/src/parserInternals.c 	const unsigned char *cur = ctxt->input->cur;
input             650 third_party/libxml/src/parserInternals.c 		xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             651 third_party/libxml/src/parserInternals.c                 cur = ctxt->input->cur;
input             657 third_party/libxml/src/parserInternals.c 		    xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             658 third_party/libxml/src/parserInternals.c                     cur = ctxt->input->cur;
input             664 third_party/libxml/src/parserInternals.c 			xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             665 third_party/libxml/src/parserInternals.c                         cur = ctxt->input->cur;
input             703 third_party/libxml/src/parserInternals.c 	    if (*ctxt->input->cur == 0)
input             704 third_party/libxml/src/parserInternals.c 		xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
input             705 third_party/libxml/src/parserInternals.c 	    if ((*ctxt->input->cur == 0) &&
input             706 third_party/libxml/src/parserInternals.c 	        (ctxt->input->end > ctxt->input->cur)) {
input             710 third_party/libxml/src/parserInternals.c 	    if (*ctxt->input->cur == 0xD) {
input             711 third_party/libxml/src/parserInternals.c 		if (ctxt->input->cur[1] == 0xA) {
input             713 third_party/libxml/src/parserInternals.c 		    ctxt->input->cur++;
input             717 third_party/libxml/src/parserInternals.c 	    return((int) *ctxt->input->cur);
input             726 third_party/libxml/src/parserInternals.c     if (*ctxt->input->cur == 0xD) {
input             727 third_party/libxml/src/parserInternals.c 	if (ctxt->input->cur[1] == 0xA) {
input             729 third_party/libxml/src/parserInternals.c 	    ctxt->input->cur++;
input             733 third_party/libxml/src/parserInternals.c     return((int) *ctxt->input->cur);
input             740 third_party/libxml/src/parserInternals.c     if (ctxt->input->end - ctxt->input->cur < 4) {
input             756 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[0], ctxt->input->cur[1],
input             757 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[2], ctxt->input->cur[3]);
input             764 third_party/libxml/src/parserInternals.c     return((int) *ctxt->input->cur);
input             853 third_party/libxml/src/parserInternals.c     if ((ctxt == NULL) || (ctxt->input == NULL) ||
input             854 third_party/libxml/src/parserInternals.c         (ctxt->input->end - ctxt->input->cur < 4)) {
input             869 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[0], ctxt->input->cur[1],
input             870 third_party/libxml/src/parserInternals.c 			ctxt->input->cur[2], ctxt->input->cur[3]);
input             957 third_party/libxml/src/parserInternals.c xmlSwitchInputEncodingInt(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
input             994 third_party/libxml/src/parserInternals.c 	    if ((ctxt->input != NULL) &&
input             995 third_party/libxml/src/parserInternals.c 		(ctxt->input->cur[0] == 0xEF) &&
input             996 third_party/libxml/src/parserInternals.c 		(ctxt->input->cur[1] == 0xBB) &&
input             997 third_party/libxml/src/parserInternals.c 		(ctxt->input->cur[2] == 0xBF)) {
input             998 third_party/libxml/src/parserInternals.c 		ctxt->input->cur += 3;
input            1011 third_party/libxml/src/parserInternals.c         if ((ctxt->input != NULL) && (ctxt->input->cur != NULL) &&
input            1012 third_party/libxml/src/parserInternals.c             (ctxt->input->cur[0] == 0xEF) &&
input            1013 third_party/libxml/src/parserInternals.c             (ctxt->input->cur[1] == 0xBB) &&
input            1014 third_party/libxml/src/parserInternals.c             (ctxt->input->cur[2] == 0xBF)) {
input            1015 third_party/libxml/src/parserInternals.c             ctxt->input->cur += 3;
input            1106 third_party/libxml/src/parserInternals.c 		    (ctxt->input != NULL) &&
input            1107 third_party/libxml/src/parserInternals.c 		    (ctxt->input->encoding != NULL)) {
input            1108 third_party/libxml/src/parserInternals.c 		    ctxt->encoding = xmlStrdup(ctxt->input->encoding);
input            1150 third_party/libxml/src/parserInternals.c xmlSwitchInputEncodingInt(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
input            1157 third_party/libxml/src/parserInternals.c     if (input == NULL)
input            1159 third_party/libxml/src/parserInternals.c     if (input->buf != NULL) {
input            1160 third_party/libxml/src/parserInternals.c         if (input->buf->encoder != NULL) {
input            1165 third_party/libxml/src/parserInternals.c             if (input->buf->encoder == handler)
input            1183 third_party/libxml/src/parserInternals.c             xmlCharEncCloseFunc(input->buf->encoder);
input            1184 third_party/libxml/src/parserInternals.c             input->buf->encoder = handler;
input            1187 third_party/libxml/src/parserInternals.c         input->buf->encoder = handler;
input            1192 third_party/libxml/src/parserInternals.c         if ((input->buf->buffer != NULL) && (input->buf->buffer->use > 0)) {
input            1203 third_party/libxml/src/parserInternals.c                 (input->cur[0] == 0xFF) && (input->cur[1] == 0xFE)) {
input            1204 third_party/libxml/src/parserInternals.c                 input->cur += 2;
input            1208 third_party/libxml/src/parserInternals.c                 (input->cur[0] == 0xFE) && (input->cur[1] == 0xFF)) {
input            1209 third_party/libxml/src/parserInternals.c                 input->cur += 2;
input            1218 third_party/libxml/src/parserInternals.c                 (input->cur[0] == 0xEF) &&
input            1219 third_party/libxml/src/parserInternals.c                 (input->cur[1] == 0xBB) && (input->cur[2] == 0xBF)) {
input            1220 third_party/libxml/src/parserInternals.c                 input->cur += 3;
input            1227 third_party/libxml/src/parserInternals.c             processed = input->cur - input->base;
input            1228 third_party/libxml/src/parserInternals.c             xmlBufferShrink(input->buf->buffer, processed);
input            1229 third_party/libxml/src/parserInternals.c             input->buf->raw = input->buf->buffer;
input            1230 third_party/libxml/src/parserInternals.c             input->buf->buffer = xmlBufferCreate();
input            1231 third_party/libxml/src/parserInternals.c 	    input->buf->rawconsumed = processed;
input            1232 third_party/libxml/src/parserInternals.c 	    use = input->buf->raw->use;
input            1238 third_party/libxml/src/parserInternals.c                 nbchars = xmlCharEncInFunc(input->buf->encoder,
input            1239 third_party/libxml/src/parserInternals.c                                            input->buf->buffer,
input            1240 third_party/libxml/src/parserInternals.c                                            input->buf->raw);
input            1248 third_party/libxml/src/parserInternals.c                 nbchars = xmlCharEncFirstLineInt(input->buf->encoder,
input            1249 third_party/libxml/src/parserInternals.c                                                  input->buf->buffer,
input            1250 third_party/libxml/src/parserInternals.c                                                  input->buf->raw,
input            1259 third_party/libxml/src/parserInternals.c 	    input->buf->rawconsumed += use - input->buf->raw->use;
input            1260 third_party/libxml/src/parserInternals.c             input->base = input->cur = input->buf->buffer->content;
input            1261 third_party/libxml/src/parserInternals.c             input->end = &input->base[input->buf->buffer->use];
input            1265 third_party/libxml/src/parserInternals.c     } else if (input->length == 0) {
input            1288 third_party/libxml/src/parserInternals.c xmlSwitchInputEncoding(xmlParserCtxtPtr ctxt, xmlParserInputPtr input,
input            1290 third_party/libxml/src/parserInternals.c     return(xmlSwitchInputEncodingInt(ctxt, input, handler, -1));
input            1312 third_party/libxml/src/parserInternals.c         if (ctxt->input != NULL) {
input            1313 third_party/libxml/src/parserInternals.c 	    ret = xmlSwitchInputEncodingInt(ctxt, ctxt->input, handler, len);
input            1357 third_party/libxml/src/parserInternals.c xmlFreeInputStream(xmlParserInputPtr input) {
input            1358 third_party/libxml/src/parserInternals.c     if (input == NULL) return;
input            1360 third_party/libxml/src/parserInternals.c     if (input->filename != NULL) xmlFree((char *) input->filename);
input            1361 third_party/libxml/src/parserInternals.c     if (input->directory != NULL) xmlFree((char *) input->directory);
input            1362 third_party/libxml/src/parserInternals.c     if (input->encoding != NULL) xmlFree((char *) input->encoding);
input            1363 third_party/libxml/src/parserInternals.c     if (input->version != NULL) xmlFree((char *) input->version);
input            1364 third_party/libxml/src/parserInternals.c     if ((input->free != NULL) && (input->base != NULL))
input            1365 third_party/libxml/src/parserInternals.c         input->free((xmlChar *) input->base);
input            1366 third_party/libxml/src/parserInternals.c     if (input->buf != NULL) 
input            1367 third_party/libxml/src/parserInternals.c         xmlFreeParserInputBuffer(input->buf);
input            1368 third_party/libxml/src/parserInternals.c     xmlFree(input);
input            1380 third_party/libxml/src/parserInternals.c     xmlParserInputPtr input;
input            1383 third_party/libxml/src/parserInternals.c     input = (xmlParserInputPtr) xmlMalloc(sizeof(xmlParserInput));
input            1384 third_party/libxml/src/parserInternals.c     if (input == NULL) {
input            1388 third_party/libxml/src/parserInternals.c     memset(input, 0, sizeof(xmlParserInput));
input            1389 third_party/libxml/src/parserInternals.c     input->line = 1;
input            1390 third_party/libxml/src/parserInternals.c     input->col = 1;
input            1391 third_party/libxml/src/parserInternals.c     input->standalone = -1;
input            1396 third_party/libxml/src/parserInternals.c     input->id = id++;
input            1397 third_party/libxml/src/parserInternals.c     return(input);
input            1412 third_party/libxml/src/parserInternals.c xmlNewIOInputStream(xmlParserCtxtPtr ctxt, xmlParserInputBufferPtr input,
input            1416 third_party/libxml/src/parserInternals.c     if (input == NULL) return(NULL);
input            1424 third_party/libxml/src/parserInternals.c     inputStream->buf = input;
input            1446 third_party/libxml/src/parserInternals.c     xmlParserInputPtr input;
input            1484 third_party/libxml/src/parserInternals.c     input = xmlNewInputStream(ctxt);
input            1485 third_party/libxml/src/parserInternals.c     if (input == NULL) {
input            1489 third_party/libxml/src/parserInternals.c 	input->filename = (char *) xmlStrdup((xmlChar *) entity->URI);
input            1490 third_party/libxml/src/parserInternals.c     input->base = entity->content;
input            1491 third_party/libxml/src/parserInternals.c     input->cur = entity->content;
input            1492 third_party/libxml/src/parserInternals.c     input->length = entity->length;
input            1493 third_party/libxml/src/parserInternals.c     input->end = &entity->content[input->length];
input            1494 third_party/libxml/src/parserInternals.c     return(input);
input            1507 third_party/libxml/src/parserInternals.c     xmlParserInputPtr input;
input            1517 third_party/libxml/src/parserInternals.c     input = xmlNewInputStream(ctxt);
input            1518 third_party/libxml/src/parserInternals.c     if (input == NULL) {
input            1522 third_party/libxml/src/parserInternals.c     input->base = buffer;
input            1523 third_party/libxml/src/parserInternals.c     input->cur = buffer;
input            1524 third_party/libxml/src/parserInternals.c     input->length = xmlStrlen(buffer);
input            1525 third_party/libxml/src/parserInternals.c     input->end = &buffer[input->length];
input            1526 third_party/libxml/src/parserInternals.c     return(input);
input            1606 third_party/libxml/src/parserInternals.c     xmlParserInputPtr input;
input            1642 third_party/libxml/src/parserInternals.c 	ctxt->input = NULL;
input            1645 third_party/libxml/src/parserInternals.c     while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
input            1646 third_party/libxml/src/parserInternals.c         xmlFreeInputStream(input);
input            1649 third_party/libxml/src/parserInternals.c     ctxt->input = NULL;
input            1674 third_party/libxml/src/parserInternals.c 	ctxt->input = NULL;
input            1692 third_party/libxml/src/parserInternals.c 	ctxt->input = NULL;
input            1713 third_party/libxml/src/parserInternals.c 	ctxt->input = NULL;
input            1775 third_party/libxml/src/parserInternals.c     xmlParserInputPtr input;
input            1779 third_party/libxml/src/parserInternals.c     while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
input            1780 third_party/libxml/src/parserInternals.c         xmlFreeInputStream(input);
input             300 third_party/libxml/src/runtest.c xmlParserPrintFileContextInternal(xmlParserInputPtr input ,
input             307 third_party/libxml/src/runtest.c     if (input == NULL) return;
input             308 third_party/libxml/src/runtest.c     cur = input->cur;
input             309 third_party/libxml/src/runtest.c     base = input->base;
input             321 third_party/libxml/src/runtest.c     col = input->cur - cur;
input             359 third_party/libxml/src/runtest.c     xmlParserInputPtr input = NULL;
input             389 third_party/libxml/src/runtest.c         input = ctxt->input;
input             390 third_party/libxml/src/runtest.c         if ((input != NULL) && (input->filename == NULL) &&
input             392 third_party/libxml/src/runtest.c             cur = input;
input             393 third_party/libxml/src/runtest.c             input = ctxt->inputTab[ctxt->inputNr - 2];
input             395 third_party/libxml/src/runtest.c         if (input != NULL) {
input             396 third_party/libxml/src/runtest.c             if (input->filename)
input             397 third_party/libxml/src/runtest.c                 channel(data, "%s:%d: ", input->filename, input->line);
input             399 third_party/libxml/src/runtest.c                 channel(data, "Entity: line %d: ", input->line);
input             506 third_party/libxml/src/runtest.c         xmlParserPrintFileContextInternal(input, channel, data);
input            2322 third_party/libxml/src/runtest.c     FILE *input;
input            2339 third_party/libxml/src/runtest.c     input = fopen(filename, "rb");
input            2340 third_party/libxml/src/runtest.c     if (input == NULL) {
input            2346 third_party/libxml/src/runtest.c     while (fgets(expression, 4500, input) != NULL) {
input            2361 third_party/libxml/src/runtest.c     fclose(input);
input              31 third_party/libxml/src/testAutomata.c     FILE *input;
input              44 third_party/libxml/src/testAutomata.c     input = fopen(filename, "r");
input              45 third_party/libxml/src/testAutomata.c     if (input == NULL) {
input              55 third_party/libxml/src/testAutomata.c 	fclose(input);
input              63 third_party/libxml/src/testAutomata.c 	fclose(input);
input              68 third_party/libxml/src/testAutomata.c     while (fgets(expr, 4500, input) != NULL) {
input             208 third_party/libxml/src/testAutomata.c     fclose(input);
input              39 third_party/libxml/src/testRegexp.c     FILE *input;
input              43 third_party/libxml/src/testRegexp.c     input = fopen(filename, "r");
input              44 third_party/libxml/src/testRegexp.c     if (input == NULL) {
input              49 third_party/libxml/src/testRegexp.c     while (fgets(expression, 4500, input) != NULL) {
input              84 third_party/libxml/src/testRegexp.c     fclose(input);
input              93 third_party/libxml/src/testRegexp.c     FILE *input;
input              97 third_party/libxml/src/testRegexp.c     input = fopen(filename, "r");
input              98 third_party/libxml/src/testRegexp.c     if (input == NULL) {
input             103 third_party/libxml/src/testRegexp.c     while (fgets(expression, 4500, input) != NULL) {
input             181 third_party/libxml/src/testRegexp.c     fclose(input);
input             117 third_party/libxml/src/testXPath.c     FILE *input;
input             121 third_party/libxml/src/testXPath.c     input = fopen(filename, "r");
input             122 third_party/libxml/src/testXPath.c     if (input == NULL) {
input             127 third_party/libxml/src/testXPath.c     while (fgets(expression, 4500, input) != NULL) {
input             140 third_party/libxml/src/testXPath.c     fclose(input);
input            9382 third_party/libxml/src/testapi.c     xmlChar * input; /* A string to convert to XML. */
input            9389 third_party/libxml/src/testapi.c         input = gen_const_xmlChar_ptr(n_input, 1);
input            9391 third_party/libxml/src/testapi.c         ret_val = xmlEncodeEntitiesReentrant(doc, (const xmlChar *)input);
input            9395 third_party/libxml/src/testapi.c         des_const_xmlChar_ptr(n_input, (const xmlChar *)input, 1);
input            9421 third_party/libxml/src/testapi.c     xmlChar * input; /* A string to convert to XML. */
input            9428 third_party/libxml/src/testapi.c         input = gen_const_xmlChar_ptr(n_input, 1);
input            9430 third_party/libxml/src/testapi.c         ret_val = xmlEncodeSpecialChars(doc, (const xmlChar *)input);
input            9434 third_party/libxml/src/testapi.c         des_const_xmlChar_ptr(n_input, (const xmlChar *)input, 1);
input            13227 third_party/libxml/src/testapi.c     xmlParserInputBufferPtr input; /* an Input Buffer */
input            13236 third_party/libxml/src/testapi.c         input = gen_xmlParserInputBufferPtr(n_input, 1);
input            13239 third_party/libxml/src/testapi.c         ret_val = xmlIOParseDTD(sax, input, enc);
input            13240 third_party/libxml/src/testapi.c         input = NULL;
input            13244 third_party/libxml/src/testapi.c         des_xmlParserInputBufferPtr(n_input, input, 1);
input            13461 third_party/libxml/src/testapi.c     xmlParserInputBufferPtr input; /* an I/O Input */
input            13471 third_party/libxml/src/testapi.c         input = gen_xmlParserInputBufferPtr(n_input, 1);
input            13474 third_party/libxml/src/testapi.c         ret_val = xmlNewIOInputStream(ctxt, input, enc);
input            13475 third_party/libxml/src/testapi.c         if (ret_val != NULL) input = NULL;
input            13479 third_party/libxml/src/testapi.c         des_xmlParserInputBufferPtr(n_input, input, 1);
input            16374 third_party/libxml/src/testapi.c     xmlParserInputPtr input; /* an XML parser input fragment (entity, XML fragment ...). */
input            16381 third_party/libxml/src/testapi.c         input = gen_xmlParserInputPtr(n_input, 1);
input            16383 third_party/libxml/src/testapi.c         ret_val = xmlPushInput(ctxt, input);
input            16387 third_party/libxml/src/testapi.c         des_xmlParserInputPtr(n_input, input, 1);
input            16695 third_party/libxml/src/testapi.c     xmlParserInputPtr input; /* the input stream */
input            16705 third_party/libxml/src/testapi.c         input = gen_xmlParserInputPtr(n_input, 1);
input            16708 third_party/libxml/src/testapi.c         ret_val = xmlSwitchInputEncoding(ctxt, input, handler);
input            16712 third_party/libxml/src/testapi.c         des_xmlParserInputPtr(n_input, input, 1);
input            29464 third_party/libxml/src/testapi.c     xmlParserInputPtr input; /* an xmlParserInputPtr input */
input            29469 third_party/libxml/src/testapi.c         input = gen_xmlParserInputPtr(n_input, 0);
input            29471 third_party/libxml/src/testapi.c         xmlParserPrintFileContext(input);
input            29473 third_party/libxml/src/testapi.c         des_xmlParserInputPtr(n_input, input, 0);
input            29494 third_party/libxml/src/testapi.c     xmlParserInputPtr input; /* an xmlParserInputPtr input */
input            29499 third_party/libxml/src/testapi.c         input = gen_xmlParserInputPtr(n_input, 0);
input            29501 third_party/libxml/src/testapi.c         xmlParserPrintFileInfo(input);
input            29503 third_party/libxml/src/testapi.c         des_xmlParserInputPtr(n_input, input, 0);
input            29761 third_party/libxml/src/testapi.c     xmlParserInputBufferPtr input; /* the xmlParserInputBufferPtr used to read data */
input            29769 third_party/libxml/src/testapi.c         input = gen_xmlParserInputBufferPtr(n_input, 0);
input            29772 third_party/libxml/src/testapi.c         ret_val = xmlNewTextReader(input, URI);
input            29775 third_party/libxml/src/testapi.c         des_xmlParserInputBufferPtr(n_input, input, 0);
input            32529 third_party/libxml/src/testapi.c     xmlParserInputBufferPtr input; /* xmlParserInputBufferPtr used to feed the reader, will be destroyed with it. */
input            32545 third_party/libxml/src/testapi.c         input = gen_xmlParserInputBufferPtr(n_input, 1);
input            32550 third_party/libxml/src/testapi.c         ret_val = xmlTextReaderSetup(reader, input, URL, (const char *)encoding, options);
input            34562 third_party/libxml/src/testapi.c     xmlParserInputBufferPtr input; /* the input to use for reading the data */
input            34578 third_party/libxml/src/testapi.c         input = gen_xmlParserInputBufferPtr(n_input, 1);
input            34583 third_party/libxml/src/testapi.c         ret_val = xmlSchemaValidateStream(ctxt, input, enc, sax, user_data);
input            34587 third_party/libxml/src/testapi.c         des_xmlParserInputBufferPtr(n_input, input, 1);
input            6452 third_party/libxml/src/trio.c   unsigned char input;
input            6456 third_party/libxml/src/trio.c   size = read(fd, &input, sizeof(char));
input            6464 third_party/libxml/src/trio.c       self->current = (size == 0) ? EOF : input;
input            3968 third_party/libxml/src/xmlIO.c     xmlParserInputPtr input = NULL;
input            3987 third_party/libxml/src/xmlIO.c     input = xmlDefaultExternalEntityLoader((const char *) resource, ID, ctxt);
input            3990 third_party/libxml/src/xmlIO.c     return(input);
input             557 third_party/libxml/src/xmllint.c xmlHTMLPrintFileInfo(xmlParserInputPtr input) {
input             562 third_party/libxml/src/xmllint.c     if (input != NULL) {
input             563 third_party/libxml/src/xmllint.c 	if (input->filename) {
input             564 third_party/libxml/src/xmllint.c 	    snprintf(&buffer[len], sizeof(buffer) - len, "%s:%d: ", input->filename,
input             565 third_party/libxml/src/xmllint.c 		    input->line);
input             567 third_party/libxml/src/xmllint.c 	    snprintf(&buffer[len], sizeof(buffer) - len, "Entity: line %d: ", input->line);
input             581 third_party/libxml/src/xmllint.c xmlHTMLPrintFileContext(xmlParserInputPtr input) {
input             586 third_party/libxml/src/xmllint.c     if (input == NULL) return;
input             588 third_party/libxml/src/xmllint.c     cur = input->cur;
input             589 third_party/libxml/src/xmllint.c     base = input->base;
input             607 third_party/libxml/src/xmllint.c     cur = input->cur;
input             635 third_party/libxml/src/xmllint.c     xmlParserInputPtr input;
input             640 third_party/libxml/src/xmllint.c     input = ctxt->input;
input             641 third_party/libxml/src/xmllint.c     if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
input             642 third_party/libxml/src/xmllint.c         input = ctxt->inputTab[ctxt->inputNr - 2];
input             645 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileInfo(input);
input             655 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileContext(input);
input             672 third_party/libxml/src/xmllint.c     xmlParserInputPtr input;
input             677 third_party/libxml/src/xmllint.c     input = ctxt->input;
input             678 third_party/libxml/src/xmllint.c     if ((input != NULL) && (input->filename == NULL) && (ctxt->inputNr > 1)) {
input             679 third_party/libxml/src/xmllint.c         input = ctxt->inputTab[ctxt->inputNr - 2];
input             683 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileInfo(input);
input             693 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileContext(input);
input             710 third_party/libxml/src/xmllint.c     xmlParserInputPtr input;
input             715 third_party/libxml/src/xmllint.c     input = ctxt->input;
input             716 third_party/libxml/src/xmllint.c     if ((input->filename == NULL) && (ctxt->inputNr > 1))
input             717 third_party/libxml/src/xmllint.c         input = ctxt->inputTab[ctxt->inputNr - 2];
input             719 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileInfo(input);
input             729 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileContext(input);
input             747 third_party/libxml/src/xmllint.c     xmlParserInputPtr input;
input             752 third_party/libxml/src/xmllint.c     input = ctxt->input;
input             753 third_party/libxml/src/xmllint.c     if ((input->filename == NULL) && (ctxt->inputNr > 1))
input             754 third_party/libxml/src/xmllint.c         input = ctxt->inputTab[ctxt->inputNr - 2];
input             756 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileInfo(input);
input             766 third_party/libxml/src/xmllint.c     xmlHTMLPrintFileContext(input);
input            1825 third_party/libxml/src/xmllint.c     xmlParserInputBufferPtr input = NULL;
input            1974 third_party/libxml/src/xmllint.c         xmlFreeParserInputBuffer(input);
input             124 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr	input;	/* the input */
input             560 third_party/libxml/src/xmlreader.c     if (reader->input->buffer == NULL) {
input             565 third_party/libxml/src/xmlreader.c 		&reader->input->buffer->content[reader->cur]);
input             653 third_party/libxml/src/xmlreader.c 	if ((ctxt->node != NULL) && (ctxt->input != NULL) &&
input             654 third_party/libxml/src/xmlreader.c 	    (ctxt->input->cur != NULL) && (ctxt->input->cur[0] == '/') &&
input             655 third_party/libxml/src/xmlreader.c 	    (ctxt->input->cur[1] == '>'))
input             718 third_party/libxml/src/xmlreader.c 	if ((ctxt->node != NULL) && (ctxt->input != NULL) &&
input             719 third_party/libxml/src/xmlreader.c 	    (ctxt->input->cur != NULL) && (ctxt->input->cur[0] == '/') &&
input             720 third_party/libxml/src/xmlreader.c 	    (ctxt->input->cur[1] == '>'))
input             813 third_party/libxml/src/xmlreader.c     if ((reader->input == NULL) || (reader->input->buffer == NULL))
input             818 third_party/libxml/src/xmlreader.c     inbuf = reader->input->buffer;
input             826 third_party/libxml/src/xmlreader.c 		val = xmlParserInputBufferRead(reader->input, 4096);
input            2035 third_party/libxml/src/xmlreader.c xmlNewTextReader(xmlParserInputBufferPtr input, const char *URI) {
input            2038 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            2051 third_party/libxml/src/xmlreader.c     ret->input = input;
input            2094 third_party/libxml/src/xmlreader.c     if (ret->input->buffer->use < 4) {
input            2095 third_party/libxml/src/xmlreader.c 	xmlParserInputBufferRead(input, 4);
input            2097 third_party/libxml/src/xmlreader.c     if (ret->input->buffer->use >= 4) {
input            2099 third_party/libxml/src/xmlreader.c 			(const char *) ret->input->buffer->content, 4, URI);
input            2146 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            2150 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateFilename(URI, XML_CHAR_ENCODING_NONE);
input            2151 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            2153 third_party/libxml/src/xmlreader.c     ret = xmlNewTextReader(input, URI);
input            2155 third_party/libxml/src/xmlreader.c 	xmlFreeParserInputBuffer(input);
input            2237 third_party/libxml/src/xmlreader.c     if ((reader->input != NULL)  && (reader->allocs & XML_TEXTREADER_INPUT))
input            2238 third_party/libxml/src/xmlreader.c 	xmlFreeParserInputBuffer(reader->input);
input            2277 third_party/libxml/src/xmlreader.c     if ((reader->input != NULL)  && (reader->allocs & XML_TEXTREADER_INPUT)) {
input            2278 third_party/libxml/src/xmlreader.c 	xmlFreeParserInputBuffer(reader->input);
input            2487 third_party/libxml/src/xmlreader.c 	ret = reader->input;
input            2488 third_party/libxml/src/xmlreader.c 	reader->input = NULL;
input            3838 third_party/libxml/src/xmlreader.c         (reader->ctxt->input == NULL)) {
input            3841 third_party/libxml/src/xmlreader.c     return (reader->ctxt->input->line);
input            3856 third_party/libxml/src/xmlreader.c         (reader->ctxt->input == NULL)) {
input            3859 third_party/libxml/src/xmlreader.c     return (reader->ctxt->input->col);
input            4591 third_party/libxml/src/xmlreader.c 	xmlParserInputPtr input;
input            4592 third_party/libxml/src/xmlreader.c 	input = ctx->input;
input            4593 third_party/libxml/src/xmlreader.c 	if ((input->filename == NULL) && (ctx->inputNr > 1))
input            4594 third_party/libxml/src/xmlreader.c 	    input = ctx->inputTab[ctx->inputNr - 2];
input            4595 third_party/libxml/src/xmlreader.c 	if (input != NULL) {
input            4596 third_party/libxml/src/xmlreader.c 	    ret = input->line;
input            4628 third_party/libxml/src/xmlreader.c 	xmlParserInputPtr input;
input            4629 third_party/libxml/src/xmlreader.c 	input = ctx->input;
input            4630 third_party/libxml/src/xmlreader.c 	if ((input->filename == NULL) && (ctx->inputNr > 1))
input            4631 third_party/libxml/src/xmlreader.c 	    input = ctx->inputTab[ctx->inputNr - 2];
input            4632 third_party/libxml/src/xmlreader.c 	if (input != NULL) {
input            4633 third_party/libxml/src/xmlreader.c 	    ret = xmlStrdup(BAD_CAST input->filename);
input            4931 third_party/libxml/src/xmlreader.c                    xmlParserInputBufferPtr input, const char *URL,
input            4935 third_party/libxml/src/xmlreader.c         if (input != NULL)
input            4936 third_party/libxml/src/xmlreader.c 	    xmlFreeParserInputBuffer(input);
input            4950 third_party/libxml/src/xmlreader.c     if ((input != NULL) && (reader->input != NULL) &&
input            4952 third_party/libxml/src/xmlreader.c 	xmlFreeParserInputBuffer(reader->input);
input            4953 third_party/libxml/src/xmlreader.c 	reader->input = NULL;
input            4956 third_party/libxml/src/xmlreader.c     if (input != NULL) {
input            4957 third_party/libxml/src/xmlreader.c 	reader->input = input;
input            5001 third_party/libxml/src/xmlreader.c     if (input != NULL) {
input            5002 third_party/libxml/src/xmlreader.c         if (reader->input->buffer->use < 4) {
input            5003 third_party/libxml/src/xmlreader.c             xmlParserInputBufferRead(input, 4);
input            5006 third_party/libxml/src/xmlreader.c             if (reader->input->buffer->use >= 4) {
input            5008 third_party/libxml/src/xmlreader.c 		       (const char *) reader->input->buffer->content, 4, URL);
input            5112 third_party/libxml/src/xmlreader.c     if ((URL != NULL) && (reader->ctxt->input != NULL) &&
input            5113 third_party/libxml/src/xmlreader.c         (reader->ctxt->input->filename == NULL))
input            5114 third_party/libxml/src/xmlreader.c         reader->ctxt->input->filename = (char *)
input            5167 third_party/libxml/src/xmlreader.c     ret->input = NULL;
input            5282 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5287 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            5288 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            5290 third_party/libxml/src/xmlreader.c     input->closecallback = NULL;
input            5291 third_party/libxml/src/xmlreader.c     reader = xmlNewTextReader(input, URL);
input            5293 third_party/libxml/src/xmlreader.c         xmlFreeParserInputBuffer(input);
input            5321 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5326 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            5328 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            5330 third_party/libxml/src/xmlreader.c     reader = xmlNewTextReader(input, URL);
input            5332 third_party/libxml/src/xmlreader.c         xmlFreeParserInputBuffer(input);
input            5358 third_party/libxml/src/xmlreader.c     if (reader->input != NULL) {
input            5359 third_party/libxml/src/xmlreader.c         xmlFreeParserInputBuffer(reader->input);
input            5366 third_party/libxml/src/xmlreader.c     reader->input = NULL;
input            5432 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5439 third_party/libxml/src/xmlreader.c     input =
input            5442 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            5444 third_party/libxml/src/xmlreader.c     return (xmlTextReaderSetup(reader, input, filename, encoding, options));
input            5466 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5473 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateStatic(buffer, size,
input            5475 third_party/libxml/src/xmlreader.c     if (input == NULL) {
input            5478 third_party/libxml/src/xmlreader.c     return (xmlTextReaderSetup(reader, input, URL, encoding, options));
input            5501 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5508 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
input            5509 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            5511 third_party/libxml/src/xmlreader.c     input->closecallback = NULL;
input            5512 third_party/libxml/src/xmlreader.c     return (xmlTextReaderSetup(reader, input, URL, encoding, options));
input            5537 third_party/libxml/src/xmlreader.c     xmlParserInputBufferPtr input;
input            5544 third_party/libxml/src/xmlreader.c     input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
input            5546 third_party/libxml/src/xmlreader.c     if (input == NULL)
input            5548 third_party/libxml/src/xmlreader.c     return (xmlTextReaderSetup(reader, input, URL, encoding, options));
input            5688 third_party/libxml/src/xmlreader.c     char *input = "  VW4 gcGV0        \n      aXQgdGVzdCAuCg== ";
input            5696 third_party/libxml/src/xmlreader.c     unsigned long inlen = strlen(input);
input            5707 third_party/libxml/src/xmlreader.c     ret = xmlBase64Decode(input, &inlen, output, &outlen);
input            5711 third_party/libxml/src/xmlreader.c            outlen, output)indent: Standard input:179: Error:Unmatched #endif
input            5724 third_party/libxml/src/xmlreader.c         ret = xmlBase64Decode(&input[cons], &tmp2, &output2[prod], &tmp);
input            5745 third_party/libxml/src/xmlreader.c         ret = xmlBase64Decode(&input[cons], &tmp2, &output3[prod], &tmp);
input            7187 third_party/libxml/src/xmlregexp.c     const xmlChar *input;
input            7196 third_party/libxml/src/xmlregexp.c     input = xmlDictExists(ctxt->dict, str, len);
input            7197 third_party/libxml/src/xmlregexp.c     if (input == NULL) {
input            7200 third_party/libxml/src/xmlregexp.c     return(xmlExpStringDeriveInt(ctxt, exp, input));
input             973 third_party/libxml/src/xmlschemas.c     xmlParserInputBufferPtr input;
input            2062 third_party/libxml/src/xmlschemas.c 		    (vctxt->parserCtxt->input != NULL)) {
input            2063 third_party/libxml/src/xmlschemas.c 		    file = vctxt->parserCtxt->input->filename;
input            2064 third_party/libxml/src/xmlschemas.c 		    line = vctxt->parserCtxt->input->line;
input            2078 third_party/libxml/src/xmlschemas.c 		    (vctxt->parserCtxt->input != NULL))
input            2079 third_party/libxml/src/xmlschemas.c 		    file = vctxt->parserCtxt->input->filename;
input            28644 third_party/libxml/src/xmlschemas.c                         xmlParserInputBufferPtr input, xmlCharEncoding enc,
input            28653 third_party/libxml/src/xmlschemas.c     if ((ctxt == NULL) || (input == NULL))
input            28671 third_party/libxml/src/xmlschemas.c     inputStream = xmlNewIOInputStream(pctxt, input, enc);;
input            28678 third_party/libxml/src/xmlschemas.c     ctxt->input = input;
input            28688 third_party/libxml/src/xmlschemas.c     ctxt->input = input;
input            28703 third_party/libxml/src/xmlschemas.c     ctxt->input = NULL;
input            28733 third_party/libxml/src/xmlschemas.c     xmlParserInputBufferPtr input;
input            28738 third_party/libxml/src/xmlschemas.c     input = xmlParserInputBufferCreateFilename(filename,
input            28740 third_party/libxml/src/xmlschemas.c     if (input == NULL)
input            28742 third_party/libxml/src/xmlschemas.c     ret = xmlSchemaValidateStream(ctxt, input, XML_CHAR_ENCODING_NONE,
input            4553 third_party/libxml/src/xmlwriter.c         (ctxt->input != NULL) && (ctxt->input->filename != NULL)) {
input            4555 third_party/libxml/src/xmlwriter.c             xmlCanonicPath((const xmlChar *) ctxt->input->filename);
input            4558 third_party/libxml/src/xmlwriter.c                 xmlStrdup((const xmlChar *) ctxt->input->filename);
input             335 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     public BuilderType mergeFrom(final CodedInputStream input)
input             337 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       return mergeFrom(input, ExtensionRegistry.getEmptyRegistry());
input             342 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final CodedInputStream input,
input             348 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final int tag = input.readTag();
input             353 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         if (!mergeFieldFrom(input, unknownFields, extensionRegistry,
input             439 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         CodedInputStream input,
input             449 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             input, unknownFields, extensionRegistry, type, builder, extensions);
input             508 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         return unknownFields.mergeFieldFrom(tag, input);
input             512 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final int length = input.readRawVarint32();
input             513 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final int limit = input.pushLimit(length);
input             515 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java           while (input.getBytesUntilLimit() > 0) {
input             516 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             final int rawValue = input.readEnum();
input             526 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java           while (input.getBytesUntilLimit() > 0) {
input             528 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java               FieldSet.readPrimitiveField(input, field.getLiteType());
input             532 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         input.popLimit(limit);
input             546 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             input.readGroup(field.getNumber(), subBuilder, extensionRegistry);
input             560 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             input.readMessage(subBuilder, extensionRegistry);
input             565 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             final int rawValue = input.readEnum();
input             575 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java             value = FieldSet.readPrimitiveField(input, field.getLiteType());
input             596 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         CodedInputStream input,
input             626 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final int tag = input.readTag();
input             632 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java           typeId = input.readUInt32();
input             651 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java                   input, extension, extensionRegistry, builder, extensions);
input             657 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java           rawBytes = input.readBytes();
input             660 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java           if (!input.skipField(tag)) {
input             665 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       input.checkLastTagWas(WireFormat.MESSAGE_SET_ITEM_END_TAG);
input             682 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         CodedInputStream input,
input             694 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         input.readMessage(subBuilder, extensionRegistry);
input             697 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         value = input.readMessage(extension.defaultInstance.getParserForType(),
input             902 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     public BuilderType mergeFrom(final InputStream input)
input             904 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       return super.mergeFrom(input);
input             909 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final InputStream input,
input             912 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       return super.mergeFrom(input, extensionRegistry);
input             916 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     public boolean mergeDelimitedFrom(final InputStream input)
input             918 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       return super.mergeDelimitedFrom(input);
input             923 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java         final InputStream input,
input             926 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       return super.mergeDelimitedFrom(input, extensionRegistry);
input             114 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java     public BuilderType mergeFrom(final CodedInputStream input)
input             116 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       return mergeFrom(input, ExtensionRegistryLite.getEmptyRegistry());
input             121 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final CodedInputStream input,
input             128 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final CodedInputStream input = data.newCodedInput();
input             129 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         mergeFrom(input);
input             130 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         input.checkLastTagWas(0);
input             146 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final CodedInputStream input = data.newCodedInput();
input             147 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         mergeFrom(input, extensionRegistry);
input             148 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         input.checkLastTagWas(0);
input             168 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final CodedInputStream input =
input             170 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         mergeFrom(input);
input             171 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         input.checkLastTagWas(0);
input             194 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final CodedInputStream input =
input             196 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         mergeFrom(input, extensionRegistry);
input             197 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         input.checkLastTagWas(0);
input             208 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java     public BuilderType mergeFrom(final InputStream input) throws IOException {
input             209 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       final CodedInputStream codedInput = CodedInputStream.newInstance(input);
input             216 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final InputStream input,
input             219 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       final CodedInputStream codedInput = CodedInputStream.newInstance(input);
input             281 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java         final InputStream input,
input             284 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       final int firstByte = input.read();
input             288 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       final int size = CodedInputStream.readRawVarint32(firstByte, input);
input             289 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       final InputStream limitedInput = new LimitedInputStream(input, size);
input             294 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java     public boolean mergeDelimitedFrom(final InputStream input)
input             296 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java       return mergeDelimitedFrom(input,
input              81 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parsePartialFrom(CodedInputStream input)
input              83 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parsePartialFrom(input, EMPTY_REGISTRY);
input              86 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parseFrom(CodedInputStream input,
input              90 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java         parsePartialFrom(input, extensionRegistry));
input              93 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parseFrom(CodedInputStream input)
input              95 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parseFrom(input, EMPTY_REGISTRY);
input             103 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       CodedInputStream input = data.newCodedInput();
input             104 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       message = parsePartialFrom(input, extensionRegistry);
input             106 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java         input.checkLastTagWas(0);
input             140 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       CodedInputStream input = CodedInputStream.newInstance(data, off, len);
input             141 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       MessageType message = parsePartialFrom(input, extensionRegistry);
input             143 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java         input.checkLastTagWas(0);
input             196 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parsePartialFrom(InputStream input,
input             199 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     CodedInputStream codedInput = CodedInputStream.newInstance(input);
input             209 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parsePartialFrom(InputStream input)
input             211 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parsePartialFrom(input, EMPTY_REGISTRY);
input             214 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parseFrom(InputStream input,
input             218 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java         parsePartialFrom(input, extensionRegistry));
input             221 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parseFrom(InputStream input)
input             223 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parseFrom(input, EMPTY_REGISTRY);
input             227 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       InputStream input,
input             232 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       int firstByte = input.read();
input             236 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       size = CodedInputStream.readRawVarint32(firstByte, input);
input             240 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     InputStream limitedInput = new LimitedInputStream(input, size);
input             244 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parsePartialDelimitedFrom(InputStream input)
input             246 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parsePartialDelimitedFrom(input, EMPTY_REGISTRY);
input             250 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java       InputStream input,
input             254 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java         parsePartialDelimitedFrom(input, extensionRegistry));
input             257 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java   public MessageType parseDelimitedFrom(InputStream input)
input             259 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java     return parseDelimitedFrom(input, EMPTY_REGISTRY);
input              54 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java   public static CodedInputStream newInstance(final InputStream input) {
input              55 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     return new CodedInputStream(input);
input             413 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java   static int readRawVarint32(final InputStream input) throws IOException {
input             414 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     final int firstByte = input.read();
input             418 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     return readRawVarint32(firstByte, input);
input             427 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java       final int firstByte, final InputStream input) throws IOException {
input             435 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java       final int b = input.read();
input             446 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java       final int b = input.read();
input             538 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java   private final InputStream input;
input             569 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     input = null;
input             572 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java   private CodedInputStream(final InputStream input) {
input             577 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     this.input = input;
input             737 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java     bufferSize = (input == null) ? -1 : input.read(buffer);
input             851 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java           final int n = (input == null) ? -1 :
input             852 third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java             input.read(chunk, pos, chunk.length - pos);
input            1498 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       final GenericDescriptor input =
input            1501 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       if (!(input instanceof Descriptor)) {
input            1505 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       inputType = (Descriptor)input;
input              74 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java                                          CodedInputStream input)
input              76 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java     return newBuilder(type).mergeFrom(input).buildParsed();
input              82 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java       CodedInputStream input,
input              85 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java     return newBuilder(type).mergeFrom(input, extensionRegistry).buildParsed();
input             115 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java   public static DynamicMessage parseFrom(Descriptor type, InputStream input)
input             117 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java     return newBuilder(type).mergeFrom(input).buildParsed();
input             121 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java   public static DynamicMessage parseFrom(Descriptor type, InputStream input,
input             124 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java     return newBuilder(type).mergeFrom(input, extensionRegistry).buildParsed();
input             248 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java           CodedInputStream input,
input             253 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java           builder.mergeFrom(input, extensionRegistry);
input             538 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       CodedInputStream input,
input             541 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case DOUBLE  : return input.readDouble  ();
input             542 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case FLOAT   : return input.readFloat   ();
input             543 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case INT64   : return input.readInt64   ();
input             544 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case UINT64  : return input.readUInt64  ();
input             545 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case INT32   : return input.readInt32   ();
input             546 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case FIXED64 : return input.readFixed64 ();
input             547 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case FIXED32 : return input.readFixed32 ();
input             548 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case BOOL    : return input.readBool    ();
input             549 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case STRING  : return input.readString  ();
input             550 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case BYTES   : return input.readBytes   ();
input             551 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case UINT32  : return input.readUInt32  ();
input             552 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case SFIXED32: return input.readSFixed32();
input             553 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case SFIXED64: return input.readSFixed64();
input             554 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case SINT32  : return input.readSInt32  ();
input             555 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       case SINT64  : return input.readSInt64  ();
input             189 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java       CodedInputStream input,
input             193 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java     return unknownFields.mergeFieldFrom(tag, input);
input             460 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java         final CodedInputStream input,
input             464 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java       return unknownFields.mergeFieldFrom(tag, input);
input             657 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java         CodedInputStream input,
input             662 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java         input, unknownFields, extensionRegistry, getDescriptorForType(),
input            1029 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java         final CodedInputStream input,
input            1034 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java         input, unknownFields, extensionRegistry, getDescriptorForType(),
input              68 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       CodedInputStream input,
input              71 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java     return input.skipField(tag);
input             112 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java         CodedInputStream input,
input             115 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       return input.skipField(tag);
input             225 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java         CodedInputStream input,
input             231 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           input,
input             451 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java         CodedInputStream input,
input             458 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           input,
input             479 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           CodedInputStream input,
input             508 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       return input.skipField(tag);
input             512 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       int length = input.readRawVarint32();
input             513 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       int limit = input.pushLimit(length);
input             515 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java         while (input.getBytesUntilLimit() > 0) {
input             516 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           int rawValue = input.readEnum();
input             527 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java         while (input.getBytesUntilLimit() > 0) {
input             529 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java             FieldSet.readPrimitiveField(input,
input             534 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       input.popLimit(limit);
input             552 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java             input.readGroup(extension.getNumber(),
input             555 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java             input.readMessage(subBuilder, extensionRegistry);
input             561 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           int rawValue = input.readEnum();
input             571 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java           value = FieldSet.readPrimitiveField(input,
input             133 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     Builder mergeFrom(CodedInputStream input) throws IOException;
input             134 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     Builder mergeFrom(CodedInputStream input,
input             227 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     Builder mergeFrom(InputStream input) throws IOException;
input             228 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     Builder mergeFrom(InputStream input,
input             231 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     boolean mergeDelimitedFrom(InputStream input)
input             233 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     boolean mergeDelimitedFrom(InputStream input,
input             195 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     Builder mergeFrom(CodedInputStream input) throws IOException;
input             203 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     Builder mergeFrom(CodedInputStream input,
input             285 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     Builder mergeFrom(InputStream input) throws IOException;
input             294 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     Builder mergeFrom(InputStream input,
input             309 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     boolean mergeDelimitedFrom(InputStream input)
input             315 third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java     boolean mergeDelimitedFrom(InputStream input,
input              49 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseFrom(CodedInputStream input)
input              58 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseFrom(CodedInputStream input,
input              67 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parsePartialFrom(CodedInputStream input)
input              75 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parsePartialFrom(CodedInputStream input,
input             192 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseFrom(InputStream input)
input             200 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseFrom(InputStream input,
input             209 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parsePartialFrom(InputStream input)
input             217 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parsePartialFrom(InputStream input,
input             232 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseDelimitedFrom(InputStream input)
input             238 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parseDelimitedFrom(InputStream input,
input             247 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java   public MessageType parsePartialDelimitedFrom(InputStream input)
input             256 third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java       InputStream input,
input             995 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   public static void merge(final Readable input,
input             998 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     merge(input, ExtensionRegistry.getEmptyRegistry(), builder);
input            1005 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   public static void merge(final CharSequence input,
input            1008 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     merge(input, ExtensionRegistry.getEmptyRegistry(), builder);
input            1016 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   public static void merge(final Readable input,
input            1028 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     merge(toStringBuilder(input), extensionRegistry, builder);
input            1035 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   private static StringBuilder toStringBuilder(final Readable input)
input            1040 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       final int n = input.read(buffer);
input            1055 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   public static void merge(final CharSequence input,
input            1059 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     final Tokenizer tokenizer = new Tokenizer(input);
input            1257 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   static String escapeBytes(final ByteString input) {
input            1258 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     final StringBuilder builder = new StringBuilder(input.size());
input            1259 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     for (int i = 0; i < input.size(); i++) {
input            1260 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       final byte b = input.byteAt(i);
input            1299 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     ByteString input = ByteString.copyFromUtf8(charString.toString());
input            1307 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     final byte[] result = new byte[input.size()];
input            1309 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     for (int i = 0; i < input.size(); i++) {
input            1310 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       byte c = input.byteAt(i);
input            1312 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java         if (i + 1 < input.size()) {
input            1314 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java           c = input.byteAt(i);
input            1318 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java             if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
input            1320 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java               code = code * 8 + digitValue(input.byteAt(i));
input            1322 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java             if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
input            1324 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java               code = code * 8 + digitValue(input.byteAt(i));
input            1344 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
input            1346 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                   code = digitValue(input.byteAt(i));
input            1351 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
input            1353 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                   code = code * 16 + digitValue(input.byteAt(i));
input            1392 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   static String escapeText(final String input) {
input            1393 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     return escapeBytes(ByteString.copyFromUtf8(input));
input            1400 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java   static String unescapeText(final String input)
input            1402 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java     return unescapeBytes(input).toStringUtf8();
input             237 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java   public static UnknownFieldSet parseFrom(final CodedInputStream input)
input             239 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     return newBuilder().mergeFrom(input).build();
input             255 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java   public static UnknownFieldSet parseFrom(final InputStream input)
input             257 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     return newBuilder().mergeFrom(input).build();
input             458 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public Builder mergeFrom(final CodedInputStream input) throws IOException {
input             460 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         final int tag = input.readTag();
input             461 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (tag == 0 || !mergeFieldFrom(tag, input)) {
input             473 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public boolean mergeFieldFrom(final int tag, final CodedInputStream input)
input             478 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           getFieldBuilder(number).addVarint(input.readInt64());
input             481 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           getFieldBuilder(number).addFixed64(input.readFixed64());
input             484 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           getFieldBuilder(number).addLengthDelimited(input.readBytes());
input             488 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           input.readGroup(number, subBuilder,
input             495 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           getFieldBuilder(number).addFixed32(input.readFixed32());
input             510 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         final CodedInputStream input = data.newCodedInput();
input             511 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         mergeFrom(input);
input             512 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         input.checkLastTagWas(0);
input             531 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         final CodedInputStream input = CodedInputStream.newInstance(data);
input             532 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         mergeFrom(input);
input             533 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         input.checkLastTagWas(0);
input             549 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public Builder mergeFrom(final InputStream input) throws IOException {
input             550 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       final CodedInputStream codedInput = CodedInputStream.newInstance(input);
input             556 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public boolean mergeDelimitedFrom(InputStream input)
input             558 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       final int firstByte = input.read();
input             562 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       final int size = CodedInputStream.readRawVarint32(firstByte, input);
input             563 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       final InputStream limitedInput = new LimitedInputStream(input, size);
input             569 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         InputStream input,
input             572 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       return mergeDelimitedFrom(input);
input             576 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         CodedInputStream input,
input             579 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       return mergeFrom(input);
input             593 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         final CodedInputStream input =
input             595 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         mergeFrom(input);
input             596 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         input.checkLastTagWas(0);
input             624 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         InputStream input,
input             627 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       return mergeFrom(input);
input             959 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         CodedInputStream input, ExtensionRegistryLite extensionRegistry)
input             963 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         builder.mergeFrom(input);
input              93 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(data);
input              94 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals((int)value, input.readRawVarint32());
input              96 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input = CodedInputStream.newInstance(data);
input              97 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(value, input.readRawVarint64());
input              98 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertTrue(input.isAtEnd());
input             102 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input = CodedInputStream.newInstance(
input             104 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertEquals((int)value, input.readRawVarint32());
input             106 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input = CodedInputStream.newInstance(
input             108 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertEquals(value, input.readRawVarint64());
input             109 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertTrue(input.isAtEnd());
input             130 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(data);
input             132 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input.readRawVarint32();
input             138 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input = CodedInputStream.newInstance(data);
input             140 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input.readRawVarint64();
input             200 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(data);
input             201 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(value, input.readRawLittleEndian32());
input             202 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertTrue(input.isAtEnd());
input             206 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input = CodedInputStream.newInstance(
input             208 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertEquals(value, input.readRawLittleEndian32());
input             209 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertTrue(input.isAtEnd());
input             219 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(data);
input             220 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(value, input.readRawLittleEndian64());
input             221 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertTrue(input.isAtEnd());
input             225 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input = CodedInputStream.newInstance(
input             227 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertEquals(value, input.readRawLittleEndian64());
input             228 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       assertTrue(input.isAtEnd());
input             320 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(rawBytes);
input             322 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     int limit = input.pushLimit(1);
input             323 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.skipRawBytes(1);
input             324 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.popLimit(limit);
input             325 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(2, input.readRawByte());
input             335 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(
input             338 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     int limit = input.pushLimit(4);
input             341 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(1, input.readRawByte());
input             343 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.skipRawBytes(3);
input             344 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertTrue(input.isAtEnd());
input             345 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.popLimit(limit);
input             346 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(5, input.readRawByte());
input             387 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = rawOutput.toByteString().newCodedInput();
input             388 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(tag, input.readTag());
input             391 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input.readBytes();
input             430 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = data64.newCodedInput();
input             431 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.setRecursionLimit(8);
input             433 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       TestRecursiveMessage.parseFrom(input);
input             441 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(
input             443 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.setSizeLimit(16);
input             446 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       TestAllTypes.parseFrom(input);
input             454 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = CodedInputStream.newInstance(
input             456 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.setSizeLimit(16);
input             457 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.readRawBytes(16);
input             458 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(16, input.getTotalBytesRead());
input             461 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input.readRawByte();
input             467 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.resetSizeCounter();
input             468 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(0, input.getTotalBytesRead());
input             469 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.readRawByte();  // No exception thrown.
input             470 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     input.resetSizeCounter();
input             471 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(0, input.getTotalBytesRead());
input             474 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java       input.readRawBytes(16);  // Hits limit again.
input             496 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     CodedInputStream input = rawOutput.toByteString().newCodedInput();
input             497 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     assertEquals(tag, input.readTag());
input             498 third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java     String text = input.readString();
input             338 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     InputStream input = stringUnderTest.newInput();
input             340 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringUnderTest.size(), input.available());
input             344 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java       stillEqual = (expectedInt == input.read());
input             347 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         0, input.available());
input             349 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     assertEquals(classUnderTest + " InputStream must now be exhausted", -1, input.read());
input             353 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     InputStream input = stringUnderTest.newInput();
input             356 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     long skipped1 = input.skip(nearEndIndex);
input             359 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringSize - skipped1, input.available());
input             360 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     assertTrue("InputStream.mark() is available", input.markSupported());
input             361 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     input.mark(0);
input             363 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read());
input             365 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java                  stringSize - skipped1 - 1, input.available());
input             366 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     long skipped2 = input.skip(stringSize);
input             369 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     assertEquals("InputStream.skip(), no more input", 0, input.available());
input             370 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     assertEquals("InputStream.skip(), no more input", -1, input.read());
input             371 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java     input.reset();
input             373 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java                  stringSize - skipped1, input.available());
input             375 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read());
input             202 third_party/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java     InputStream input = new ByteArrayInputStream(output.toByteArray());
input             205 third_party/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java         normalMessage.getParserForType().parseDelimitedFrom(input));
input             209 third_party/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java             input, TestUtil.getExtensionRegistryLite()));
input             232 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     ByteArrayInputStream input = new ByteArrayInputStream(output.toByteArray());
input             234 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     TestUtil.assertAllFieldsSet(TestAllTypes.parseDelimitedFrom(input));
input             235 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     assertEquals(12, input.read());
input             236 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     TestUtil.assertPackedFieldsSet(TestPackedTypes.parseDelimitedFrom(input));
input             237 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     assertEquals(34, input.read());
input             238 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     assertEquals(-1, input.read());
input             241 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     assertTrue(TestAllTypes.parseDelimitedFrom(input) == null);
input             245 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java     CodedInputStream input = data.newCodedInput();
input             249 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java       int tag = input.readTag();
input             256 third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java       input.skipField(tag);
input            1370 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   google::protobuf::io::CodedInputStream input(
input            1372 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   input.SetExtensionRegistry(GetDescriptorPool(), global_message_factory);
input            1373 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   bool success = self->message->MergePartialFromCodedStream(&input);
input            1413 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   void RedirectStdinFromText(const string& input) {
input            1415 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     File::WriteStringToFileOrDie(input, filename);
input              85 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc string UnderscoresToCamelCase(const string& input, bool cap_next_letter) {
input              88 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc   for (int i = 0; i < input.size(); i++) {
input              89 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc     if ('a' <= input[i] && input[i] <= 'z') {
input              91 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc         result += input[i] + ('A' - 'a');
input              93 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc         result += input[i];
input              96 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc     } else if ('A' <= input[i] && input[i] <= 'Z') {
input              98 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc       result += input[i];
input             100 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc     } else if ('0' <= input[i] && input[i] <= '9') {
input             101 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc       result += input[i];
input             124 third_party/protobuf/src/google/protobuf/compiler/importer.cc   scoped_ptr<io::ZeroCopyInputStream> input(source_tree_->Open(filename));
input             125 third_party/protobuf/src/google/protobuf/compiler/importer.cc   if (input == NULL) {
input             134 third_party/protobuf/src/google/protobuf/compiler/importer.cc   io::Tokenizer tokenizer(input.get(), &file_error_collector);
input             359 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc     scoped_ptr<io::ZeroCopyInputStream> input(source_tree_.Open(filename));
input             361 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc     ASSERT_FALSE(input == NULL);
input             367 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc     while (input->Next(&data, &size)) {
input             375 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc     scoped_ptr<io::ZeroCopyInputStream> input(source_tree_.Open(filename));
input             376 third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc     EXPECT_TRUE(input == NULL);
input              47 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc string EscapeJavadoc(const string& input) {
input              49 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc   result.reserve(input.size() * 2);
input              53 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc   for (string::size_type i = 0; i < input.size(); i++) {
input              54 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc     char c = input[i];
input              62 third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h string EscapeJavadoc(const string& input);
input              68 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc string UnderscoresToCamelCaseImpl(const string& input, bool cap_next_letter) {
input              71 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc   for (int i = 0; i < input.size(); i++) {
input              72 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc     if ('a' <= input[i] && input[i] <= 'z') {
input              74 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc         result += input[i] + ('A' - 'a');
input              76 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc         result += input[i];
input              79 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc     } else if ('A' <= input[i] && input[i] <= 'Z') {
input              83 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc         result += input[i] + ('a' - 'A');
input              86 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc         result += input[i];
input              89 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc     } else if ('0' <= input[i] && input[i] <= '9') {
input              90 third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc       result += input[i];
input             411 third_party/protobuf/src/google/protobuf/compiler/parser.cc bool Parser::Parse(io::Tokenizer* input, FileDescriptorProto* file) {
input             412 third_party/protobuf/src/google/protobuf/compiler/parser.cc   input_ = input;
input              73 third_party/protobuf/src/google/protobuf/compiler/parser.h   bool Parse(io::Tokenizer* input, FileDescriptorProto* file);
input             116 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc   void ExpectParsesTo(const char* input, const char* output) {
input             117 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     SetupParser(input);
input             239 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input             242 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   while ((tag = input->ReadTag()) != 0) {
input             250 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->add_file_to_generate()));
input             258 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(10)) goto parse_file_to_generate;
input             259 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(18)) goto parse_parameter;
input             269 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->mutable_parameter()));
input             276 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(122)) goto parse_proto_file;
input             286 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, add_proto_file()));
input             290 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(122)) goto parse_proto_file;
input             291 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectAtEnd()) return true;
input             302 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc               input, tag, mutable_unknown_fields()));
input             572 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input             575 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   while ((tag = input->ReadTag()) != 0) {
input             582 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->mutable_name()));
input             589 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(18)) goto parse_insertion_point;
input             599 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->mutable_insertion_point()));
input             606 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(122)) goto parse_content;
input             616 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->mutable_content()));
input             623 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectAtEnd()) return true;
input             634 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc               input, tag, mutable_unknown_fields()));
input             893 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input             896 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   while ((tag = input->ReadTag()) != 0) {
input             903 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, this->mutable_error()));
input             910 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(122)) goto parse_file;
input             920 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc                 input, add_file()));
input             924 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectTag(122)) goto parse_file;
input             925 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc         if (input->ExpectAtEnd()) return true;
input             936 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc               input, tag, mutable_unknown_fields()));
input              82 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             199 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             316 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             146 third_party/protobuf/src/google/protobuf/compiler/subprocess.cc bool Subprocess::Communicate(const Message& input, Message* output,
input             155 third_party/protobuf/src/google/protobuf/compiler/subprocess.cc   string input_data = input.SerializeAsString();
input             347 third_party/protobuf/src/google/protobuf/compiler/subprocess.cc bool Subprocess::Communicate(const Message& input, Message* output,
input             358 third_party/protobuf/src/google/protobuf/compiler/subprocess.cc   string input_data = input.SerializeAsString();
input              75 third_party/protobuf/src/google/protobuf/compiler/subprocess.h   bool Communicate(const Message& input, Message* output, string* error);
input             142 third_party/protobuf/src/google/protobuf/descriptor.cc string ToCamelCase(const string& input) {
input             145 third_party/protobuf/src/google/protobuf/descriptor.cc   result.reserve(input.size());
input             147 third_party/protobuf/src/google/protobuf/descriptor.cc   for (int i = 0; i < input.size(); i++) {
input             148 third_party/protobuf/src/google/protobuf/descriptor.cc     if (input[i] == '_') {
input             152 third_party/protobuf/src/google/protobuf/descriptor.cc       if ('a' <= input[i] && input[i] <= 'z') {
input             153 third_party/protobuf/src/google/protobuf/descriptor.cc         result.push_back(input[i] - 'a' + 'A');
input             155 third_party/protobuf/src/google/protobuf/descriptor.cc         result.push_back(input[i]);
input             159 third_party/protobuf/src/google/protobuf/descriptor.cc       result.push_back(input[i]);
input             789 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input             792 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input             800 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_file()));
input             804 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(10)) goto parse_file;
input             805 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input             816 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            1045 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            1048 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            1055 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            1062 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_package;
input            1072 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_package()));
input            1079 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_dependency;
input            1089 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->add_dependency()));
input            1097 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_dependency;
input            1098 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_message_type;
input            1108 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_message_type()));
input            1112 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_message_type;
input            1113 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(42)) goto parse_enum_type;
input            1123 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_enum_type()));
input            1127 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(42)) goto parse_enum_type;
input            1128 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(50)) goto parse_service;
input            1138 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_service()));
input            1142 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(50)) goto parse_service;
input            1143 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(58)) goto parse_extension;
input            1153 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_extension()));
input            1157 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(58)) goto parse_extension;
input            1158 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(66)) goto parse_options;
input            1168 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            1172 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(74)) goto parse_source_code_info;
input            1182 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_source_code_info()));
input            1186 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(80)) goto parse_public_dependency;
input            1197 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  1, 80, input, this->mutable_public_dependency())));
input            1203 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, this->mutable_public_dependency())));
input            1207 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(80)) goto parse_public_dependency;
input            1208 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(88)) goto parse_weak_dependency;
input            1219 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  1, 88, input, this->mutable_weak_dependency())));
input            1225 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, this->mutable_weak_dependency())));
input            1229 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(88)) goto parse_weak_dependency;
input            1230 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            1241 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            1698 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            1701 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            1709 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &start_)));
input            1714 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(16)) goto parse_end;
input            1725 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &end_)));
input            1730 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            1741 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            1967 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            1970 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            1977 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            1984 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_field;
input            1994 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_field()));
input            1998 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_field;
input            1999 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_nested_type;
input            2009 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_nested_type()));
input            2013 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_nested_type;
input            2014 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_enum_type;
input            2024 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_enum_type()));
input            2028 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_enum_type;
input            2029 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(42)) goto parse_extension_range;
input            2039 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_extension_range()));
input            2043 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(42)) goto parse_extension_range;
input            2044 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(50)) goto parse_extension;
input            2054 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_extension()));
input            2058 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(50)) goto parse_extension;
input            2059 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(58)) goto parse_options;
input            2069 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            2073 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            2084 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            2557 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            2560 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            2567 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            2574 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_extendee;
input            2584 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_extendee()));
input            2591 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(24)) goto parse_number;
input            2602 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &number_)));
input            2607 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(32)) goto parse_label;
input            2619 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &value)));
input            2628 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(40)) goto parse_type;
input            2640 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &value)));
input            2649 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(50)) goto parse_type_name;
input            2659 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_type_name()));
input            2666 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(58)) goto parse_default_value;
input            2676 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_default_value()));
input            2683 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(66)) goto parse_options;
input            2693 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            2697 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            2708 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            3096 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            3099 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            3106 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            3113 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_value;
input            3123 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_value()));
input            3127 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_value;
input            3128 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_options;
input            3138 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            3142 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            3153 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            3413 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            3416 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            3423 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            3430 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(16)) goto parse_number;
input            3441 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &number_)));
input            3446 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_options;
input            3456 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            3460 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            3471 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            3725 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            3728 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            3735 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            3742 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_method;
input            3752 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_method()));
input            3756 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_method;
input            3757 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_options;
input            3767 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            3771 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            3782 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            4059 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            4062 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            4069 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name()));
input            4076 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_input_type;
input            4086 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_input_type()));
input            4093 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_output_type;
input            4103 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_output_type()));
input            4110 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_options;
input            4120 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                input, mutable_options()));
input            4124 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            4135 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            4488 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            4491 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            4498 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_java_package()));
input            4505 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(66)) goto parse_java_outer_classname;
input            4515 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_java_outer_classname()));
input            4522 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(72)) goto parse_optimize_for;
input            4534 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &value)));
input            4543 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(80)) goto parse_java_multiple_files;
input            4554 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &java_multiple_files_)));
input            4559 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(90)) goto parse_go_package;
input            4569 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_go_package()));
input            4576 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(96)) goto parse_retain_unknown_fields;
input            4587 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &retain_unknown_fields_)));
input            4592 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(128)) goto parse_cc_generic_services;
input            4603 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &cc_generic_services_)));
input            4608 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(136)) goto parse_java_generic_services;
input            4619 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &java_generic_services_)));
input            4624 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(144)) goto parse_py_generic_services;
input            4635 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &py_generic_services_)));
input            4640 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(160)) goto parse_java_generate_equals_and_hash;
input            4651 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &java_generate_equals_and_hash_)));
input            4656 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            4666 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            4670 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            4671 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            4682 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            4687 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            5122 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            5125 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            5133 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &message_set_wire_format_)));
input            5138 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(16)) goto parse_no_standard_descriptor_accessor;
input            5149 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &no_standard_descriptor_accessor_)));
input            5154 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5164 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            5168 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5169 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            5180 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            5185 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            5470 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            5473 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            5482 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &value)));
input            5491 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(16)) goto parse_packed;
input            5502 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &packed_)));
input            5507 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(24)) goto parse_deprecated;
input            5518 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &deprecated_)));
input            5523 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(40)) goto parse_lazy;
input            5534 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &lazy_)));
input            5539 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(74)) goto parse_experimental_map_key;
input            5549 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_experimental_map_key()));
input            5556 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(80)) goto parse_weak;
input            5567 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &weak_)));
input            5572 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5582 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            5586 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5587 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            5598 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            5603 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            5933 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            5936 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            5944 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &allow_alias_)));
input            5949 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5959 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            5963 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            5964 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            5975 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            5980 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            6196 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            6199 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            6207 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            6211 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            6212 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            6223 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            6228 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            6421 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            6424 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            6432 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            6436 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            6437 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            6448 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            6453 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            6646 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            6649 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            6657 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_uninterpreted_option()));
input            6661 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(7994)) goto parse_uninterpreted_option;
input            6662 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            6673 third_party/protobuf/src/google/protobuf/descriptor.pb.cc           DO_(_extensions_.ParseField(tag, input, default_instance_,
input            6678 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            6883 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            6886 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            6893 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_name_part()));
input            6900 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(16)) goto parse_is_extension;
input            6911 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &is_extension_)));
input            6916 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            6927 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            7175 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            7178 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            7186 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_name()));
input            7190 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_name;
input            7191 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_identifier_value;
input            7201 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_identifier_value()));
input            7208 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(32)) goto parse_positive_int_value;
input            7219 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &positive_int_value_)));
input            7224 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(40)) goto parse_negative_int_value;
input            7235 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &negative_int_value_)));
input            7240 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(49)) goto parse_double_value;
input            7251 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, &double_value_)));
input            7256 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(58)) goto parse_string_value;
input            7266 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_string_value()));
input            7270 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(66)) goto parse_aggregate_value;
input            7280 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_aggregate_value()));
input            7287 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            7298 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            7650 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            7653 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            7661 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, this->mutable_path())));
input            7667 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  1, 10, input, this->mutable_path())));
input            7671 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(18)) goto parse_span;
input            7682 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  input, this->mutable_span())));
input            7688 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                  1, 18, input, this->mutable_span())));
input            7692 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(26)) goto parse_leading_comments;
input            7702 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_leading_comments()));
input            7709 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(34)) goto parse_trailing_comments;
input            7719 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, this->mutable_trailing_comments()));
input            7726 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            7737 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input            8040 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     ::google::protobuf::io::CodedInputStream* input) {
input            8043 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   while ((tag = input->ReadTag()) != 0) {
input            8051 third_party/protobuf/src/google/protobuf/descriptor.pb.cc                 input, add_location()));
input            8055 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectTag(10)) goto parse_location;
input            8056 third_party/protobuf/src/google/protobuf/descriptor.pb.cc         if (input->ExpectAtEnd()) return true;
input            8067 third_party/protobuf/src/google/protobuf/descriptor.pb.cc               input, tag, mutable_unknown_fields()));
input             193 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             278 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             499 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             591 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             757 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             996 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1108 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1217 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1329 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1458 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1686 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1794 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            1972 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2070 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2158 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2246 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2334 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2431 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2593 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input            2723 third_party/protobuf/src/google/protobuf/descriptor.pb.h       ::google::protobuf::io::CodedInputStream* input);
input             348 third_party/protobuf/src/google/protobuf/descriptor_database.cc   io::CodedInputStream input(reinterpret_cast<const uint8*>(encoded_file.first),
input             355 third_party/protobuf/src/google/protobuf/descriptor_database.cc   if (input.ReadTag() == kNameTag) {
input             357 third_party/protobuf/src/google/protobuf/descriptor_database.cc     return internal::WireFormatLite::ReadString(&input, output);
input             876 third_party/protobuf/src/google/protobuf/extension_set.cc bool ExtensionSet::ParseField(uint32 tag, io::CodedInputStream* input,
input             882 third_party/protobuf/src/google/protobuf/extension_set.cc     return field_skipper->SkipField(input, tag);
input             884 third_party/protobuf/src/google/protobuf/extension_set.cc     return ParseFieldWithExtensionInfo(number, extension, input, field_skipper);
input             890 third_party/protobuf/src/google/protobuf/extension_set.cc     io::CodedInputStream* input,
input             894 third_party/protobuf/src/google/protobuf/extension_set.cc     if (!input->ReadVarint32(&size)) return false;
input             895 third_party/protobuf/src/google/protobuf/extension_set.cc     io::CodedInputStream::Limit limit = input->PushLimit(size);
input             900 third_party/protobuf/src/google/protobuf/extension_set.cc         while (input->BytesUntilLimit() > 0) {                                 \
input             904 third_party/protobuf/src/google/protobuf/extension_set.cc                 input, &value)) return false;                                  \
input             926 third_party/protobuf/src/google/protobuf/extension_set.cc         while (input->BytesUntilLimit() > 0) {
input             929 third_party/protobuf/src/google/protobuf/extension_set.cc                   input, &value)) return false;
input             946 third_party/protobuf/src/google/protobuf/extension_set.cc     input->PopLimit(limit);
input             954 third_party/protobuf/src/google/protobuf/extension_set.cc                input, &value)) return false;                                   \
input             982 third_party/protobuf/src/google/protobuf/extension_set.cc                 input, &value)) return false;
input            1003 third_party/protobuf/src/google/protobuf/extension_set.cc         if (!WireFormatLite::ReadString(input, value)) return false;
input            1012 third_party/protobuf/src/google/protobuf/extension_set.cc         if (!WireFormatLite::ReadBytes(input, value)) return false;
input            1022 third_party/protobuf/src/google/protobuf/extension_set.cc         if (!WireFormatLite::ReadGroup(number, input, value)) return false;
input            1032 third_party/protobuf/src/google/protobuf/extension_set.cc         if (!WireFormatLite::ReadMessage(input, value)) return false;
input            1041 third_party/protobuf/src/google/protobuf/extension_set.cc bool ExtensionSet::ParseField(uint32 tag, io::CodedInputStream* input,
input            1046 third_party/protobuf/src/google/protobuf/extension_set.cc   return ParseField(tag, input, &finder, &skipper);
input             330 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseField(uint32 tag, io::CodedInputStream* input,
input             340 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseField(uint32 tag, io::CodedInputStream* input,
input             343 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseFieldHeavy(uint32 tag, io::CodedInputStream* input,
input             349 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseMessageSet(io::CodedInputStream* input,
input             355 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseMessageSet(io::CodedInputStream* input,
input             358 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseMessageSetHeavy(io::CodedInputStream* input,
input             421 third_party/protobuf/src/google/protobuf/extension_set.h                              io::CodedInputStream* input) = 0;
input             519 third_party/protobuf/src/google/protobuf/extension_set.h                                    io::CodedInputStream* input,
input             524 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseFieldMaybeLazily(uint32 tag, io::CodedInputStream* input,
input             535 third_party/protobuf/src/google/protobuf/extension_set.h   bool ParseMessageSetItem(io::CodedInputStream* input,
input             246 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc bool ExtensionSet::ParseFieldHeavy(uint32 tag, io::CodedInputStream* input,
input             250 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc   if (input->GetExtensionPool() == NULL) {
input             252 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     return ParseField(tag, input, &finder, &skipper);
input             254 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     DescriptorPoolExtensionFinder finder(input->GetExtensionPool(),
input             255 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc                                          input->GetExtensionFactory(),
input             257 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     return ParseField(tag, input, &finder, &skipper);
input             261 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc bool ExtensionSet::ParseMessageSetHeavy(io::CodedInputStream* input,
input             265 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc   if (input->GetExtensionPool() == NULL) {
input             267 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     return ParseMessageSet(input, &finder, &skipper);
input             269 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     DescriptorPoolExtensionFinder finder(input->GetExtensionPool(),
input             270 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc                                          input->GetExtensionFactory(),
input             272 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     return ParseMessageSet(input, &finder, &skipper);
input             514 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     uint32 tag, io::CodedInputStream* input,
input             517 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc   return ParseField(tag, input, extension_finder, field_skipper);
input             520 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc bool ExtensionSet::ParseMessageSet(io::CodedInputStream* input,
input             524 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     uint32 tag = input->ReadTag();
input             529 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc         if (!ParseMessageSetItem(input, extension_finder, field_skipper)) {
input             534 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc         if (!ParseField(tag, input, extension_finder, field_skipper)) {
input             542 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc bool ExtensionSet::ParseMessageSet(io::CodedInputStream* input,
input             547 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc   return ParseMessageSet(input, &finder, &skipper);
input             550 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc bool ExtensionSet::ParseMessageSetItem(io::CodedInputStream* input,
input             571 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc     uint32 tag = input->ReadTag();
input             577 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc         if (!input->ReadVarint32(&type_id)) return false;
input             602 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc           if (!input->ReadVarint32(&length)) return false;
input             603 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc           if (!input->ReadString(&temp, length)) return false;
input             610 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc           if (!ParseFieldMaybeLazily(fake_tag, input,
input             624 third_party/protobuf/src/google/protobuf/extension_set_heavy.cc         if (!field_skipper->SkipField(input, tag)) return false;
input             647 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     io::CodedInputStream input(&raw_input);
input             648 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     input.SetExtensionRegistry(&dynamic_pool, &dynamic_factory);
input             649 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     ASSERT_TRUE(message.ParseFromCodedStream(&input));
input             650 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     ASSERT_TRUE(input.ConsumedEntireMessage());
input             683 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     io::CodedInputStream input(&raw_input);
input             684 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     input.SetExtensionRegistry(&dynamic_pool, &dynamic_factory);
input             685 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message2));
input             686 third_party/protobuf/src/google/protobuf/extension_set_unittest.cc     ASSERT_TRUE(input.ConsumedEntireMessage());
input              59 third_party/protobuf/src/google/protobuf/io/coded_stream.cc inline bool NextNonEmpty(ZeroCopyInputStream* input,
input              63 third_party/protobuf/src/google/protobuf/io/coded_stream.cc     success = input->Next(data, size);
input             159 third_party/protobuf/src/google/protobuf/io/coded_stream.h   explicit CodedInputStream(ZeroCopyInputStream* input);
input            1081 third_party/protobuf/src/google/protobuf/io/coded_stream.h inline CodedInputStream::CodedInputStream(ZeroCopyInputStream* input)
input            1082 third_party/protobuf/src/google/protobuf/io/coded_stream.h   : input_(input),
input             187 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             190 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             197 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
input             202 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             205 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             214 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
input             239 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream input(&in);
input             240 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   input.ReadTag();
input             241 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_TRUE(input.ConsumedEntireMessage());
input             249 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             252 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             272 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     EXPECT_EQ(kVarintCases_case.size + 1, input.ByteCount());
input             274 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     EXPECT_EQ(1, input.ByteCount());
input             298 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             301 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             308 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
input             382 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             385 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             393 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(output.ByteCount(), input.ByteCount());
input             433 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, kVarintErrorCases_case.size,
input             435 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             443 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, kVarintErrorCases_case.size,
input             445 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             523 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             526 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             533 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(sizeof(uint32), input.ByteCount());
input             538 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             541 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             548 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(sizeof(uint64), input.ByteCount());
input             612 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             616 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             622 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(sizeof(kRawBytes), input.ByteCount());
input             643 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             646 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             653 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(strlen(kRawBytes), input.ByteCount());
input             658 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             661 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             696 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             699 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             709 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(strlen(kSkipTestBytes), input.ByteCount());
input             716 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), 8);
input             717 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             745 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), 8);
input             746 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             813 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             816 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             837 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(12, input.ByteCount());
input             843 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             846 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             878 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(12, input.ByteCount());
input             885 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
input             888 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input             920 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(8, input.ByteCount());
input             925 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             926 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             942 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             943 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             954 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             955 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             968 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             969 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input             980 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input             981 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input            1006 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input            1007 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input            1042 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream input(&raw_input);
input            1043 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     input.SetTotalBytesLimit(total_bytes_limit, warning_threshold);
input            1045 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     EXPECT_TRUE(input.ReadString(&str, 2048));
input            1086 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ArrayInputStream input(buffer_, sizeof(buffer_));
input            1087 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   CodedInputStream coded_input(&input);
input            1168 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   ReallyBigInputStream input;
input            1174 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc     CodedInputStream coded_input(&input);
input            1181 third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc   EXPECT_EQ(INT_MAX - 512, input.backup_amount_);
input             185 third_party/protobuf/src/google/protobuf/io/tokenizer.cc Tokenizer::Tokenizer(ZeroCopyInputStream* input,
input             187 third_party/protobuf/src/google/protobuf/io/tokenizer.cc   : input_(input),
input              87 third_party/protobuf/src/google/protobuf/io/tokenizer.h   Tokenizer(ZeroCopyInputStream* input, ErrorCollector* error_collector);
input             197 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   string input;
input             203 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   return out << CEscape(test_case.input);
input             250 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(kSimpleTokenCases_case.input.data(),
input             251 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                         kSimpleTokenCases_case.input.size(),
input             254 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             269 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(kSimpleTokenCases_case.input, tokenizer.current().text);
input             273 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(kSimpleTokenCases_case.input.size(),
input             283 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(kSimpleTokenCases_case.input.size(), tokenizer.current().column);
input             284 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(kSimpleTokenCases_case.input.size(),
input             296 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(text, strlen(text), kBlockSizes_case);
input             298 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             328 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   string input;
input             337 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   return out << CEscape(test_case.input);
input             430 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(kMultiTokenCases_case.input.data(),
input             431 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                         kMultiTokenCases_case.input.size(),
input             434 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             497 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(text, strlen(text), kBlockSizes_case);
input             499 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             521 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   string input;
input             530 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   return out << CEscape(test_case.input);
input             682 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(kDocCommentCases_case.input.data(),
input             683 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                         kDocCommentCases_case.input.size(),
input             686 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             689 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input2(kDocCommentCases_case.input.data(),
input             690 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                         kDocCommentCases_case.input.size(),
input             866 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   string input;
input             876 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   return out << CEscape(test_case.input);
input             958 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(kErrorCases_case.input.data(),
input             959 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc                         kErrorCases_case.input.size(),
input             962 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   Tokenizer tokenizer(&input, &error_collector);
input             983 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   TestInputStream input(text.data(), text.size(), kBlockSizes_case);
input             988 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc     Tokenizer tokenizer(&input, &error_collector);
input             994 third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc   EXPECT_EQ(strlen("foo"), input.ByteCount());
input             272 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc IstreamInputStream::IstreamInputStream(istream* input, int block_size)
input             273 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc   : copying_input_(input),
input             296 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc     istream* input)
input             297 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc   : input_(input) {
input             414 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc LimitingInputStream::LimitingInputStream(ZeroCopyInputStream* input,
input             416 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc   : input_(input), limit_(limit) {}
input             233 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h     CopyingIstreamInputStream(istream* input);
input             334 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h   LimitingInputStream(ZeroCopyInputStream* input, int64 limit);
input              99 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   int ReadFromInput(ZeroCopyInputStream* input, void* data, int size);
input             104 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   void ReadString(ZeroCopyInputStream* input, const string& str);
input             111 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   void ReadStuff(ZeroCopyInputStream* input);
input             117 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   void ReadStuffLarge(ZeroCopyInputStream* input);
input             159 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc int IoTest::ReadFromInput(ZeroCopyInputStream* input, void* data, int size) {
input             169 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     if (!input->Next(&in, &in_size)) {
input             183 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         input->BackUp(in_size - out_size);
input             198 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc void IoTest::ReadString(ZeroCopyInputStream* input, const string& str) {
input             201 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(ReadFromInput(input, buffer.get(), str.size()), str.size());
input             221 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc void IoTest::ReadStuff(ZeroCopyInputStream* input) {
input             222 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "Hello world!\n");
input             223 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "Some text.  ");
input             224 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "Blah ");
input             225 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "blah.");
input             226 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "abcdefg");
input             227 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_TRUE(input->Skip(20));
input             228 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "foo");
input             229 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "bar");
input             231 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(input->ByteCount(), 68);
input             234 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(ReadFromInput(input, &byte, 1), 0);
input             253 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc void IoTest::ReadStuffLarge(ZeroCopyInputStream* input) {
input             254 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "Hello world!\nSome text.  ");
input             255 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_TRUE(input->Skip(5));
input             256 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "blah.");
input             257 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_TRUE(input->Skip(100000 - 10));
input             258 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, string(10, 'x') + string(100000 - 20000, 'y'));
input             259 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_TRUE(input->Skip(20000 - 10));
input             260 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadString(input, "yyyyyyyyyy01234567890123456789");
input             262 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(input->ByteCount(), 200055);
input             265 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(ReadFromInput(input, &byte, 1), 0);
input             282 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         ArrayInputStream input(buffer, size, kBlockSizes[j]);
input             283 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         ReadStuff(&input);
input             317 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       ArrayInputStream* input =
input             319 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       CodedInputStream* coded_input = new CodedInputStream(input);
input             332 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       delete input;
input             362 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           ArrayInputStream input(buffer, size, kBlockSizes[j]);
input             364 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc               &input, GzipInputStream::GZIP, gzip_buffer_size);
input             398 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           ArrayInputStream input(buffer, size, kBlockSizes[j]);
input             400 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc               &input, GzipInputStream::GZIP, gzip_buffer_size);
input             430 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ArrayInputStream input(buffer, size, block_size);
input             432 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       &input, GzipInputStream::GZIP, gzip_buffer_size);
input             457 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ArrayInputStream input(buffer, size, block_size);
input             459 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       &input, GzipInputStream::GZIP, gzip_buffer_size);
input             488 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           ArrayInputStream input(buffer, size, kBlockSizes[j]);
input             490 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc               &input, GzipInputStream::ZLIB, gzip_buffer_size);
input             513 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     ArrayInputStream input(buffer, size);
input             514 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     GzipInputStream gzin(&input, GzipInputStream::AUTO);
input             527 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     ArrayInputStream input(buffer, size);
input             528 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     GzipInputStream gzin(&input, GzipInputStream::AUTO);
input             548 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     ArrayInputStream input(data.data(), data.size());
input             549 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     GzipInputStream gzin(&input);
input             628 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       ArrayInputStream* input =
input             630 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       GzipInputStream* gzin = new GzipInputStream(input);
input             651 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc       delete input;
input             670 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     ArrayInputStream input(str.data(), str.size());
input             671 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc     ReadStuff(&input);
input             697 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         FileInputStream input(file, kBlockSizes[j]);
input             698 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         ReadStuff(&input);
input             699 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         EXPECT_EQ(0, input.GetErrno());
input             730 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         FileInputStream input(file, kBlockSizes[j]);
input             731 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         GzipInputStream gzin(&input);
input             733 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         EXPECT_EQ(0, input.GetErrno());
input             780 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   FileInputStream input(-1);
input             784 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_FALSE(input.Next(&buffer, &size));
input             785 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(EBADF, input.GetErrno());
input             793 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   FileOutputStream input(-1);
input             800 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_TRUE(input.Next(&buffer, &size));
input             803 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_FALSE(input.Next(&buffer, &size));
input             805 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_EQ(EBADF, input.GetErrno());
input             828 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         FileInputStream input(files[0], kBlockSizes[j]);
input             829 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         ReadStuff(&input);
input             830 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc         EXPECT_EQ(0, input.GetErrno());
input             851 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           IstreamInputStream input(&stream, kBlockSizes[j]);
input             852 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           ReadStuff(&input);
input             867 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           IstreamInputStream input(&stream, kBlockSizes[j]);
input             868 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc           ReadStuffLarge(&input);
input             903 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));
input             904 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadStuff(&input);
input             921 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   LimitingInputStream input(&array_input, output.ByteCount());
input             923 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ReadStuff(&input);
input             928 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   ArrayInputStream input(NULL, 0);
input             931 third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc   EXPECT_FALSE(input.Next(&data, &size));
input             116 third_party/protobuf/src/google/protobuf/message.cc bool Message::MergePartialFromCodedStream(io::CodedInputStream* input) {
input             117 third_party/protobuf/src/google/protobuf/message.cc   return WireFormat::ParseAndMergePartial(input, this);
input             121 third_party/protobuf/src/google/protobuf/message.cc   io::FileInputStream input(file_descriptor);
input             122 third_party/protobuf/src/google/protobuf/message.cc   return ParseFromZeroCopyStream(&input) && input.GetErrno() == 0;
input             126 third_party/protobuf/src/google/protobuf/message.cc   io::FileInputStream input(file_descriptor);
input             127 third_party/protobuf/src/google/protobuf/message.cc   return ParsePartialFromZeroCopyStream(&input) && input.GetErrno() == 0;
input             130 third_party/protobuf/src/google/protobuf/message.cc bool Message::ParseFromIstream(istream* input) {
input             131 third_party/protobuf/src/google/protobuf/message.cc   io::IstreamInputStream zero_copy_input(input);
input             132 third_party/protobuf/src/google/protobuf/message.cc   return ParseFromZeroCopyStream(&zero_copy_input) && input->eof();
input             135 third_party/protobuf/src/google/protobuf/message.cc bool Message::ParsePartialFromIstream(istream* input) {
input             136 third_party/protobuf/src/google/protobuf/message.cc   io::IstreamInputStream zero_copy_input(input);
input             137 third_party/protobuf/src/google/protobuf/message.cc   return ParsePartialFromZeroCopyStream(&zero_copy_input) && input->eof();
input             247 third_party/protobuf/src/google/protobuf/message.h   bool ParseFromIstream(istream* input);
input             250 third_party/protobuf/src/google/protobuf/message.h   bool ParsePartialFromIstream(istream* input);
input             272 third_party/protobuf/src/google/protobuf/message.h   virtual bool MergePartialFromCodedStream(io::CodedInputStream* input);
input             103 third_party/protobuf/src/google/protobuf/message_lite.cc inline bool InlineMergeFromCodedStream(io::CodedInputStream* input,
input             106 third_party/protobuf/src/google/protobuf/message_lite.cc inline bool InlineParseFromCodedStream(io::CodedInputStream* input,
input             109 third_party/protobuf/src/google/protobuf/message_lite.cc inline bool InlineParsePartialFromCodedStream(io::CodedInputStream* input,
input             119 third_party/protobuf/src/google/protobuf/message_lite.cc bool InlineMergeFromCodedStream(io::CodedInputStream* input,
input             121 third_party/protobuf/src/google/protobuf/message_lite.cc   if (!message->MergePartialFromCodedStream(input)) return false;
input             129 third_party/protobuf/src/google/protobuf/message_lite.cc bool InlineParseFromCodedStream(io::CodedInputStream* input,
input             132 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineMergeFromCodedStream(input, message);
input             135 third_party/protobuf/src/google/protobuf/message_lite.cc bool InlineParsePartialFromCodedStream(io::CodedInputStream* input,
input             138 third_party/protobuf/src/google/protobuf/message_lite.cc   return message->MergePartialFromCodedStream(input);
input             142 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream input(reinterpret_cast<const uint8*>(data), size);
input             143 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineParseFromCodedStream(&input, message) &&
input             144 third_party/protobuf/src/google/protobuf/message_lite.cc          input.ConsumedEntireMessage();
input             149 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream input(reinterpret_cast<const uint8*>(data), size);
input             150 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineParsePartialFromCodedStream(&input, message) &&
input             151 third_party/protobuf/src/google/protobuf/message_lite.cc          input.ConsumedEntireMessage();
input             156 third_party/protobuf/src/google/protobuf/message_lite.cc bool MessageLite::MergeFromCodedStream(io::CodedInputStream* input) {
input             157 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineMergeFromCodedStream(input, this);
input             160 third_party/protobuf/src/google/protobuf/message_lite.cc bool MessageLite::ParseFromCodedStream(io::CodedInputStream* input) {
input             161 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineParseFromCodedStream(input, this);
input             164 third_party/protobuf/src/google/protobuf/message_lite.cc bool MessageLite::ParsePartialFromCodedStream(io::CodedInputStream* input) {
input             165 third_party/protobuf/src/google/protobuf/message_lite.cc   return InlineParsePartialFromCodedStream(input, this);
input             168 third_party/protobuf/src/google/protobuf/message_lite.cc bool MessageLite::ParseFromZeroCopyStream(io::ZeroCopyInputStream* input) {
input             169 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream decoder(input);
input             174 third_party/protobuf/src/google/protobuf/message_lite.cc     io::ZeroCopyInputStream* input) {
input             175 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream decoder(input);
input             181 third_party/protobuf/src/google/protobuf/message_lite.cc     io::ZeroCopyInputStream* input, int size) {
input             182 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream decoder(input);
input             190 third_party/protobuf/src/google/protobuf/message_lite.cc     io::ZeroCopyInputStream* input, int size) {
input             191 third_party/protobuf/src/google/protobuf/message_lite.cc   io::CodedInputStream decoder(input);
input             117 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParseFromCodedStream(io::CodedInputStream* input);
input             120 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParsePartialFromCodedStream(io::CodedInputStream* input);
input             123 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
input             126 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParsePartialFromZeroCopyStream(io::ZeroCopyInputStream* input);
input             130 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParseFromBoundedZeroCopyStream(io::ZeroCopyInputStream* input, int size);
input             133 third_party/protobuf/src/google/protobuf/message_lite.h   bool ParsePartialFromBoundedZeroCopyStream(io::ZeroCopyInputStream* input,
input             158 third_party/protobuf/src/google/protobuf/message_lite.h   bool MergeFromCodedStream(io::CodedInputStream* input);
input             165 third_party/protobuf/src/google/protobuf/message_lite.h   virtual bool MergePartialFromCodedStream(io::CodedInputStream* input) = 0;
input             199 third_party/protobuf/src/google/protobuf/message_unittest.cc   io::CodedInputStream input(&raw_input);
input             200 third_party/protobuf/src/google/protobuf/message_unittest.cc   EXPECT_TRUE(message.MergePartialFromCodedStream(&input));
input            1154 third_party/protobuf/src/google/protobuf/stubs/strutil.cc string LocalizeRadix(const char* input, const char* radix_pos) {
input            1168 third_party/protobuf/src/google/protobuf/stubs/strutil.cc   result.reserve(strlen(input) + size - 3);
input            1169 third_party/protobuf/src/google/protobuf/stubs/strutil.cc   result.append(input, radix_pos);
input            1047 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::Parse(io::ZeroCopyInputStream* input,
input            1050 third_party/protobuf/src/google/protobuf/text_format.cc   ParserImpl parser(output->GetDescriptor(), input, error_collector_,
input            1054 third_party/protobuf/src/google/protobuf/text_format.cc   return MergeUsingImpl(input, output, &parser);
input            1057 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::ParseFromString(const string& input,
input            1059 third_party/protobuf/src/google/protobuf/text_format.cc   io::ArrayInputStream input_stream(input.data(), input.size());
input            1063 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::Merge(io::ZeroCopyInputStream* input,
input            1065 third_party/protobuf/src/google/protobuf/text_format.cc   ParserImpl parser(output->GetDescriptor(), input, error_collector_,
input            1069 third_party/protobuf/src/google/protobuf/text_format.cc   return MergeUsingImpl(input, output, &parser);
input            1072 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::MergeFromString(const string& input,
input            1074 third_party/protobuf/src/google/protobuf/text_format.cc   io::ArrayInputStream input_stream(input.data(), input.size());
input            1078 third_party/protobuf/src/google/protobuf/text_format.cc bool TextFormat::Parser::MergeUsingImpl(io::ZeroCopyInputStream* input,
input            1093 third_party/protobuf/src/google/protobuf/text_format.cc     const string& input,
input            1096 third_party/protobuf/src/google/protobuf/text_format.cc   io::ArrayInputStream input_stream(input.data(), input.size());
input            1104 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::Parse(io::ZeroCopyInputStream* input,
input            1106 third_party/protobuf/src/google/protobuf/text_format.cc   return Parser().Parse(input, output);
input            1109 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::Merge(io::ZeroCopyInputStream* input,
input            1111 third_party/protobuf/src/google/protobuf/text_format.cc   return Parser().Merge(input, output);
input            1114 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::ParseFromString(const string& input,
input            1116 third_party/protobuf/src/google/protobuf/text_format.cc   return Parser().ParseFromString(input, output);
input            1119 third_party/protobuf/src/google/protobuf/text_format.cc /* static */ bool TextFormat::MergeFromString(const string& input,
input            1121 third_party/protobuf/src/google/protobuf/text_format.cc   return Parser().MergeFromString(input, output);
input            1407 third_party/protobuf/src/google/protobuf/text_format.cc     const string& input,
input            1410 third_party/protobuf/src/google/protobuf/text_format.cc   return Parser().ParseFieldValueFromString(input, field, message);
input             195 third_party/protobuf/src/google/protobuf/text_format.h   static bool Parse(io::ZeroCopyInputStream* input, Message* output);
input             197 third_party/protobuf/src/google/protobuf/text_format.h   static bool ParseFromString(const string& input, Message* output);
input             201 third_party/protobuf/src/google/protobuf/text_format.h   static bool Merge(io::ZeroCopyInputStream* input, Message* output);
input             203 third_party/protobuf/src/google/protobuf/text_format.h   static bool MergeFromString(const string& input, Message* output);
input             208 third_party/protobuf/src/google/protobuf/text_format.h   static bool ParseFieldValueFromString(const string& input,
input             284 third_party/protobuf/src/google/protobuf/text_format.h     bool Parse(io::ZeroCopyInputStream* input, Message* output);
input             286 third_party/protobuf/src/google/protobuf/text_format.h     bool ParseFromString(const string& input, Message* output);
input             288 third_party/protobuf/src/google/protobuf/text_format.h     bool Merge(io::ZeroCopyInputStream* input, Message* output);
input             290 third_party/protobuf/src/google/protobuf/text_format.h     bool MergeFromString(const string& input, Message* output);
input             318 third_party/protobuf/src/google/protobuf/text_format.h     bool ParseFieldValueFromString(const string& input,
input             330 third_party/protobuf/src/google/protobuf/text_format.h     bool MergeUsingImpl(io::ZeroCopyInputStream* input,
input             725 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectFailure(const string& input, const string& message, int line,
input             728 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     ExpectFailure(input, message, line, col, proto.get());
input             731 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectFailure(const string& input, const string& message, int line,
input             733 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     ExpectMessage(input, message, line, col, proto, false);
input             736 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectMessage(const string& input, const string& message, int line,
input             741 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     EXPECT_EQ(parser.ParseFromString(input, proto), expected_result);
input             746 third_party/protobuf/src/google/protobuf/text_format_unittest.cc   void ExpectSuccessAndTree(const string& input, Message* proto,
input             753 third_party/protobuf/src/google/protobuf/text_format_unittest.cc     EXPECT_TRUE(parser.ParseFromString(input, proto));
input             206 third_party/protobuf/src/google/protobuf/unknown_field_set.cc bool UnknownFieldSet::MergeFromCodedStream(io::CodedInputStream* input) {
input             209 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   if (internal::WireFormatLite::SkipMessage(input, &other) &&
input             210 third_party/protobuf/src/google/protobuf/unknown_field_set.cc       input->ConsumedEntireMessage()) {
input             218 third_party/protobuf/src/google/protobuf/unknown_field_set.cc bool UnknownFieldSet::ParseFromCodedStream(io::CodedInputStream* input) {
input             220 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   return MergeFromCodedStream(input);
input             223 third_party/protobuf/src/google/protobuf/unknown_field_set.cc bool UnknownFieldSet::ParseFromZeroCopyStream(io::ZeroCopyInputStream* input) {
input             224 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   io::CodedInputStream coded_input(input);
input             230 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   io::ArrayInputStream input(data, size);
input             231 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   return ParseFromZeroCopyStream(&input);
input             137 third_party/protobuf/src/google/protobuf/unknown_field_set.h   bool MergeFromCodedStream(io::CodedInputStream* input);
input             138 third_party/protobuf/src/google/protobuf/unknown_field_set.h   bool ParseFromCodedStream(io::CodedInputStream* input);
input             139 third_party/protobuf/src/google/protobuf/unknown_field_set.h   bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
input             223 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   io::CodedInputStream input(&raw_input);
input             224 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message));
input             355 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   io::CodedInputStream input(&raw_input);
input             356 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &all_types_message));
input             378 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   io::CodedInputStream input(&raw_input);
input             379 third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc   ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &message));
input              65 third_party/protobuf/src/google/protobuf/wire_format.cc bool WireFormat::ParseAndMergePartial(io::CodedInputStream* input,
input              71 third_party/protobuf/src/google/protobuf/wire_format.cc     uint32 tag = input->ReadTag();
input              91 third_party/protobuf/src/google/protobuf/wire_format.cc         if (input->GetExtensionPool() == NULL) {
input              94 third_party/protobuf/src/google/protobuf/wire_format.cc           field = input->GetExtensionPool()
input             104 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!ParseAndMergeMessageSetItem(input, message)) {
input             111 third_party/protobuf/src/google/protobuf/wire_format.cc     if (!ParseAndMergeField(tag, field, message, input)) {
input             121 third_party/protobuf/src/google/protobuf/wire_format.cc     io::CodedInputStream* input) {
input             143 third_party/protobuf/src/google/protobuf/wire_format.cc         input, tag, message_reflection->MutableUnknownFields(message));
input             146 third_party/protobuf/src/google/protobuf/wire_format.cc     if (!input->ReadVarint32(&length)) return false;
input             147 third_party/protobuf/src/google/protobuf/wire_format.cc     io::CodedInputStream::Limit limit = input->PushLimit(length);
input             152 third_party/protobuf/src/google/protobuf/wire_format.cc         while (input->BytesUntilLimit() > 0) {                                 \
input             155 third_party/protobuf/src/google/protobuf/wire_format.cc                 CPPTYPE, WireFormatLite::TYPE_##TYPE>(input, &value))          \
input             181 third_party/protobuf/src/google/protobuf/wire_format.cc         while (input->BytesUntilLimit() > 0) {
input             184 third_party/protobuf/src/google/protobuf/wire_format.cc                   input, &value)) return false;
input             205 third_party/protobuf/src/google/protobuf/wire_format.cc     input->PopLimit(limit);
input             213 third_party/protobuf/src/google/protobuf/wire_format.cc                 CPPTYPE, WireFormatLite::TYPE_##TYPE>(input, &value))         \
input             244 third_party/protobuf/src/google/protobuf/wire_format.cc                 input, &value)) return false;
input             267 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!WireFormatLite::ReadString(input, &value)) return false;
input             279 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!WireFormatLite::ReadBytes(input, &value)) return false;
input             292 third_party/protobuf/src/google/protobuf/wire_format.cc               message, field, input->GetExtensionFactory());
input             295 third_party/protobuf/src/google/protobuf/wire_format.cc               message, field, input->GetExtensionFactory());
input             299 third_party/protobuf/src/google/protobuf/wire_format.cc                                        input, sub_message))
input             308 third_party/protobuf/src/google/protobuf/wire_format.cc               message, field, input->GetExtensionFactory());
input             311 third_party/protobuf/src/google/protobuf/wire_format.cc               message, field, input->GetExtensionFactory());
input             314 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!WireFormatLite::ReadMessage(input, sub_message)) return false;
input             324 third_party/protobuf/src/google/protobuf/wire_format.cc     io::CodedInputStream* input,
input             346 third_party/protobuf/src/google/protobuf/wire_format.cc     uint32 tag = input->ReadTag();
input             352 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!input->ReadVarint32(&type_id)) return false;
input             378 third_party/protobuf/src/google/protobuf/wire_format.cc           if (!input->ReadVarint32(&length)) return false;
input             379 third_party/protobuf/src/google/protobuf/wire_format.cc           if (!input->ReadString(&temp, length)) return false;
input             386 third_party/protobuf/src/google/protobuf/wire_format.cc           if (!ParseAndMergeField(fake_tag, field, message, input)) {
input             399 third_party/protobuf/src/google/protobuf/wire_format.cc         if (!WireFormatLite::SkipField(input, tag, NULL)) return false;
input             106 third_party/protobuf/src/google/protobuf/wire_format.h   static bool ParseAndMergePartial(io::CodedInputStream* input,
input             141 third_party/protobuf/src/google/protobuf/wire_format.h       io::CodedInputStream* input);
input             159 third_party/protobuf/src/google/protobuf/wire_format.h       io::CodedInputStream* input,
input              62 third_party/protobuf/src/google/protobuf/wire_format_lite.cc     io::CodedInputStream* input, uint32 tag) {
input              63 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   return WireFormatLite::SkipField(input, tag, unknown_fields_);
input              66 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool FieldSkipper::SkipMessage(io::CodedInputStream* input) {
input              67 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   return WireFormatLite::SkipMessage(input, unknown_fields_);
input             130 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool WireFormatLite::SkipField(io::CodedInputStream* input, uint32 tag,
input             137 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->ReadVarint64(&value)) return false;
input             143 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->ReadLittleEndian64(&value)) return false;
input             149 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->ReadVarint32(&length)) return false;
input             151 third_party/protobuf/src/google/protobuf/wire_format_lite.cc         if (!input->Skip(length)) return false;
input             153 third_party/protobuf/src/google/protobuf/wire_format_lite.cc         if (!input->ReadString(unknown_fields->AddLengthDelimited(number),
input             161 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->IncrementRecursionDepth()) return false;
input             162 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!SkipMessage(input, (unknown_fields == NULL) ?
input             166 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       input->DecrementRecursionDepth();
input             168 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->LastTagWas(WireFormatLite::MakeTag(
input             180 third_party/protobuf/src/google/protobuf/wire_format_lite.cc       if (!input->ReadLittleEndian32(&value)) return false;
input             190 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool WireFormatLite::SkipMessage(io::CodedInputStream* input,
input             193 third_party/protobuf/src/google/protobuf/wire_format_lite.cc     uint32 tag = input->ReadTag();
input             206 third_party/protobuf/src/google/protobuf/wire_format_lite.cc     if (!SkipField(input, tag, unknown_fields)) return false;
input             414 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool WireFormatLite::ReadPackedEnumNoInline(io::CodedInputStream* input,
input             418 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   if (!input->ReadVarint32(&length)) return false;
input             419 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   io::CodedInputStream::Limit limit = input->PushLimit(length);
input             420 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   while (input->BytesUntilLimit() > 0) {
input             423 third_party/protobuf/src/google/protobuf/wire_format_lite.cc         int, WireFormatLite::TYPE_ENUM>(input, &value)) {
input             430 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   input->PopLimit(limit);
input             569 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool WireFormatLite::ReadString(io::CodedInputStream* input,
input             573 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   if (!input->ReadVarint32(&length)) return false;
input             574 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   if (!input->InternalReadStringInline(value, length)) return false;
input             577 third_party/protobuf/src/google/protobuf/wire_format_lite.cc bool WireFormatLite::ReadBytes(io::CodedInputStream* input,
input             580 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   if (!input->ReadVarint32(&length)) return false;
input             581 third_party/protobuf/src/google/protobuf/wire_format_lite.cc   return input->InternalReadStringInline(value, length);
input             168 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool SkipField(io::CodedInputStream* input, uint32 tag,
input             173 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool SkipMessage(io::CodedInputStream* input,
input             179 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool SkipMessage(io::CodedInputStream* input);
input             275 third_party/protobuf/src/google/protobuf/wire_format_lite.h #define input  io::CodedInputStream*  input
input             287 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadPrimitive(input, CType* value) INL;
input             295 third_party/protobuf/src/google/protobuf/wire_format_lite.h                                            input,
input             303 third_party/protobuf/src/google/protobuf/wire_format_lite.h                                             input,
input             319 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadPackedPrimitive(input,
input             325 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool ReadPackedPrimitiveNoInline(input, RepeatedField<CType>* value);
input             329 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool ReadPackedEnumNoInline(input,
input             333 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool ReadString(input, string* value);
input             334 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static bool ReadBytes (input, string* value);
input             336 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadGroup  (field_number, input, MessageLite* value);
input             337 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadMessage(input, MessageLite* value);
input             343 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadGroupNoVirtual(field_number, input,
input             346 third_party/protobuf/src/google/protobuf/wire_format_lite.h   static inline bool ReadMessageNoVirtual(input, MessageType* value);
input             534 third_party/protobuf/src/google/protobuf/wire_format_lite.h       google::protobuf::io::CodedInputStream* input,
input             550 third_party/protobuf/src/google/protobuf/wire_format_lite.h   bool SkipField(io::CodedInputStream* input, uint32 tag);
input             554 third_party/protobuf/src/google/protobuf/wire_format_lite.h   bool SkipMessage(io::CodedInputStream* input);
input              55 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              58 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&temp)) return false;
input              64 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              67 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint64(&temp)) return false;
input              73 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              75 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   return input->ReadVarint32(value);
input              79 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              81 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   return input->ReadVarint64(value);
input              85 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              88 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&temp)) return false;
input              94 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input              97 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint64(&temp)) return false;
input             103 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             105 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   return input->ReadLittleEndian32(value);
input             109 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             111 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   return input->ReadLittleEndian64(value);
input             115 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             118 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadLittleEndian32(&temp)) return false;
input             124 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             127 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadLittleEndian64(&temp)) return false;
input             133 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             136 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadLittleEndian32(&temp)) return false;
input             142 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             145 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadLittleEndian64(&temp)) return false;
input             151 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             154 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&temp)) return false;
input             160 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             163 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&temp)) return false;
input             226 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h                                                io::CodedInputStream* input,
input             229 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!ReadPrimitive<CType, DeclaredType>(input, &value)) return false;
input             232 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   while (elements_already_reserved > 0 && input->ExpectTag(tag)) {
input             233 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     if (!ReadPrimitive<CType, DeclaredType>(input, &value)) return false;
input             244 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             248 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!ReadPrimitive<CType, DeclaredType>(input, &value))
input             263 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->GetDirectBufferPointerInline(&void_pointer, &size);
input             281 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h       input->Skip(read_bytes);
input             295 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,                                               \
input             299 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h       tag_size, tag, input, values);                                           \
input             315 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input,
input             318 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h       tag_size, tag, input, value);
input             322 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h inline bool WireFormatLite::ReadPackedPrimitive(io::CodedInputStream* input,
input             325 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&length)) return false;
input             326 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   io::CodedInputStream::Limit limit = input->PushLimit(length);
input             327 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   while (input->BytesUntilLimit() > 0) {
input             329 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     if (!ReadPrimitive<CType, DeclaredType>(input, &value)) return false;
input             332 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->PopLimit(limit);
input             337 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h bool WireFormatLite::ReadPackedPrimitiveNoInline(io::CodedInputStream* input,
input             339 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   return ReadPackedPrimitive<CType, DeclaredType>(input, values);
input             344 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h                                       io::CodedInputStream* input,
input             346 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->IncrementRecursionDepth()) return false;
input             347 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!value->MergePartialFromCodedStream(input)) return false;
input             348 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->DecrementRecursionDepth();
input             350 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->LastTagWas(MakeTag(field_number, WIRETYPE_END_GROUP))) {
input             355 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h inline bool WireFormatLite::ReadMessage(io::CodedInputStream* input,
input             358 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&length)) return false;
input             359 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->IncrementRecursionDepth()) return false;
input             360 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   io::CodedInputStream::Limit limit = input->PushLimit(length);
input             361 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!value->MergePartialFromCodedStream(input)) return false;
input             364 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ConsumedEntireMessage()) return false;
input             365 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->PopLimit(limit);
input             366 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->DecrementRecursionDepth();
input             382 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     int field_number, io::CodedInputStream* input,
input             384 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->IncrementRecursionDepth()) return false;
input             386 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h       MessageType_WorkAroundCppLookupDefect::MergePartialFromCodedStream(input))
input             388 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->DecrementRecursionDepth();
input             390 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->LastTagWas(MakeTag(field_number, WIRETYPE_END_GROUP))) {
input             397 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h     io::CodedInputStream* input, MessageType_WorkAroundCppLookupDefect* value) {
input             399 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ReadVarint32(&length)) return false;
input             400 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->IncrementRecursionDepth()) return false;
input             401 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   io::CodedInputStream::Limit limit = input->PushLimit(length);
input             403 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h       MessageType_WorkAroundCppLookupDefect::MergePartialFromCodedStream(input))
input             407 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   if (!input->ConsumedEntireMessage()) return false;
input             408 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->PopLimit(limit);
input             409 third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h   input->DecrementRecursionDepth();
input              88 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input              89 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             105 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input             106 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             122 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input             123 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             138 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input             139 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             154 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input             155 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             171 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(&raw_input);
input             172 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WireFormat::ParseAndMergePartial(&input, &dest);
input             477 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   io::CodedInputStream input(reinterpret_cast<const uint8*>(data.data()),
input             479 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   ASSERT_TRUE(WireFormat::ParseAndMergePartial(&input, &dynamic_message_set));
input             515 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     io::CodedInputStream input(
input             517 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_TRUE(WireFormat::ParseAndMergePartial(&input, &message_set));
input             518 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_TRUE(input.ConsumedEntireMessage());
input             527 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   string input("goodbye");  // Invalid wire format data.
input             528 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_FALSE(message_set.ParseFromString(input));
input             539 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     io::CodedInputStream input(&raw_input);
input             540 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     input.SetRecursionLimit(4);
input             542 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_TRUE(message2.ParseFromCodedStream(&input));
input             547 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     io::CodedInputStream input(&raw_input);
input             548 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     input.SetRecursionLimit(3);
input             550 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_FALSE(message2.ParseFromCodedStream(&input));
input             567 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     io::CodedInputStream input(&raw_input);
input             568 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     input.SetRecursionLimit(4);
input             570 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_TRUE(message2.ParseFromCodedStream(&input));
input             575 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     io::CodedInputStream input(&raw_input);
input             576 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     input.SetRecursionLimit(3);
input             578 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     EXPECT_FALSE(message2.ParseFromCodedStream(&input));
input             857 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneString input;
input             861 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     WriteMessage(kInvalidUTF8String, &input, &wire_buffer);
input             877 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneString input;
input             878 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WriteMessage(kInvalidUTF8String, &input, &wire_buffer);
input             900 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneString input;
input             904 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     WriteMessage(kValidUTF8String, &input, &wire_buffer);
input             912 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneString input;
input             913 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WriteMessage(kValidUTF8String, &input, &wire_buffer);
input             922 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(input.data(), output.data());
input             928 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneBytes input;
input             932 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc     WriteMessage(kInvalidUTF8String, &input, &wire_buffer);
input             940 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::OneBytes input;
input             941 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   WriteMessage(kInvalidUTF8String, &input, &wire_buffer);
input             950 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   EXPECT_EQ(input.data(), output.data());
input             954 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   protobuf_unittest::MoreBytes input;
input             955 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   input.add_data(kValidUTF8String);
input             956 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   input.add_data(kInvalidUTF8String);
input             957 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   input.add_data(kInvalidUTF8String);
input             958 third_party/protobuf/src/google/protobuf/wire_format_unittest.cc   string wire_buffer = input.SerializeAsString();
input              47 third_party/qcms/src/transform-sse1.c     float const * input = (float*)(((uintptr_t)&input_back[16]) & ~0xf);
input              50 third_party/qcms/src/transform-sse1.c     uint32_t const * output = (uint32_t*)input;
input             167 third_party/qcms/src/transform-sse1.c     float const * input = (float*)(((uintptr_t)&input_back[16]) & ~0xf);
input             170 third_party/qcms/src/transform-sse1.c     uint32_t const * output = (uint32_t*)input;
input              47 third_party/qcms/src/transform-sse2.c     float const * input = (float*)(((uintptr_t)&input_back[16]) & ~0xf);
input              50 third_party/qcms/src/transform-sse2.c     uint32_t const * output = (uint32_t*)input;
input             161 third_party/qcms/src/transform-sse2.c     float const * input = (float*)(((uintptr_t)&input_back[16]) & ~0xf);
input             164 third_party/qcms/src/transform-sse2.c     uint32_t const * output = (uint32_t*)input;
input             422 third_party/qcms/src/transform_util.c                 uint16_fract_t input = floor(x + .5);
input             423 third_party/qcms/src/transform_util.c                 output[i] = lut_inverse_interp16(input, table, length);
input             516 third_party/qcms/src/transform_util.c                 uint16_fract_t input = floor(x + .5);
input             517 third_party/qcms/src/transform_util.c                 output[i] = input;
input             326 third_party/re2/re2/re2.cc bool RE2::ConsumeN(StringPiece* input, const RE2& re,
input             329 third_party/re2/re2/re2.cc   if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) {
input             330 third_party/re2/re2/re2.cc     input->remove_prefix(consumed);
input             337 third_party/re2/re2/re2.cc bool RE2::FindAndConsumeN(StringPiece* input, const RE2& re,
input             340 third_party/re2/re2/re2.cc   if (re.DoMatch(*input, UNANCHORED, &consumed, args, n)) {
input             341 third_party/re2/re2/re2.cc     input->remove_prefix(consumed);
input             343 third_party/re2/re2/re2.h   static bool ConsumeN(StringPiece* input, const RE2& pattern, // 3..16 args
input             352 third_party/re2/re2/re2.h   static bool FindAndConsumeN(StringPiece* input, const RE2& pattern,
input              59 third_party/re2/re2/testing/exhaustive_tester.cc static void PrintResult(const RE2& re, const StringPiece& input, RE2::Anchor anchor, StringPiece *m, int n) {
input              60 third_party/re2/re2/testing/exhaustive_tester.cc   if (!re.Match(input, 0, input.size(), anchor, m, n)) {
input              70 third_party/re2/re2/testing/exhaustive_tester.cc       printf("%d-%d", static_cast<int>(m[i].begin() - input.begin()), static_cast<int>(m[i].end() - input.begin()));
input             111 third_party/re2/re2/testing/exhaustive_tester.cc       StringPiece input = strgen_.Next();
input             112 third_party/re2/re2/testing/exhaustive_tester.cc       PrintResult(re, input, RE2::ANCHOR_BOTH, group, ngroup);
input             114 third_party/re2/re2/testing/exhaustive_tester.cc       PrintResult(re, input, RE2::UNANCHORED, group, ngroup);
input             116 third_party/re2/re2/testing/exhaustive_tester.cc       PrintResult(relongest, input, RE2::ANCHOR_BOTH, group, ngroup);
input             118 third_party/re2/re2/testing/exhaustive_tester.cc       PrintResult(relongest, input, RE2::UNANCHORED, group, ngroup);
input             241 third_party/re2/re2/testing/re2_test.cc   StringPiece input(s);
input             243 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::Consume(&input, r, &word));
input             244 third_party/re2/re2/testing/re2_test.cc   CHECK_EQ(word, "aaa") << " input: " << input;
input             245 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::Consume(&input, r, &word));
input             246 third_party/re2/re2/testing/re2_test.cc   CHECK_EQ(word, "b") << " input: " << input;
input             247 third_party/re2/re2/testing/re2_test.cc   CHECK(! RE2::Consume(&input, r, &word)) << " input: " << input;
input             252 third_party/re2/re2/testing/re2_test.cc   StringPiece input(s);
input             258 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 0));  // Skips "one".
input             263 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 1));
input             269 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)\\s*(\\d+)", args, 2));
input             281 third_party/re2/re2/testing/re2_test.cc   StringPiece input(s);
input             283 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::FindAndConsume(&input, r, &word));
input             285 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::FindAndConsume(&input, r, &word));
input             287 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::FindAndConsume(&input, r, &word));
input             289 third_party/re2/re2/testing/re2_test.cc   CHECK(! RE2::FindAndConsume(&input, r, &word));
input             294 third_party/re2/re2/testing/re2_test.cc   input = "aaa";
input             295 third_party/re2/re2/testing/re2_test.cc   CHECK(RE2::FindAndConsume(&input, "aaa"));
input             296 third_party/re2/re2/testing/re2_test.cc   CHECK_EQ(input, "");
input             301 third_party/re2/re2/testing/re2_test.cc   StringPiece input(s);
input             307 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 0));  // Skips "one".
input             312 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 1));
input             318 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)\\s*(\\d+)", args, 2));
input             233 third_party/re2/util/pcre.cc bool PCRE::ConsumeFunctor::operator ()(StringPiece* input,
input             273 third_party/re2/util/pcre.cc   if (pattern.DoMatchImpl(*input, ANCHOR_START, &consumed,
input             275 third_party/re2/util/pcre.cc     input->remove_prefix(consumed);
input             282 third_party/re2/util/pcre.cc bool PCRE::FindAndConsumeFunctor::operator ()(StringPiece* input,
input             322 third_party/re2/util/pcre.cc   if (pattern.DoMatchImpl(*input, UNANCHORED, &consumed,
input             324 third_party/re2/util/pcre.cc     input->remove_prefix(consumed);
input             335 third_party/re2/util/pcre.h     bool operator ()(StringPiece* input, const PCRE& pattern, // 3..16 args
input             361 third_party/re2/util/pcre.h     bool operator ()(StringPiece* input, const PCRE& pattern,
input             102 third_party/sqlite/src/src/parse.y input ::= cmdlist.
input              83 tools/gn/file_template.h   void ApplyString(const std::string& input,
input             565 tools/gn/filesystem_utils.cc std::string RebaseSourceAbsolutePath(const std::string& input,
input             567 tools/gn/filesystem_utils.cc   CHECK(input.size() >= 2 && input[0] == '/' && input[1] == '/')
input             568 tools/gn/filesystem_utils.cc       << "Input to rebase isn't source-absolute: " << input;
input             577 tools/gn/filesystem_utils.cc   size_t max_common_length = std::min(input.size(), dest.size());
input             579 tools/gn/filesystem_utils.cc     if (IsSlash(input[i]) && IsSlash(dest[i]))
input             581 tools/gn/filesystem_utils.cc     else if (input[i] != dest[i])
input             593 tools/gn/filesystem_utils.cc   ret.append(&input[common_prefix_len], input.size() - common_prefix_len);
input             144 tools/gn/filesystem_utils.h std::string RebaseSourceAbsolutePath(const std::string& input,
input              21 tools/gn/filesystem_utils_unittest.cc   std::string input;
input              22 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindExtension(&input).as_string());
input              23 tools/gn/filesystem_utils_unittest.cc   input = "foo/bar/baz";
input              24 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindExtension(&input).as_string());
input              25 tools/gn/filesystem_utils_unittest.cc   input = "foo.";
input              26 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindExtension(&input).as_string());
input              27 tools/gn/filesystem_utils_unittest.cc   input = "f.o.bar";
input              28 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("bar", FindExtension(&input).as_string());
input              29 tools/gn/filesystem_utils_unittest.cc   input = "foo.bar/";
input              30 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindExtension(&input).as_string());
input              31 tools/gn/filesystem_utils_unittest.cc   input = "foo.bar/baz";
input              32 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindExtension(&input).as_string());
input              66 tools/gn/filesystem_utils_unittest.cc   std::string input;
input              67 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", FindDir(&input));
input              68 tools/gn/filesystem_utils_unittest.cc   input = "/";
input              69 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("/", FindDir(&input));
input              70 tools/gn/filesystem_utils_unittest.cc   input = "foo/";
input              71 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("foo/", FindDir(&input));
input              72 tools/gn/filesystem_utils_unittest.cc   input = "foo/bar/baz";
input              73 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("foo/bar/", FindDir(&input));
input             138 tools/gn/filesystem_utils_unittest.cc   std::string input;
input             140 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             141 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", input);
input             143 tools/gn/filesystem_utils_unittest.cc   input = "foo/bar.txt";
input             144 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             145 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("foo/bar.txt", input);
input             147 tools/gn/filesystem_utils_unittest.cc   input = ".";
input             148 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             149 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", input);
input             151 tools/gn/filesystem_utils_unittest.cc   input = "..";
input             152 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             153 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("..", input);
input             155 tools/gn/filesystem_utils_unittest.cc   input = "foo//bar";
input             156 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             157 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("foo/bar", input);
input             159 tools/gn/filesystem_utils_unittest.cc   input = "//foo";
input             160 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             161 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("//foo", input);
input             163 tools/gn/filesystem_utils_unittest.cc   input = "foo/..//bar";
input             164 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             165 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("bar", input);
input             167 tools/gn/filesystem_utils_unittest.cc   input = "foo/../../bar";
input             168 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             169 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("../bar", input);
input             171 tools/gn/filesystem_utils_unittest.cc   input = "/../foo";  // Don't go aboe the root dir.
input             172 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             173 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("/foo", input);
input             175 tools/gn/filesystem_utils_unittest.cc   input = "//../foo";  // Don't go above the root dir.
input             176 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             177 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("//foo", input);
input             179 tools/gn/filesystem_utils_unittest.cc   input = "../foo";
input             180 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             181 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("../foo", input);
input             183 tools/gn/filesystem_utils_unittest.cc   input = "..";
input             184 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             185 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("..", input);
input             187 tools/gn/filesystem_utils_unittest.cc   input = "./././.";
input             188 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             189 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("", input);
input             191 tools/gn/filesystem_utils_unittest.cc   input = "../../..";
input             192 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             193 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("../../..", input);
input             195 tools/gn/filesystem_utils_unittest.cc   input = "../";
input             196 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             197 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("../", input);
input             200 tools/gn/filesystem_utils_unittest.cc   input = "foo\\..\\..\\bar";
input             201 tools/gn/filesystem_utils_unittest.cc   NormalizePath(&input);
input             202 tools/gn/filesystem_utils_unittest.cc   EXPECT_EQ("../bar", input);
input              22 tools/gn/function_rebase_path.cc void MakeSlashEndingMatchInput(const std::string& input, std::string* output) {
input              23 tools/gn/function_rebase_path.cc   if (EndsWithSlash(input)) {
input              25 tools/gn/function_rebase_path.cc       output->push_back(input[input.size() - 1]);
input              14 tools/gn/function_rebase_path_unittest.cc                       const char* input,
input              18 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, input));
input              29 tools/gn/input_conversion.cc Err MakeParseErr(const std::string& input,
input              38 tools/gn/input_conversion.cc   help_text.append(input);
input              51 tools/gn/input_conversion.cc Value ParseString(const std::string& input,
input              56 tools/gn/input_conversion.cc   input_file.SetContents(input);
input              60 tools/gn/input_conversion.cc     *err = MakeParseErr(input, origin, *err);
input              66 tools/gn/input_conversion.cc     *err = MakeParseErr(input, origin, *err);
input              78 tools/gn/input_conversion.cc     *err = MakeParseErr(input, origin, Err());
input              89 tools/gn/input_conversion.cc     *err = MakeParseErr(input, origin, nested_err);
input             101 tools/gn/input_conversion.cc Value ParseList(const std::string& input,
input             106 tools/gn/input_conversion.cc   base::SplitString(input, '\n', &as_lines);
input             124 tools/gn/input_conversion.cc Value DoConvertInputToValue(const std::string& input,
input             135 tools/gn/input_conversion.cc     base::TrimWhitespaceASCII(input, base::TRIM_ALL, &trimmed);
input             144 tools/gn/input_conversion.cc     return ParseString(input, origin, err);
input             146 tools/gn/input_conversion.cc     return Value(origin, input);
input             148 tools/gn/input_conversion.cc     return ParseList(input, origin, err);
input             200 tools/gn/input_conversion.cc Value ConvertInputToValue(const std::string& input,
input             208 tools/gn/input_conversion.cc   return DoConvertInputToValue(input, origin, input_conversion_value,
input              23 tools/gn/input_conversion.h Value ConvertInputToValue(const std::string& input,
input              12 tools/gn/input_conversion_unittest.cc   std::string input("\nfoo bar  \n");
input              13 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "string"), &err);
input              16 tools/gn/input_conversion_unittest.cc   EXPECT_EQ(input, result.string_value());
input              19 tools/gn/input_conversion_unittest.cc   result = ConvertInputToValue(input, NULL, Value(NULL, "trim string"), &err);
input              27 tools/gn/input_conversion_unittest.cc   std::string input("\nfoo\nbar  \n\n");
input              28 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "list lines"),
input              39 tools/gn/input_conversion_unittest.cc   result = ConvertInputToValue(input, NULL, Value(NULL, "trim list lines"),
input              50 tools/gn/input_conversion_unittest.cc   std::string input("\"str\"");
input              51 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              59 tools/gn/input_conversion_unittest.cc   std::string input("\n\n  6 \n ");
input              60 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              68 tools/gn/input_conversion_unittest.cc   std::string input("\n [ \"a\", 5]");
input              69 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              86 tools/gn/input_conversion_unittest.cc   std::string input("\n [ \"a\", 5\nfoo bar");
input              87 tools/gn/input_conversion_unittest.cc   Value result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              91 tools/gn/input_conversion_unittest.cc   input = "{ foo = 5 }";
input              92 tools/gn/input_conversion_unittest.cc   result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              96 tools/gn/input_conversion_unittest.cc   input = "print(5)";
input              97 tools/gn/input_conversion_unittest.cc   result = ConvertInputToValue(input, NULL, Value(NULL, "value"), &err);
input              29 tools/gn/label.cc                                  const base::StringPiece& input,
input              33 tools/gn/label.cc   if (input.empty()) {
input              40 tools/gn/label.cc   if (input[0] == '/' && (input.size() == 1 || input[1] != '/')) {
input              47 tools/gn/label.cc   *result = current_dir.ResolveRelativeDir(input);
input              57 tools/gn/label.cc                               const base::StringPiece& input,
input              60 tools/gn/label.cc   if (!input.empty()) {
input              62 tools/gn/label.cc     result->assign(input.data(), input.size());
input              97 tools/gn/label.cc              const base::StringPiece& input,
input             104 tools/gn/label.cc   const char* input_str = input.data();
input             106 tools/gn/label.cc   size_t path_separator = input.find_first_of(":(");
input             111 tools/gn/label.cc     location_piece = input;
input             116 tools/gn/label.cc     size_t toolchain_separator = input.find('(', path_separator);
input             119 tools/gn/label.cc                                      input.size() - path_separator - 1);
input             138 tools/gn/label.cc       if (input[input.size() - 1] != ')') {
input             147 tools/gn/label.cc           input.size() - toolchain_separator - 2);
input             214 tools/gn/label.cc                      const Value& input,
input             217 tools/gn/label.cc   if (input.type() != Value::STRING) {
input             218 tools/gn/label.cc     *err = Err(input, "Dependency is not a string.");
input             221 tools/gn/label.cc   const std::string& input_string = input.string_value();
input             223 tools/gn/label.cc     *err = Err(input, "Dependency string is empty.");
input             227 tools/gn/label.cc   if (!::Resolve(current_dir, current_toolchain, input, input_string,
input              38 tools/gn/label.h                        const Value& input,
input              15 tools/gn/parser_unittest.cc bool GetTokens(const InputFile* input, std::vector<Token>* result) {
input              18 tools/gn/parser_unittest.cc   *result = Tokenizer::Tokenize(input, &err);
input              22 tools/gn/parser_unittest.cc void DoParserPrintTest(const char* input, const char* expected) {
input              25 tools/gn/parser_unittest.cc   input_file.SetContents(input);
input              40 tools/gn/parser_unittest.cc void DoExpressionPrintTest(const char* input, const char* expected) {
input              43 tools/gn/parser_unittest.cc   input_file.SetContents(input);
input              58 tools/gn/parser_unittest.cc void DoParserErrorTest(const char* input, int err_line, int err_char) {
input              60 tools/gn/parser_unittest.cc   input_file.SetContents(input);
input              76 tools/gn/parser_unittest.cc void DoExpressionErrorTest(const char* input, int err_line, int err_char) {
input              78 tools/gn/parser_unittest.cc   input_file.SetContents(input);
input             131 tools/gn/parser_unittest.cc   const char* input = "(foo(1)) + (a + (b - c) + d)";
input             144 tools/gn/parser_unittest.cc   DoExpressionPrintTest(input, expected);
input             149 tools/gn/parser_unittest.cc   const char* input = "5 - 1 - 2\n";
input             156 tools/gn/parser_unittest.cc   DoExpressionPrintTest(input, expected);
input             160 tools/gn/parser_unittest.cc   const char* input =
input             176 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input             289 tools/gn/parser_unittest.cc   const char* input =
input             314 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input             318 tools/gn/parser_unittest.cc   const char* input =
input             362 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input             366 tools/gn/parser_unittest.cc   const char* input = "{cc_test(\"foo\") {{foo=1}\n{}}}";
input             379 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input             434 tools/gn/parser_unittest.cc   const char* input = "a = b[1]";
input             444 tools/gn/parser_unittest.cc       input,
input             464 tools/gn/parser_unittest.cc   const char* input = "func(\"stuff\") {\n}";
input             473 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input             478 tools/gn/parser_unittest.cc   const char* input = "a = b + c && d || e";
input             490 tools/gn/parser_unittest.cc   DoParserPrintTest(input, expected);
input              38 tools/gn/string_utils.cc                             const char* input, size_t size,
input              51 tools/gn/string_utils.cc   if (input[*i] == '{') {
input              65 tools/gn/string_utils.cc   if (!Tokenizer::IsIdentifierFirstChar(input[*i])) {
input              76 tools/gn/string_utils.cc   while (*i < size && Tokenizer::IsIdentifierContinuingChar(input[*i]))
input              87 tools/gn/string_utils.cc     } else if (input[*i] != '}') {
input              98 tools/gn/string_utils.cc   *identifier = base::StringPiece(&input[begin_offset],
input             133 tools/gn/string_utils.cc   const char* input = &literal.value().data()[1];
input             139 tools/gn/string_utils.cc     if (input[i] == '\\') {
input             141 tools/gn/string_utils.cc         switch (input[i + 1]) {
input             145 tools/gn/string_utils.cc             output.push_back(input[i + 1]);
input             152 tools/gn/string_utils.cc       output.push_back(input[i]);
input             153 tools/gn/string_utils.cc     } else if (input[i] == '$') {
input             155 tools/gn/string_utils.cc       if (!LocateInlineIdenfitier(literal, input, size, &i, &identifier, err))
input             160 tools/gn/string_utils.cc       output.push_back(input[i]);
input              15 tools/gn/string_utils_unittest.cc bool CheckExpansionCase(const char* input, const char* expected, bool success) {
input              24 tools/gn/string_utils_unittest.cc   literal_string.append(input);
input              18 tools/gn/tokenizer_unittest.cc bool CheckTokenizer(const char* input, const TokenExpectation (&expect)[len]) {
input              20 tools/gn/tokenizer_unittest.cc   input_file.SetContents(input);
input             137 tools/gn/tokenizer_unittest.cc   InputFile input(SourceFile("/test"));
input             138 tools/gn/tokenizer_unittest.cc   input.SetContents("1 2 \"three\"\n  4");
input             140 tools/gn/tokenizer_unittest.cc   std::vector<Token> results = Tokenizer::Tokenize(&input, &err);
input             143 tools/gn/tokenizer_unittest.cc   ASSERT_TRUE(results[0].location() == Location(&input, 1, 1));
input             144 tools/gn/tokenizer_unittest.cc   ASSERT_TRUE(results[1].location() == Location(&input, 1, 3));
input             145 tools/gn/tokenizer_unittest.cc   ASSERT_TRUE(results[2].location() == Location(&input, 1, 5));
input             146 tools/gn/tokenizer_unittest.cc   ASSERT_TRUE(results[3].location() == Location(&input, 2, 3));
input              14 tools/gn/visibility_unittest.cc   const char* input;
input              57 tools/gn/visibility_unittest.cc         Visibility::GetPattern(current_dir, Value(NULL, cur.input), &err);
input              59 tools/gn/visibility_unittest.cc     EXPECT_EQ(cur.success, !err.has_error()) << i << " " << cur.input;
input              60 tools/gn/visibility_unittest.cc     EXPECT_EQ(cur.type, result.type()) << i << " " << cur.input;
input              61 tools/gn/visibility_unittest.cc     EXPECT_EQ(cur.dir, result.dir().value()) << i << " " << cur.input;
input              62 tools/gn/visibility_unittest.cc     EXPECT_EQ(cur.name, result.name()) << i << " " << cur.input;
input              45 tools/imagediff/image_diff_png.cc void ConvertBetweenBGRAandRGBA(const unsigned char* input, int pixel_width,
input              48 tools/imagediff/image_diff_png.cc     const unsigned char* pixel_in = &input[x * 4];
input             295 tools/imagediff/image_diff_png.cc bool BuildPNGStruct(const unsigned char* input, size_t input_size,
input             301 tools/imagediff/image_diff_png.cc   if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
input             320 tools/imagediff/image_diff_png.cc bool Decode(const unsigned char* input, size_t input_size,
input             325 tools/imagediff/image_diff_png.cc   if (!BuildPNGStruct(input, input_size, &png_ptr, &info_ptr))
input             342 tools/imagediff/image_diff_png.cc                    const_cast<unsigned char*>(input),
input             467 tools/imagediff/image_diff_png.cc                    const unsigned char* input, int compression_level,
input             506 tools/imagediff/image_diff_png.cc                     const_cast<unsigned char*>(&input[y * row_byte_width]));
input             512 tools/imagediff/image_diff_png.cc       converter(&input[y * row_byte_width], width, row_buffer, NULL);
input             525 tools/imagediff/image_diff_png.cc bool EncodeWithCompressionLevel(const unsigned char* input, ColorFormat format,
input             593 tools/imagediff/image_diff_png.cc                                input, compression_level, png_output_color_type,
input             601 tools/imagediff/image_diff_png.cc bool Encode(const unsigned char* input, ColorFormat format,
input             606 tools/imagediff/image_diff_png.cc   return EncodeWithCompressionLevel(input, format, width, height,
input             614 tools/imagediff/image_diff_png.cc bool DecodePNG(const unsigned char* input, size_t input_size,
input             617 tools/imagediff/image_diff_png.cc   return Decode(input, input_size, FORMAT_RGBA, output, width, height);
input             621 tools/imagediff/image_diff_png.cc bool EncodeRGBAPNG(const unsigned char* input,
input             626 tools/imagediff/image_diff_png.cc   return Encode(input, FORMAT_RGBA,
input             632 tools/imagediff/image_diff_png.cc bool EncodeBGRAPNG(const unsigned char* input,
input             638 tools/imagediff/image_diff_png.cc   return Encode(input, FORMAT_BGRA,
input              14 tools/imagediff/image_diff_png.h bool DecodePNG(const unsigned char* input, size_t input_size,
input              19 tools/imagediff/image_diff_png.h bool EncodeRGBAPNG(const unsigned char* input,
input              26 tools/imagediff/image_diff_png.h bool EncodeBGRAPNG(const unsigned char* input,
input              14 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     const char* input;
input              26 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     std::string result = ConvertAcceleratorsFromWindowsStyle(cases[i].input);
input              33 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     const char* input;
input              45 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     std::string result = RemoveWindowsStyleAccelerators(cases[i].input);
input              52 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     const char* input;
input              70 ui/base/accelerators/menu_label_accelerator_util_linux_unittest.cc     std::string result = EscapeWindowsStyleAccelerators(cases[i].input);
input             287 ui/base/clipboard/clipboard_android.cc   std::string input = g_map.Get().Get(kHTMLFormat);
input             288 ui/base/clipboard/clipboard_android.cc   *markup = base::UTF8ToUTF16(input);
input             302 ui/base/clipboard/clipboard_android.cc   std::string input = g_map.Get().Get(kBitmapFormat);
input             305 ui/base/clipboard/clipboard_android.cc   if (!input.empty()) {
input             306 ui/base/clipboard/clipboard_android.cc     DCHECK_LE(sizeof(gfx::Size), input.size());
input             307 ui/base/clipboard/clipboard_android.cc     const gfx::Size* size = reinterpret_cast<const gfx::Size*>(input.data());
input             312 ui/base/clipboard/clipboard_android.cc     DCHECK_EQ(sizeof(gfx::Size) + bmp.getSize(), input.size());
input             314 ui/base/clipboard/clipboard_android.cc     memcpy(bmp.getPixels(), input.data() + sizeof(gfx::Size), bmp.getSize());
input              22 ui/base/dragdrop/os_exchange_data_unittest.cc   base::string16 input = base::ASCIIToUTF16("I can has cheezburger?");
input              23 ui/base/dragdrop/os_exchange_data_unittest.cc   data.SetString(input);
input              28 ui/base/dragdrop/os_exchange_data_unittest.cc   EXPECT_EQ(input, output);
input              21 ui/base/dragdrop/os_exchange_data_win_unittest.cc   std::wstring input = L"O hai googlz.";
input              22 ui/base/dragdrop/os_exchange_data_win_unittest.cc   data.SetString(input);
input              34 ui/base/dragdrop/os_exchange_data_win_unittest.cc   EXPECT_EQ(input, output);
input              41 ui/base/dragdrop/os_exchange_data_win_unittest.cc   std::wstring input = L"http://www.google.com/";
input              52 ui/base/dragdrop/os_exchange_data_win_unittest.cc   HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1));
input              53 ui/base/dragdrop/os_exchange_data_win_unittest.cc   size_t stringsz = input.size();
input              57 ui/base/dragdrop/os_exchange_data_win_unittest.cc   wcscpy_s(buffer_handle, input.size() + 1, input.c_str());
input              70 ui/base/dragdrop/os_exchange_data_win_unittest.cc   GURL reference_url(input);
input              77 ui/base/dragdrop/os_exchange_data_win_unittest.cc   std::wstring input = L"http://www.google.com/";
input              90 ui/base/dragdrop/os_exchange_data_win_unittest.cc     HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1));
input              91 ui/base/dragdrop/os_exchange_data_win_unittest.cc     size_t stringsz = input.size();
input              95 ui/base/dragdrop/os_exchange_data_win_unittest.cc     wcscpy_s(buffer_handle, input.size() + 1, input.c_str());
input             141 ui/base/test/ui_controls_internal_win.cc bool FillKeyboardInput(ui::KeyboardCode key, INPUT* input, bool key_up) {
input             142 ui/base/test/ui_controls_internal_win.cc   memset(input, 0, sizeof(INPUT));
input             143 ui/base/test/ui_controls_internal_win.cc   input->type = INPUT_KEYBOARD;
input             144 ui/base/test/ui_controls_internal_win.cc   input->ki.wVk = ui::WindowsKeyCodeForKeyboardCode(key);
input             145 ui/base/test/ui_controls_internal_win.cc   input->ki.dwFlags = key_up ? KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP :
input             153 ui/base/test/ui_controls_internal_win.cc   INPUT input = { 0 };
input             155 ui/base/test/ui_controls_internal_win.cc   if (!FillKeyboardInput(key, &input, up))
input             158 ui/base/test/ui_controls_internal_win.cc   if (!::SendInput(1, &input, sizeof(INPUT)))
input             202 ui/base/test/ui_controls_internal_win.cc   INPUT input[8] = { 0 };  // 8, assuming all the modifiers are activated.
input             206 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_CONTROL, &input[i], false))
input             212 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_SHIFT, &input[i], false))
input             218 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_MENU, &input[i], false))
input             223 ui/base/test/ui_controls_internal_win.cc   if (!FillKeyboardInput(key, &input[i], false))
input             227 ui/base/test/ui_controls_internal_win.cc   if (!FillKeyboardInput(key, &input[i], true))
input             232 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_MENU, &input[i], true))
input             238 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_SHIFT, &input[i], true))
input             244 ui/base/test/ui_controls_internal_win.cc     if (!FillKeyboardInput(ui::VKEY_CONTROL, &input[i], true))
input             249 ui/base/test/ui_controls_internal_win.cc   if (::SendInput(i, input, sizeof(INPUT)) != i)
input             270 ui/base/test/ui_controls_internal_win.cc   INPUT input = { 0 };
input             277 ui/base/test/ui_controls_internal_win.cc   input.type = INPUT_MOUSE;
input             278 ui/base/test/ui_controls_internal_win.cc   input.mi.dwFlags = MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE;
input             279 ui/base/test/ui_controls_internal_win.cc   input.mi.dx = pixel_x;
input             280 ui/base/test/ui_controls_internal_win.cc   input.mi.dy = pixel_y;
input             285 ui/base/test/ui_controls_internal_win.cc   if (!::SendInput(1, &input, sizeof(INPUT)))
input             327 ui/base/test/ui_controls_internal_win.cc   INPUT input = { 0 };
input             328 ui/base/test/ui_controls_internal_win.cc   input.type = INPUT_MOUSE;
input             329 ui/base/test/ui_controls_internal_win.cc   input.mi.dwFlags = down_flags;
input             330 ui/base/test/ui_controls_internal_win.cc   if ((state & DOWN) && !::SendInput(1, &input, sizeof(INPUT)))
input             333 ui/base/test/ui_controls_internal_win.cc   input.mi.dwFlags = up_flags;
input             334 ui/base/test/ui_controls_internal_win.cc   if ((state & UP) && !::SendInput(1, &input, sizeof(INPUT)))
input             234 ui/events/ozone/evdev/key_event_converter_evdev.cc     const input_event& input = inputs[i];
input             235 ui/events/ozone/evdev/key_event_converter_evdev.cc     if (input.type == EV_KEY) {
input             236 ui/events/ozone/evdev/key_event_converter_evdev.cc       ConvertKeyEvent(input.code, input.value);
input             237 ui/events/ozone/evdev/key_event_converter_evdev.cc     } else if (input.type == EV_SYN) {
input              99 ui/events/ozone/evdev/touch_event_converter_evdev.cc     const input_event& input = inputs[i];
input             100 ui/events/ozone/evdev/touch_event_converter_evdev.cc     if (input.type == EV_ABS) {
input             101 ui/events/ozone/evdev/touch_event_converter_evdev.cc       switch (input.code) {
input             104 ui/events/ozone/evdev/touch_event_converter_evdev.cc           events_[current_slot_].major_ = input.value;
input             109 ui/events/ozone/evdev/touch_event_converter_evdev.cc           events_[current_slot_].x_ = roundf(input.value * x_scale_);
input             114 ui/events/ozone/evdev/touch_event_converter_evdev.cc           events_[current_slot_].y_ = roundf(input.value * y_scale_);
input             118 ui/events/ozone/evdev/touch_event_converter_evdev.cc           if (input.value < 0) {
input             121 ui/events/ozone/evdev/touch_event_converter_evdev.cc             events_[current_slot_].finger_ = input.value;
input             128 ui/events/ozone/evdev/touch_event_converter_evdev.cc           events_[current_slot_].pressure_ = input.value - pressure_min_;
input             132 ui/events/ozone/evdev/touch_event_converter_evdev.cc           current_slot_ = input.value;
input             136 ui/events/ozone/evdev/touch_event_converter_evdev.cc           NOTIMPLEMENTED() << "invalid code for EV_ABS: " << input.code;
input             138 ui/events/ozone/evdev/touch_event_converter_evdev.cc     } else if (input.type == EV_SYN) {
input             139 ui/events/ozone/evdev/touch_event_converter_evdev.cc       switch (input.code) {
input             151 ui/events/ozone/evdev/touch_event_converter_evdev.cc                       input.time.tv_sec * 1000000 + input.time.tv_usec),
input             167 ui/events/ozone/evdev/touch_event_converter_evdev.cc           NOTIMPLEMENTED() << "invalid code for EV_SYN: " << input.code;
input             170 ui/events/ozone/evdev/touch_event_converter_evdev.cc     } else if (input.type == EV_KEY) {
input             171 ui/events/ozone/evdev/touch_event_converter_evdev.cc       switch (input.code) {
input             175 ui/events/ozone/evdev/touch_event_converter_evdev.cc           NOTIMPLEMENTED() << "invalid code for EV_KEY: " << input.code;
input             178 ui/events/ozone/evdev/touch_event_converter_evdev.cc       NOTIMPLEMENTED() << "invalid type: " << input.type;
input             204 ui/gfx/codec/jpeg_codec.cc bool JPEGCodec::Encode(const unsigned char* input, ColorFormat format,
input             289 ui/gfx/codec/jpeg_codec.cc     const unsigned char* row = &input[cinfo.next_scanline * row_byte_width];
input             296 ui/gfx/codec/jpeg_codec.cc       const unsigned char* row = &input[cinfo.next_scanline * row_byte_width];
input             317 ui/gfx/codec/jpeg_codec.cc       converter(&input[cinfo.next_scanline * row_byte_width], w, row_buffer);
input             460 ui/gfx/codec/jpeg_codec.cc bool JPEGCodec::Decode(const unsigned char* input, size_t input_size,
input             495 ui/gfx/codec/jpeg_codec.cc   JpegDecoderState state(input, input_size);
input             615 ui/gfx/codec/jpeg_codec.cc SkBitmap* JPEGCodec::Decode(const unsigned char* input, size_t input_size) {
input             618 ui/gfx/codec/jpeg_codec.cc   if (!Decode(input, input_size, FORMAT_SkBitmap, &data_vector, &w, &h))
input              59 ui/gfx/codec/jpeg_codec.h   static bool Encode(const unsigned char* input, ColorFormat format,
input              67 ui/gfx/codec/jpeg_codec.h   static bool Decode(const unsigned char* input, size_t input_size,
input              74 ui/gfx/codec/jpeg_codec.h   static SkBitmap* Decode(const unsigned char* input, size_t input_size);
input              22 ui/gfx/codec/png_codec.cc void ConvertBetweenBGRAandRGBA(const unsigned char* input, int pixel_width,
input              25 ui/gfx/codec/png_codec.cc     const unsigned char* pixel_in = &input[x * 4];
input             353 ui/gfx/codec/png_codec.cc bool BuildPNGStruct(const unsigned char* input, size_t input_size,
input             359 ui/gfx/codec/png_codec.cc   if (png_sig_cmp(const_cast<unsigned char*>(input), 0, 8) != 0)
input             399 ui/gfx/codec/png_codec.cc bool PNGCodec::Decode(const unsigned char* input, size_t input_size,
input             404 ui/gfx/codec/png_codec.cc   if (!BuildPNGStruct(input, input_size, &png_ptr, &info_ptr))
input             422 ui/gfx/codec/png_codec.cc                    const_cast<unsigned char*>(input),
input             438 ui/gfx/codec/png_codec.cc bool PNGCodec::Decode(const unsigned char* input, size_t input_size,
input             443 ui/gfx/codec/png_codec.cc   if (!BuildPNGStruct(input, input_size, &png_ptr, &info_ptr))
input             460 ui/gfx/codec/png_codec.cc                    const_cast<unsigned char*>(input),
input             577 ui/gfx/codec/png_codec.cc                    const unsigned char* input, int compression_level,
input             617 ui/gfx/codec/png_codec.cc                     const_cast<unsigned char*>(&input[y * row_byte_width]));
input             623 ui/gfx/codec/png_codec.cc       converter(&input[y * row_byte_width], width, row_buffer, NULL);
input             633 ui/gfx/codec/png_codec.cc bool EncodeWithCompressionLevel(const unsigned char* input,
input             730 ui/gfx/codec/png_codec.cc                                input, compression_level, png_output_color_type,
input             736 ui/gfx/codec/png_codec.cc bool InternalEncodeSkBitmap(const SkBitmap& input,
input             740 ui/gfx/codec/png_codec.cc   if (input.empty() || input.isNull())
input             742 ui/gfx/codec/png_codec.cc   int bpp = input.bytesPerPixel();
input             745 ui/gfx/codec/png_codec.cc   SkAutoLockPixels lock_input(input);
input             747 ui/gfx/codec/png_codec.cc       reinterpret_cast<unsigned char*>(input.getAddr8(0, 0)) :
input             748 ui/gfx/codec/png_codec.cc       reinterpret_cast<unsigned char*>(input.getAddr32(0, 0));    // bpp = 4
input             752 ui/gfx/codec/png_codec.cc       Size(input.width(), input.height()),
input             753 ui/gfx/codec/png_codec.cc       static_cast<int>(input.rowBytes()),
input             764 ui/gfx/codec/png_codec.cc bool PNGCodec::Encode(const unsigned char* input,
input             771 ui/gfx/codec/png_codec.cc   return EncodeWithCompressionLevel(input,
input             782 ui/gfx/codec/png_codec.cc bool PNGCodec::EncodeBGRASkBitmap(const SkBitmap& input,
input             785 ui/gfx/codec/png_codec.cc   return InternalEncodeSkBitmap(input,
input             792 ui/gfx/codec/png_codec.cc bool PNGCodec::EncodeA8SkBitmap(const SkBitmap& input,
input             794 ui/gfx/codec/png_codec.cc   return InternalEncodeSkBitmap(input,
input             801 ui/gfx/codec/png_codec.cc bool PNGCodec::FastEncodeBGRASkBitmap(const SkBitmap& input,
input             804 ui/gfx/codec/png_codec.cc   return InternalEncodeSkBitmap(input,
input              73 ui/gfx/codec/png_codec.h   static bool Encode(const unsigned char* input,
input              86 ui/gfx/codec/png_codec.h   static bool EncodeBGRASkBitmap(const SkBitmap& input,
input              93 ui/gfx/codec/png_codec.h   static bool FastEncodeBGRASkBitmap(const SkBitmap& input,
input             102 ui/gfx/codec/png_codec.h   static bool EncodeA8SkBitmap(const SkBitmap& input,
input             113 ui/gfx/codec/png_codec.h   static bool Decode(const unsigned char* input, size_t input_size,
input             125 ui/gfx/codec/png_codec.h   static bool Decode(const unsigned char* input, size_t input_size,
input             150 ui/gfx/codec/png_codec_unittest.cc bool EncodeImage(const std::vector<unsigned char>& input,
input             205 ui/gfx/codec/png_codec_unittest.cc     row_pointers[y] = const_cast<unsigned char*>(&input[y * input_rowbytes]);
input              73 ui/gfx/color_utils_unittest.cc   SkColor input = SkColorSetARGB(255, 206, 154, 89);
input              75 ui/gfx/color_utils_unittest.cc   SkColor result = color_utils::HSLShift(input, hsl);
input              78 ui/gfx/color_utils_unittest.cc   EXPECT_EQ(SkColorGetA(input), SkColorGetA(result));
input              79 ui/gfx/color_utils_unittest.cc   EXPECT_EQ(SkColorGetR(input), SkColorGetR(result));
input              80 ui/gfx/color_utils_unittest.cc   EXPECT_EQ(SkColorGetG(input), SkColorGetG(result));
input              81 ui/gfx/color_utils_unittest.cc   EXPECT_EQ(SkColorGetB(input), SkColorGetB(result));
input             598 ui/gfx/image/image.cc Image Image::CreateFrom1xPNGBytes(const unsigned char* input,
input             604 ui/gfx/image/image.cc   raw_data->data().assign(input, input + input_size);
input             610 ui/gfx/image/image.cc     const scoped_refptr<base::RefCountedMemory>& input) {
input             611 ui/gfx/image/image.cc   if (!input.get() || input->size() == 0u)
input             615 ui/gfx/image/image.cc   image_reps.push_back(ImagePNGRep(input, 1.0f));
input             113 ui/gfx/image/image.h   static Image CreateFrom1xPNGBytes(const unsigned char* input,
input             118 ui/gfx/image/image.h       const scoped_refptr<base::RefCountedMemory>& input);
input              19 ui/gfx/image/image_util.cc Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
input              21 ui/gfx/image/image_util.cc   scoped_ptr<SkBitmap> bitmap(gfx::JPEGCodec::Decode(input, input_size));
input              22 ui/gfx/image/image_util.h GFX_EXPORT Image ImageFrom1xJPEGEncodedData(const unsigned char* input,
input             465 ui/gfx/render_text_unittest.cc     base::string16 input = WideToUTF16(cases[i].text);
input             469 ui/gfx/render_text_unittest.cc       input.append(WideToUTF16(L" MMMMMMMMMMM"));
input             471 ui/gfx/render_text_unittest.cc     render_text->SetText(input);
input             473 ui/gfx/render_text_unittest.cc     EXPECT_EQ(input, render_text->text())
input             381 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap input;
input             382 ui/gfx/skbitmap_operations_unittest.cc   input.setConfig(SkBitmap::kARGB_8888_Config, 3, 3);
input             383 ui/gfx/skbitmap_operations_unittest.cc   input.allocPixels();
input             387 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(0, 0) = 0x80008000;
input             388 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(1, 0) = 0xFF000080;
input             389 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(2, 0) = 0xFFFFFFFF;
input             390 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(0, 1) = 0x80800000;
input             391 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(1, 1) = 0x80808080;
input             392 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(2, 1) = 0xFF000000;
input             393 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(0, 2) = 0xFF000000;
input             394 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(1, 2) = 0xFFFFFFFF;
input             395 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(2, 2) = 0xFF808080;
input             397 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap result = SkBitmapOperations::DownsampleByTwo(input);
input             479 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap input;
input             480 ui/gfx/skbitmap_operations_unittest.cc   input.setConfig(SkBitmap::kARGB_8888_Config, 2, 2);
input             481 ui/gfx/skbitmap_operations_unittest.cc   input.allocPixels();
input             484 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(0, 0) = SkPackARGB32NoCheck(0x80, 0x00, 0x00, 0x00);
input             485 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(1, 0) = SkPackARGB32NoCheck(0x80, 0x80, 0x80, 0x80);
input             486 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(0, 1) = SkPackARGB32NoCheck(0xFF, 0x00, 0xCC, 0x88);
input             487 ui/gfx/skbitmap_operations_unittest.cc   *input.getAddr32(1, 1) = SkPackARGB32NoCheck(0x00, 0x00, 0xCC, 0x88);
input             489 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap result = SkBitmapOperations::UnPreMultiply(input);
input             501 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap input;
input             502 ui/gfx/skbitmap_operations_unittest.cc   input.setConfig(SkBitmap::kARGB_8888_Config, 2, 3);
input             503 ui/gfx/skbitmap_operations_unittest.cc   input.allocPixels();
input             505 ui/gfx/skbitmap_operations_unittest.cc   for (int x = 0; x < input.width(); ++x) {
input             506 ui/gfx/skbitmap_operations_unittest.cc     for (int y = 0; y < input.height(); ++y) {
input             507 ui/gfx/skbitmap_operations_unittest.cc       *input.getAddr32(x, y) = x * input.width() + y;
input             511 ui/gfx/skbitmap_operations_unittest.cc   SkBitmap result = SkBitmapOperations::CreateTransposedBitmap(input);
input             516 ui/gfx/skbitmap_operations_unittest.cc   for (int x = 0; x < input.width(); ++x) {
input             517 ui/gfx/skbitmap_operations_unittest.cc     for (int y = 0; y < input.height(); ++y) {
input             518 ui/gfx/skbitmap_operations_unittest.cc       EXPECT_EQ(*input.getAddr32(x, y), *result.getAddr32(y, x));
input             257 ui/gfx/text_elider.cc bool ElideString(const base::string16& input, int max_len,
input             260 ui/gfx/text_elider.cc   if (static_cast<int>(input.length()) <= max_len) {
input             261 ui/gfx/text_elider.cc     output->assign(input);
input             270 ui/gfx/text_elider.cc       output->assign(input.substr(0, 1));
input             273 ui/gfx/text_elider.cc       output->assign(input.substr(0, 2));
input             276 ui/gfx/text_elider.cc       output->assign(input.substr(0, 1) + ASCIIToUTF16(".") +
input             277 ui/gfx/text_elider.cc                      input.substr(input.length() - 1));
input             280 ui/gfx/text_elider.cc       output->assign(input.substr(0, 1) + ASCIIToUTF16("..") +
input             281 ui/gfx/text_elider.cc                      input.substr(input.length() - 1));
input             286 ui/gfx/text_elider.cc       output->assign(input.substr(0, lstr_len) + ASCIIToUTF16("...") +
input             287 ui/gfx/text_elider.cc                      input.substr(input.length() - rstr_len));
input             320 ui/gfx/text_elider.cc   void AddString(const base::string16& input);
input             374 ui/gfx/text_elider.cc void RectangleString::AddString(const base::string16& input) {
input             375 ui/gfx/text_elider.cc   base::i18n::BreakIterator lines(input,
input             487 ui/gfx/text_elider.cc   void AddString(const base::string16& input);
input             560 ui/gfx/text_elider.cc void RectangleText::AddString(const base::string16& input) {
input             561 ui/gfx/text_elider.cc   base::i18n::BreakIterator lines(input,
input             726 ui/gfx/text_elider.cc bool ElideRectangleString(const base::string16& input, size_t max_rows,
input             731 ui/gfx/text_elider.cc   rect.AddString(input);
input             735 ui/gfx/text_elider.cc int ElideRectangleText(const base::string16& input,
input             747 ui/gfx/text_elider.cc   rect.AddString(input);
input             124 ui/gfx/text_elider.h GFX_EXPORT bool ElideString(const base::string16& input, int max_len,
input             136 ui/gfx/text_elider.h GFX_EXPORT bool ElideRectangleString(const base::string16& input,
input              30 ui/gfx/text_elider_unittest.cc   const std::string input;
input              35 ui/gfx/text_elider_unittest.cc   const base::FilePath::StringType input;
input              40 ui/gfx/text_elider_unittest.cc   const base::string16 input;
input             110 ui/gfx/text_elider_unittest.cc                   UTF8ToUTF16(testcases[i].input),
input             196 ui/gfx/text_elider_unittest.cc     base::FilePath filepath(testcases[i].input);
input             214 ui/gfx/text_elider_unittest.cc     const char* input;
input             227 ui/gfx/text_elider_unittest.cc     base::string16 result = ElideText(UTF8ToUTF16(cases[i].input), font_list,
input             246 ui/gfx/text_elider_unittest.cc     const char* input;
input             259 ui/gfx/text_elider_unittest.cc     base::string16 result = ElideText(UTF8ToUTF16(cases[i].input), font_list,
input             280 ui/gfx/text_elider_unittest.cc     const char* input;
input             294 ui/gfx/text_elider_unittest.cc     base::string16 result = ElideText(UTF8ToUTF16(cases[i].input), font_list,
input             394 ui/gfx/text_elider_unittest.cc                   testcases_end[i].input,
input             399 ui/gfx/text_elider_unittest.cc               ElideText(testcases_end[i].input, font_list, ellipsis_width,
input             421 ui/gfx/text_elider_unittest.cc                   testcases_middle[i].input,
input             426 ui/gfx/text_elider_unittest.cc               ElideText(testcases_middle[i].input, font_list, ellipsis_width,
input             443 ui/gfx/text_elider_unittest.cc                   testcases_beginning[i].input, font_list,
input             447 ui/gfx/text_elider_unittest.cc               ElideText(testcases_beginning[i].input, font_list, ellipsis_width,
input             454 ui/gfx/text_elider_unittest.cc     const char* input;
input             474 ui/gfx/text_elider_unittest.cc               ElideString(UTF8ToUTF16(cases[i].input),
input             492 ui/gfx/text_elider_unittest.cc     const char* input;
input             528 ui/gfx/text_elider_unittest.cc               ElideRectangleText(UTF8ToUTF16(cases[i].input),
input             557 ui/gfx/text_elider_unittest.cc     const char* input;
input             575 ui/gfx/text_elider_unittest.cc               ElideRectangleText(UTF8ToUTF16(cases[i].input),
input             605 ui/gfx/text_elider_unittest.cc     const char* input;
input             643 ui/gfx/text_elider_unittest.cc               ElideRectangleText(UTF8ToUTF16(cases[i].input),
input             691 ui/gfx/text_elider_unittest.cc     const char* input;
input             765 ui/gfx/text_elider_unittest.cc               ElideRectangleString(UTF8ToUTF16(cases[i].input),
input             774 ui/gfx/text_elider_unittest.cc     const char* input;
input             847 ui/gfx/text_elider_unittest.cc               ElideRectangleString(UTF8ToUTF16(cases[i].input),
input              18 ui/gfx/text_utils_unittest.cc     const char* input;
input              53 ui/gfx/text_utils_unittest.cc         base::UTF8ToUTF16(cases[i].input),
input              46 ui/views/color_chooser/color_chooser_view.cc   std::string input =
input              49 ui/views/color_chooser/color_chooser_view.cc   if (!base::HexStringToBytes(input, &hex))
input            2102 ui/views/win/hwnd_message_handler.cc   scoped_ptr<TOUCHINPUT[]> input(new TOUCHINPUT[num_points]);
input            2104 ui/views/win/hwnd_message_handler.cc                                    num_points, input.get(),
input            2110 ui/views/win/hwnd_message_handler.cc       point.x = TOUCH_COORD_TO_PIXEL(input[i].x) /
input            2112 ui/views/win/hwnd_message_handler.cc       point.y = TOUCH_COORD_TO_PIXEL(input[i].y) /
input            2132 ui/views/win/hwnd_message_handler.cc       if (input[i].dwFlags & TOUCHEVENTF_DOWN) {
input            2133 ui/views/win/hwnd_message_handler.cc         touch_ids_.insert(input[i].dwID);
input            2141 ui/views/win/hwnd_message_handler.cc       } else if (input[i].dwFlags & TOUCHEVENTF_UP) {
input            2142 ui/views/win/hwnd_message_handler.cc         touch_ids_.erase(input[i].dwID);
input            2144 ui/views/win/hwnd_message_handler.cc       } else if (input[i].dwFlags & TOUCHEVENTF_MOVE) {
input            2158 ui/views/win/hwnd_message_handler.cc                              id_generator_.GetGeneratedID(input[i].dwID),
input            2171 ui/views/win/hwnd_message_handler.cc           id_generator_.ReleaseNumber(input[i].dwID);
input             253 url/gurl_unittest.cc     GURL input(resolve_cases[i].base);
input             254 url/gurl_unittest.cc     GURL output = input.Resolve(resolve_cases[i].relative);
input             262 url/gurl_unittest.cc         input.Resolve(ConvertUTF8ToUTF16(resolve_cases[i].relative));
input             271 url/gurl_unittest.cc     const char* input;
input             284 url/gurl_unittest.cc     GURL url(cases[i].input);
input             292 url/gurl_unittest.cc     const char* input;
input             303 url/gurl_unittest.cc     GURL url(cases[i].input);
input             311 url/gurl_unittest.cc     const char* input;
input             322 url/gurl_unittest.cc     GURL url(cases[i].input);
input             397 url/gurl_unittest.cc     const char* input;
input             411 url/gurl_unittest.cc     GURL url(cases[i].input);
input             487 url/gurl_unittest.cc     const char* input;
input             505 url/gurl_unittest.cc     GURL url(cases[i].input);
input             206 url/url_canon.h   virtual void ConvertFromUTF16(const base::char16* input,
input             228 url/url_canon.h URL_EXPORT const char* RemoveURLWhitespace(const char* input, int input_len,
input             232 url/url_canon.h     const base::char16* input,
input              26 url/url_canon_etc.cc const CHAR* DoRemoveURLWhitespace(const CHAR* input, int input_len,
input              34 url/url_canon_etc.cc     if (!IsRemovableURLWhitespace(input[i]))
input              44 url/url_canon_etc.cc     return input;
input              49 url/url_canon_etc.cc     if (!IsRemovableURLWhitespace(input[i]))
input              50 url/url_canon_etc.cc       buffer->push_back(input[i]);
input             278 url/url_canon_etc.cc const char* RemoveURLWhitespace(const char* input, int input_len,
input             281 url/url_canon_etc.cc   return DoRemoveURLWhitespace(input, input_len, buffer, output_len);
input             284 url/url_canon_etc.cc const base::char16* RemoveURLWhitespace(const base::char16* input,
input             288 url/url_canon_etc.cc   return DoRemoveURLWhitespace(input, input_len, buffer, output_len);
input             118 url/url_canon_icu.cc void ICUCharsetConverter::ConvertFromUTF16(const base::char16* input,
input             133 url/url_canon_icu.cc                                             input, input_len, &err);
input              29 url/url_canon_icu.h   virtual void ConvertFromUTF16(const base::char16* input,
input             260 url/url_canon_internal.cc bool ConvertUTF16ToUTF8(const base::char16* input, int input_len,
input             265 url/url_canon_internal.cc     success &= ReadUTFChar(input, &i, input_len, &code_point);
input             271 url/url_canon_internal.cc bool ConvertUTF8ToUTF16(const char* input, int input_len,
input             276 url/url_canon_internal.cc     success &= ReadUTFChar(input, &i, input_len, &code_point);
input             349 url/url_canon_internal.h URL_EXPORT bool ConvertUTF16ToUTF8(const base::char16* input, int input_len,
input             351 url/url_canon_internal.h URL_EXPORT bool ConvertUTF8ToUTF16(const char* input, int input_len,
input             356 url/url_canon_internal.h void ConvertUTF16ToQueryEncoding(const base::char16* input,
input             132 url/url_canon_ip.cc     char input = static_cast<char>(spec[i]);
input             135 url/url_canon_ip.cc     if (!IsCharOfType(input, base))
input             141 url/url_canon_ip.cc       buf[dest_i++] = input;
input             156 url/url_canon_query.cc void ConvertUTF16ToQueryEncoding(const base::char16* input,
input             160 url/url_canon_query.cc   DoConvertToQueryEncoding<base::char16, base::char16>(input, query,
input              31 url/url_canon_unittest.cc   const char* input;
input             136 url/url_canon_unittest.cc     unsigned input;
input             150 url/url_canon_unittest.cc     url_canon::AppendUTF8Value(utf_cases[i].input, &output);
input             249 url/url_canon_unittest.cc     const wchar_t* input;
input             272 url/url_canon_unittest.cc     base::string16 input_str(WStringToUTF16(icu_cases[i].input));
input             288 url/url_canon_unittest.cc     base::string16 input;
input             290 url/url_canon_unittest.cc       input.push_back('a');
input             293 url/url_canon_unittest.cc     converter.ConvertFromUTF16(input.c_str(), static_cast<int>(input.length()),
input             295 url/url_canon_unittest.cc     EXPECT_EQ(input.length(), static_cast<size_t>(output.length()));
input             322 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(scheme_cases[i].input));
input             328 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizeScheme(scheme_cases[i].input,
input             341 url/url_canon_unittest.cc     base::string16 wide_input(ConvertUTF8ToUTF16(scheme_cases[i].input));
input             960 url/url_canon_unittest.cc     const char* input;
input             981 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(user_info_cases[i].input));
input             983 url/url_canon_unittest.cc     url_parse::ParseStandardURL(user_info_cases[i].input, url_len, &parsed);
input             988 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizeUserInfo(user_info_cases[i].input,
input             990 url/url_canon_unittest.cc                                                    user_info_cases[i].input,
input            1006 url/url_canon_unittest.cc     base::string16 wide_input(ConvertUTF8ToUTF16(user_info_cases[i].input));
input            1030 url/url_canon_unittest.cc     const char* input;
input            1047 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(port_cases[i].input));
input            1052 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizePort(port_cases[i].input, in_comp,
input            1065 url/url_canon_unittest.cc     base::string16 wide_input(ConvertUTF8ToUTF16(port_cases[i].input));
input            1365 url/url_canon_unittest.cc     const char* input;
input            1408 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(cases[i].input));
input            1410 url/url_canon_unittest.cc     url_parse::ParseStandardURL(cases[i].input, url_len, &parsed);
input            1416 url/url_canon_unittest.cc         cases[i].input, url_len, parsed, NULL, &output, &out_parsed);
input            1690 url/url_canon_unittest.cc     const char* input;
input            1751 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(cases[i].input));
input            1753 url/url_canon_unittest.cc     url_parse::ParseFileURL(cases[i].input, url_len, &parsed);
input            1758 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizeFileURL(cases[i].input, url_len,
input            1781 url/url_canon_unittest.cc     const char* input;
input            1795 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(cases[i].input));
input            1797 url/url_canon_unittest.cc     url_parse::ParseFileSystemURL(cases[i].input, url_len, &parsed);
input            1802 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizeFileSystemURL(cases[i].input, url_len,
input            1822 url/url_canon_unittest.cc     const char* input;
input            1831 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(path_cases[i].input));
input            1833 url/url_canon_unittest.cc     url_parse::ParsePathURL(path_cases[i].input, url_len, true, &parsed);
input            1838 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizePathURL(path_cases[i].input, url_len,
input            1850 url/url_canon_unittest.cc     if (path_cases[i].input[url_len - 1] == ':') {
input            1859 url/url_canon_unittest.cc     const char* input;
input            1886 url/url_canon_unittest.cc     int url_len = static_cast<int>(strlen(cases[i].input));
input            1892 url/url_canon_unittest.cc     url_parse::ParseMailtoURL(cases[i].input, url_len, &parsed);
input            1896 url/url_canon_unittest.cc     bool success = url_canon::CanonicalizeMailtoURL(cases[i].input, url_len,
input              53 url/url_parse_unittest.cc   const char* input;
input              67 url/url_parse_unittest.cc   const char* input;
input              75 url/url_parse_unittest.cc   const char* input;
input              84 url/url_parse_unittest.cc   const char* input;
input              97 url/url_parse_unittest.cc bool ComponentMatches(const char* input,
input             116 url/url_parse_unittest.cc   return strncmp(reference, &input[component.begin], component.len) == 0;
input             323 url/url_parse_unittest.cc     const char* url = cases[i].input;
input             358 url/url_parse_unittest.cc     const char* url = path_cases[i].input;
input             457 url/url_parse_unittest.cc     const char* url = file_cases[i].input;
input             497 url/url_parse_unittest.cc     const char* input;
input             513 url/url_parse_unittest.cc     const char* url = file_cases[i].input;
input             621 url/url_parse_unittest.cc     const char* url = mailto_cases[i].input;
input             654 url/url_parse_unittest.cc     const char* url = parsecase->input;
input             526 url/url_util.cc void DecodeURLEscapeSequences(const char* input, int length,
input             530 url/url_util.cc     if (input[i] == '%') {
input             532 url/url_util.cc       if (url_canon::DecodeEscaped(input, &i, length, &ch)) {
input             540 url/url_util.cc       unescaped_chars.push_back(input[i]);
input             575 url/url_util.cc void EncodeURIComponent(const char* input, int length,
input             578 url/url_util.cc     unsigned char c = static_cast<unsigned char>(input[i]);
input             194 url/url_util.h URL_EXPORT void DecodeURLEscapeSequences(const char* input, int length,
input             199 url/url_util.h URL_EXPORT void EncodeURIComponent(const char* input, int length,
input             145 url/url_util_unittest.cc     const char* input;
input             170 url/url_util_unittest.cc     const char* input = decode_cases[i].input;
input             172 url/url_util_unittest.cc     url_util::DecodeURLEscapeSequences(input, strlen(input), &output);
input             199 url/url_util_unittest.cc     const char* input;
input             222 url/url_util_unittest.cc     const char* input = encode_cases[i].input;
input             224 url/url_util_unittest.cc     url_util::EncodeURIComponent(input, strlen(input), &buffer);
input             112 webkit/child/multipart_response_delegate_unittest.cc     const char* input;
input             131 webkit/child/multipart_response_delegate_unittest.cc               delegate_tester.PushOverLine(line_tests[i].input,
input              66 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath input = base::FilePath(test_cases[i].path);
input              67 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath base_name = VirtualPath::BaseName(input);
input             106 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath input = base::FilePath(test_cases[i].path);
input             107 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath dir_name = VirtualPath::DirName(input);
input             126 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath input = base::FilePath(test_cases[i].path);
input             128 webkit/common/fileapi/file_system_util_unittest.cc         VirtualPath::GetNormalizedFilePath(input);
input             191 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath input = base::FilePath(test_cases[i].path);
input             193 webkit/common/fileapi/file_system_util_unittest.cc     VirtualPath::GetComponents(input, &components);
input             199 webkit/common/fileapi/file_system_util_unittest.cc     base::FilePath input = base::FilePath(test_cases[i].path);
input             201 webkit/common/fileapi/file_system_util_unittest.cc     VirtualPath::GetComponentsUTF8Unsafe(input, &components);