Home | History | Annotate | Download | only in java

Lines Matching defs:result

33     StringPiece16 result;
35 result.assign(iter + sep.size(), value.end() - (iter + sep.size()));
37 result = value;
40 if (result.empty()) {
45 iter = util::findNonAlphaNumericAndNotInSet(result, u"_");
46 if (iter != result.end()) {
49 << "' in '" << result << "'");
53 if (*result.begin() >= u'0' && *result.begin() <= u'9') {
58 return result;
69 Maybe<StringPiece16> result = extractJavaIdentifier(diag, source.withLine(el->lineNumber),
71 if (!result) {
76 util::utf16ToUtf8(result.value()), util::utf16ToUtf8(attr->value));