代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/117570/14914524
c gui__intersectrect.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/211569/15177584
c gui__intersectrect.c
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
www.eeworm.com/read/206931/15285502
c gui__intersectrect.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/168845/5433815
cpp counting_iterator_example.cpp
// (C) Copyright Jeremy Siek 2000-2004.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
www.eeworm.com/read/167046/5470480
h environments.h
/* Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the term
www.eeworm.com/read/163980/5503466
c gui__intersectrect.c
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
www.eeworm.com/read/163821/5508824
h environments.h
/* Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the term
www.eeworm.com/read/162614/5518860
c dr179.c
// { dg-do compile }
// Origin: Giovanni Bajo
// DR179: Function pointers and subtraction
void foo(void);
typedef void (*fp)(void);
int main()
{
fp f1 = foo;
www.eeworm.com/read/162614/5519535
c spec7.c
// { dg-do run }
// Test that we allow simple throw specs on pointers.
void f() throw () { }
void (*pf)() throw () = f;
struct A
{
void g() throw () { }
static void (A::*pmf)() throw ();
};
vo
www.eeworm.com/read/162614/5521479
c ptrmem4.c
// { dg-do assemble }
// GROUPS passed pointers-to-members
class X {
private:
int i;
public:
X(int k) { i=k; }
int operator=(X &a) { return i = a.i; }
int operator=(int ii) { return i