| 1509 | } |
| 1510 | |
| 1511 | PointerType GetPointer(const SchemaType* schema) const { |
| 1512 | for (const SchemaEntry* target = schemaMap_.template Bottom<SchemaEntry>(); target != schemaMap_.template End<SchemaEntry>(); ++target) |
| 1513 | if (schema == target->schema) |
| 1514 | return target->pointer; |
| 1515 | return PointerType(); |
| 1516 | } |
| 1517 | |
| 1518 | static const size_t kInitialSchemaMapSize = 64; |
| 1519 | static const size_t kInitialSchemaRefSize = 64; |
no test coverage detected