Searched refs:StructRef (Results 1 – 7 of 7) sorted by relevance
/external/python/pycparser/pycparser/ |
D | c_generator.py | 347 c_ast.StructRef, c_ast.Constant, c_ast.ID, c_ast.Typedef, 444 c_ast.StructRef, c_ast.FuncCall))
|
D | _c_ast.cfg | 163 StructRef: [name*, type, field*]
|
D | c_parser.py | 1695 p[0] = c_ast.StructRef(p[1], p[2], field, p[1].coord) 1743 p[0] = c_ast.StructRef(p[1], p[2], p[3], p[1].coord)
|
D | c_ast.py | 885 class StructRef(Node): class
|
/external/python/pycparser/tests/ |
D | test_c_parser.py | 533 if isinstance(n, StructRef): 560 self.assertIsInstance(s3.args.exprs[1], StructRef) 1749 self.assert_num_klass_nodes(ps2, StructRef, 10)
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 3256 std::string StructRef = "struct " + Tag; in SynthesizeBlockFunc() local 3265 S += "(" + StructRef + " *__cself)"; in SynthesizeBlockFunc() 3267 S += "(" + StructRef + " *__cself)"; in SynthesizeBlockFunc() 3273 S += StructRef + " *__cself, "; in SynthesizeBlockFunc() 3346 std::string StructRef = "struct " + Tag; in SynthesizeBlockHelperFuncs() local 3351 S += "(" + StructRef; in SynthesizeBlockHelperFuncs() 3352 S += "*dst, " + StructRef; in SynthesizeBlockHelperFuncs() 3371 S += "(" + StructRef; in SynthesizeBlockHelperFuncs()
|
D | RewriteModernObjC.cpp | 4051 std::string StructRef = "struct " + Tag; in SynthesizeBlockFunc() local 4064 S += "(" + StructRef + " *__cself)"; in SynthesizeBlockFunc() 4066 S += "(" + StructRef + " *__cself)"; in SynthesizeBlockFunc() 4072 S += StructRef + " *__cself, "; in SynthesizeBlockFunc() 4145 std::string StructRef = "struct " + Tag; in SynthesizeBlockHelperFuncs() local 4150 S += "(" + StructRef; in SynthesizeBlockHelperFuncs() 4151 S += "*dst, " + StructRef; in SynthesizeBlockHelperFuncs() 4170 S += "(" + StructRef; in SynthesizeBlockHelperFuncs()
|