Searched refs:Semantic (Results 1 – 7 of 7) sorted by relevance
66 class Semantic; variable122 virtual const Semantic* asSemantic() const { return nullptr; } in asSemantic()522 class Semantic : public CompoundItem {527 explicit Semantic(uint64_t value, T&& child);529 Semantic(const Semantic& other) = delete;530 Semantic(Semantic&&) = default;531 Semantic& operator=(const Semantic& other) = delete;532 Semantic& operator=(Semantic&&) = default;567 Semantic() = default;568 Semantic(uint64_t value) : mValue(value) {} in Semantic() function[all …]
10 * Semantic tagging
144 class IncompleteSemantic : public Semantic, public IncompleteItem {146 IncompleteSemantic(uint64_t value) : Semantic(value) {} in IncompleteSemantic()
221 void Semantic::assertInvariant() const { in assertInvariant()
3 This project adheres to [Semantic Versioning](http://semver.org/).
91 of the CHRE framework and use [Semantic Versioning](http://semver.org). In the
865 TEST(StreamParseTest, Semantic) { in TEST() argument