Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
28 * At the IR level, this is represented by a single variable of struct type.
65 return std::make_unique<InterfaceBlock>(fLine, this->variable(), this->typeName(),
66 this->instanceName(), this->arraySize(),
67 SymbolTable::WrapIfBuiltin(this->typeOwner()));
71 String result = this->variable().modifiers().description() + this->typeName() + " {\n";
72 const Type* structType = &this->variable().type();
80 if (!this->instanceName().empty()) {
81 result += " " + this->instanceName();
82 if (this->arraySize() > 0) {
83 result.appendf("[%d]", this->arraySize());