Lines Matching defs:input
32 // Given the character input[i] indicating the $ in a string, locates the
38 const char* input, size_t size,
51 if (input[*i] == '{') {
65 if (!Tokenizer::IsIdentifierFirstChar(input[*i])) {
76 while (*i < size && Tokenizer::IsIdentifierContinuingChar(input[*i]))
87 } else if (input[*i] != '}') {
98 *identifier = base::StringPiece(&input[begin_offset],
133 const char* input = &literal.value().data()[1];
139 if (input[i] == '\\') {
141 switch (input[i + 1]) {
145 output.push_back(input[i + 1]);
152 output.push_back(input[i]);
153 } else if (input[i] == '$') {
155 if (!LocateInlineIdenfitier(literal, input, size, &i, &identifier, err))
160 output.push_back(input[i]);