Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Rbrace (0.16 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		s.Body = append(s.Body, p.caseClause())
    	}
    	s.Rbrace = p.pos()
    	p.want(_Rbrace)
    
    	return s
    }
    
    func (p *parser) selectStmt() *SelectStmt {
    	if trace {
    		defer p.trace("selectStmt")()
    	}
    
    	s := new(SelectStmt)
    	s.pos = p.pos()
    
    	p.want(_Select)
    	if !p.got(_Lbrace) {
    		p.syntaxError("missing { after select clause")
    		p.advance(_Case, _Default, _Rbrace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    // parameterized type or function value.
    func (check *Checker) rawExpr(T *target, x *operand, e ast.Expr, hint Type, allowGeneric bool) exprKind {
    	if check.conf._Trace {
    		check.trace(e.Pos(), "-- expr %s", e)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(e.Pos(), "=> %s", x)
    		}()
    	}
    
    	kind := check.exprInternal(T, x, e, hint)
    
    	if !allowGeneric {
    		check.nonGeneric(T, x)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    // parameterized type or function value.
    func (check *Checker) rawExpr(T *target, x *operand, e syntax.Expr, hint Type, allowGeneric bool) exprKind {
    	if check.conf.Trace {
    		check.trace(e.Pos(), "-- expr %s", e)
    		check.indent++
    		defer func() {
    			check.indent--
    			check.trace(e.Pos(), "=> %s", x)
    		}()
    	}
    
    	kind := check.exprInternal(T, x, e, hint)
    
    	if !allowGeneric {
    		check.nonGeneric(T, x)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	                 ::= fpT
    //
    //	<braced-expression> ::= <expression>
    //	                    ::= di <field source-name> <braced-expression>
    //	                    ::= dx <index expression> <braced-expression>
    //	                    ::= dX <range begin expression> <range end expression> <braced-expression>
    func (st *state) expression() AST {
    	if len(st.str) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Preconditions.java

       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    	// Hexadecimal escapes.
    	case 'x':
    		if t == "" {
    			break
    		}
    		if c, t, err = nextRune(t); err != nil {
    			return 0, "", err
    		}
    		if c == '{' {
    			// Any number of digits in braces.
    			// Perl accepts any text at all; it ignores all text
    			// after the first non-hex digit. We require only hex digits,
    			// and at least one.
    			nhex := 0
    			r = 0
    			for {
    				if t == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      UnitTest();
    
      // D'tor
      virtual ~UnitTest();
    
      // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
      // Google Test trace stack.
      void PushGTestTrace(const internal::TraceInfo& trace)
          GTEST_LOCK_EXCLUDED_(mutex_);
    
      // Pops a trace from the per-thread Google Test trace stack.
      void PopGTestTrace()
          GTEST_LOCK_EXCLUDED_(mutex_);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    		err = enc.EncodeToken(tok)
    		if err != nil {
    			t.Fatalf("enc.EncodeToken: Unable to encode token (%#v), %v", tok, err)
    		}
    	}
    }
    
    // Issue 9796. Used to fail with GORACE="halt_on_error=1" -race.
    func TestRace9796(t *testing.T) {
    	type A struct{}
    	type B struct {
    		C []A `xml:"X>Y"`
    	}
    	var wg sync.WaitGroup
    	for i := 0; i < 2; i++ {
    		wg.Add(1)
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if GTEST_OS_LINUX
    # define GTEST_CAN_STREAM_RESULTS_ 1
    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    //     ASSERT_*(condition) << "Some message";
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top