Searched defs:PathItem (Results 1 – 1 of 1) sorted by relevance
73 struct PathItem struct75 enum class Type82 PathItem(const TField &field) : field(&field), type(Type::Field) {} in PathItem() function83 PathItem(int index) : index(index), type(Type::Index) {} in PathItem() argument84 PathItem(unsigned index) : PathItem(static_cast<int>(index)) {} in PathItem() function85 PathItem(FlattenArray flatten) : type(Type::FlattenArray) {} in PathItem() argument88 {92 Type type;