Home | History | Annotate | Download | only in core

Lines Matching refs:Factory

21  *      2. call flatten(buffer) to write out enough data for the factory to read
23 * Unflattening is easy for the caller: new_instance = factory(buffer)
32 * a thin factory DeepCreateProc. It checks the version of the buffer, and if it is pre-deep,
34 * If the buffer is newer, then it directly calls the "real" factory: CreateProc.
54 Factory getFactory() const override { return CreateProc; }
85 typedef SkFlattenable* (*Factory)(SkReadBuffer&);
89 /** Implement this to return a factory function pointer that can be called
93 virtual Factory getFactory() const = 0;
99 static Factory NameToFactory(const char name[]);
100 static const char* FactoryToName(Factory);
103 static void Register(const char name[], Factory, Type);