Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stdString (0.46 sec)

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

    		}
    		s.tok = _EOF
    
    	case '\n':
    		s.nextch()
    		s.lit = "newline"
    		s.tok = _Semi
    
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		s.number(false)
    
    	case '"':
    		s.stdString()
    
    	case '`':
    		s.rawString()
    
    	case '\'':
    		s.rune()
    
    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    	case '[':
    		s.nextch()
    		s.tok = _Lbrack
    
    	case '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

       license that can be found in the LICENSE file.  */
    
    /* An example of writing a C++ virtual function in Go.  */
    
    %module(directors="1") callback
    
    %{
    #include <string>
    #include "main.h"
    %}
    
    %include "std_string.i"
    
    %feature("director");
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 366 bytes
    - Viewed (0)
  3. cluster/gce/windows/testonly/user-profile.psm1

            [DllImport("kernel32.dll")]
            public static extern uint GetLastError();
        }
    
        public static class Profile
        {
            public static uint Delete(string sidString)
            { //Profile path and computer name are optional
                if (!UserEnv.DeleteProfile(sidString, null, null))
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
Back to top