Lines Matching refs:input
849 // Should not be able to fail since the input is a String.
2337 char* input = nullptr;
2338 input = fgets(buffer, kBufferSize, stdin);
2339 if (input == nullptr) return Local<String>();
3734 Local<String> input = Shell::ReadFromStdin(isolate);
3735 if (input.IsEmpty()) break;
3736 ExecuteString(isolate, input, name, kPrintResult, kReportExceptions,
3904 bool ends_with(const char* input, const char* suffix) {
3905 size_t input_length = strlen(input);
3908 return strcmp(input + input_length - suffix_length, suffix) == 0;