HomeSort by relevance Sort by last modified time
    Searched refs:ExprNode (Results 1 - 9 of 9) sorted by null

  /external/bcc/src/cc/frontends/b/
parser.yy 57 ExprNode *expr;
176 { $$ = new ExprStmtNode(ExprNode::Ptr($1));
179 { $$ = new ExprStmtNode(ExprNode::Ptr($1));
182 { $$ = new ExprStmtNode(ExprNode::Ptr($1));
185 { $$ = new ExprStmtNode(ExprNode::Ptr($1));
190 { $$ = new ExprStmtNode(ExprNode::Ptr($1));
353 : expr { $$ = new ExprNodeList; $$->push_back(ExprNode::Ptr($1)); }
354 | init_args TCOMMA expr { $$->push_back(ExprNode::Ptr($3)); }
359 : init_arg_kv { $$ = new ExprNodeList; $$->push_back(ExprNode::Ptr($1)); }
360 | init_args_kv TCOMMA init_arg_kv { $$->push_back(ExprNode::Ptr($3));
    [all...]
node.h 139 class ExprNode : public Node {
141 typedef unique_ptr<ExprNode> Ptr;
150 ExprNode() : typeof_(UNKNOWN), struct_type_(NULL), flags_(1 << READ) {}
151 void copy_type(const ExprNode& other) {
162 typedef vector<ExprNode::Ptr> ExprNodeList;
164 class IdentExprNode : public ExprNode {
222 class BitopExprNode : public ExprNode {
226 ExprNode::Ptr expr_;
235 class AssignExprNode : public ExprNode {
240 ExprNode::Ptr lhs_
    [all...]
type_check.cc 45 //if (n->cond_->typeof_ != ExprNode::INTEGER)
68 if (n->cond_->typeof_ != ExprNode::INTEGER)
80 if (n->value_->typeof_ != ExprNode::INTEGER)
92 n->typeof_ = ExprNode::UNKNOWN;
95 n->typeof_ = ExprNode::INTEGER;
97 n->flags_[ExprNode::WRITE] = true;
99 n->typeof_ = ExprNode::STRUCT;
103 n->flags_[ExprNode::PROTO] = true;
117 n->flags_[ExprNode::PROTO] = true;
130 n->typeof_ = ExprNode::INTEGER
    [all...]
parser.h 43 VariableDeclStmtNode * variable_add(vector<int> *types, VariableDeclStmtNode *decl, ExprNode *init_expr);
parser.cc 48 VariableDeclStmtNode *Parser::variable_add(vector<int> *types, VariableDeclStmtNode *decl, ExprNode *init_expr) {
49 AssignExprNode::Ptr assign(new AssignExprNode(decl->id_->copy(), ExprNode::Ptr(init_expr)));
codegen_llvm.cc 325 if (n->lhs_->flags_[ExprNode::PROTO]) {
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclConvertToDeviceExpression.h 95 #define KERNELBROKERCONVERT(CVQual, Res, ExprNode)\
97 struct ConvertToDeviceExpression<CVQual ExprNode<Expr> > \
98 : DeviceConvertor<ExprNode, Res, Expr>{};
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 151 const Expr *ExprNode = dyn_cast_or_null<Expr>(StmtNode);
152 if (ExprNode) {
153 StmtToTraverse = ExprNode->IgnoreParenImpCasts();
    [all...]

Completed in 752 milliseconds