Lines Matching defs:input
122 // Still pretty-fast path for the input with non-ASCII Latin-1 characters.
351 // TODO(jshin): Apply this to a longer input by breaking FastAsciiConvert()
692 // the input before any more check.
703 // uloc_forLanguageTag checks the structrual validity. If the input BCP47
704 // language tag is parsed all the way to the end, it indicates that the input
2520 icu::UnicodeString input = ToICUUnicodeString(isolate, string);
2527 normalizer->spanQuickCheckYes(input, status);
2528 // Quick return if the input is already normalized.
2531 input.tempSubString(normalized_prefix_length);
2533 result.setTo(false, input.getBuffer(), normalized_prefix_length);
2899 Isolate* isolate, Handle<Object> input) {
2900 if (input->IsNumber() || input->IsBigInt()) return input; // Shortcut.
2903 if (input->IsOddball()) {
2904 return Oddball::ToNumber(isolate, Handle<Oddball>::cast(input));
2906 if (input->IsSymbol()) {
2911 isolate, input,
2912 JSReceiver::ToPrimitive(isolate, Handle<JSReceiver>::cast(input),
2915 if (input->IsString()) UNIMPLEMENTED();
2916 return input;