Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for declTypes (0.12 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // Decltype is the decltype operator.
    type Decltype struct {
    	Expr AST
    }
    
    func (dt *Decltype) print(ps *printState) {
    	ps.writeString("decltype")
    	if !ps.llvmStyle {
    		ps.writeString(" ")
    	}
    	ps.startScope('(')
    	ps.print(dt.Expr)
    	ps.endScope(')')
    }
    
    func (dt *Decltype) Traverse(fn func(AST) bool) {
    	if fn(dt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Replace IfOp with PartitionedCallOp or StatefulPartitionedCallOp.
      auto rewrite = [&](auto op_type) {
        auto empty = rewriter.getStringAttr("");
        ReplaceTfOpWithNewOp<typename decltype(op_type)::CallOp>(
            rewriter, op, op.getResultTypes(), op.getInput(), func,
            /*config=*/empty, /*config_proto=*/empty, /*executor_type=*/empty);
      };
    
      if (op.getIsStateless())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top