Searched refs:encoded_file (Results 1 – 2 of 2) sorted by relevance
343 pair<const void*, int> encoded_file = index_.FindSymbol(symbol_name); in FindNameOfFileContainingSymbol() local344 if (encoded_file.first == NULL) return false; in FindNameOfFileContainingSymbol()348 io::CodedInputStream input(reinterpret_cast<const uint8*>(encoded_file.first), in FindNameOfFileContainingSymbol()349 encoded_file.second); in FindNameOfFileContainingSymbol()361 if (!file_proto.ParseFromArray(encoded_file.first, encoded_file.second)) { in FindNameOfFileContainingSymbol()384 pair<const void*, int> encoded_file, in MaybeParse() argument386 if (encoded_file.first == NULL) return false; in MaybeParse()387 return output->ParseFromArray(encoded_file.first, encoded_file.second); in MaybeParse()
304 bool MaybeParse(pair<const void*, int> encoded_file,