Home
last modified time | relevance | path

Searched refs:Semantic (Results 1 – 7 of 7) sorted by relevance

/aosp12/hardware/interfaces/identity/support/include/cppbor/
H A Dcppbor.h66 class Semantic; variable
122 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 …]
H A DREADME.md10 * Semantic tagging
/aosp12/hardware/interfaces/identity/support/src/
H A Dcppbor_parse.cpp144 class IncompleteSemantic : public Semantic, public IncompleteItem {
146 IncompleteSemantic(uint64_t value) : Semantic(value) {} in IncompleteSemantic()
H A Dcppbor.cpp221 void Semantic::assertInvariant() const { in assertInvariant()
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/
H A DCHANGELOG.md3 This project adheres to [Semantic Versioning](http://semver.org/).
/aosp12/system/chre/doc/
H A Dnanoapp_developer_guide.md91 of the CHRE framework and use [Semantic Versioning](http://semver.org). In the
/aosp12/hardware/interfaces/identity/support/tests/
H A Dcppbor_test.cpp865 TEST(StreamParseTest, Semantic) { in TEST() argument