Home
last modified time | relevance | path

Searched refs:asPointer (Results 1 – 5 of 5) sorted by relevance

/external/bcc/src/cc/frontends/p4/compiler/
DebpfScalarType.py63 def declare(self, serializer, identifier, asPointer): argument
65 assert isinstance(asPointer, bool)
70 if asPointer:
75 if asPointer:
DebpfStructType.py63 def declare(self, serializer, identifier, asPointer): argument
66 assert isinstance(asPointer, bool)
69 if asPointer:
DebpfType.py18 def declare(self, serializer, identifier, asPointer): argument
/external/llvm-project/clang/unittests/Tooling/Syntax/
DTreeTest.cpp163 EXPECT_EQ(It.asPointer(), Children[I]); in TEST_F()
164 EXPECT_EQ(CIt.asPointer(), Children[I]); in TEST_F()
175 EXPECT_EQ(nullptr, It.asPointer()); in TEST_F()
176 EXPECT_EQ(nullptr, CIt.asPointer()); in TEST_F()
/external/llvm-project/clang/include/clang/Tooling/Syntax/
DTree.h195 NodeT *asPointer() const { return N; } in asPointer() function
224 ConstChildIterator(const ChildIterator &I) : Base(I.asPointer()) {} in ConstChildIterator()