Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cb (0.22 sec)

  1. src/cmd/cgo/internal/swig/testdata/callback/main.go

    	return "GoCallback.Run"
    }
    
    func testCall() {
    	c := NewCaller()
    	cb := NewCallback()
    
    	c.SetCallback(cb)
    	s := c.Call()
    	if s != "Callback::run" {
    		fatal("unexpected string from Call: %q", s)
    	}
    	c.DelCallback()
    }
    
    func testCallback() {
    	c := NewCaller()
    	cb := NewDirectorCallback(&GoCallback{})
    	c.SetCallback(cb)
    	s := c.Call()
    	if s != "GoCallback.Run" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 1K bytes
    - Viewed (0)
  2. src/archive/zip/reader_test.go

    00000c0 88 21 c4 00 00 14 00 eb ff 42 88 21 c4 00 00 14
    00000d0 00 eb ff 42 88 21 c4 00 00 14 00 eb ff 42 88 21
    00000e0 c4 00 00 00 00 ff ff 00 00 00 ff ff 00 34 00 cb
    00000f0 ff 42 88 21 c4 00 00 00 00 ff ff 00 00 00 ff ff
    0000100 00 34 00 cb ff 42 e8 21 5e 0f 00 00 00 ff ff 0a
    0000110 f0 66 64 12 61 c0 15 dc e8 a0 48 bf 48 af 2a b3
    0000120 20 c0 9b 95 0d c4 67 04 42 53 06 06 06 40 00 06
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	JCS 2(PC)
    	//TODO: RETQ                            // c3
    	JCS 2(PC)
    	//TODO: RETQ $0xf123                    // c223f1
    	JCS 2(PC)
    	//TODO: RETFQ                           // cb
    	JCS 2(PC)
    	//TODO: RETFQ $0xf123                   // ca23f1
    	ROLW $1, (BX)                           // 66d103
    	ROLW $1, (R11)                          // 6641d103
    	ROLW $1, DX                             // 66d1c2
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/swig/testdata/callback/main.h

    class Caller {
    private:
    	Callback *callback_;
    public:
    	Caller(): callback_(0) { }
    	~Caller() { delCallback(); }
    	void delCallback() { delete callback_; callback_ = 0; }
    	void setCallback(Callback *cb) { delCallback(); callback_ = cb; }
    	std::string call();
    C
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 529 bytes
    - Viewed (0)
  5. api/go1.txt

    pkg image, type Rectangle struct, Min Point
    pkg image, type Uniform struct
    pkg image, type Uniform struct, C color.Color
    pkg image, type YCbCr struct
    pkg image, type YCbCr struct, CStride int
    pkg image, type YCbCr struct, Cb []uint8
    pkg image, type YCbCr struct, Cr []uint8
    pkg image, type YCbCr struct, Rect Rectangle
    pkg image, type YCbCr struct, SubsampleRatio YCbCrSubsampleRatio
    pkg image, type YCbCr struct, Y []uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top