代码搜索:defined
找到约 10,000 项符合「defined」的源代码
代码结果 10,000
www.eeworm.com/read/190666/5179917
c defined.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* Tests behaviour of the defined operator. */
/* Source: Neil Booth, 29 Oct 2000, Zack Weinberg 11 Dec 2000.
www.eeworm.com/read/347503/3168537
t defined.t
SECTIONS {
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) *(COMMON) }
}
value1 = DEFINED (defined) ? 1 : 2;
value2 = DEFINED (undefined) ? 1 : 2;
www.eeworm.com/read/347503/3168581
exp defined.exp
# Test DEFINED in a linker script.
# By Ian Lance Taylor, Cygnus Support.
# Copyright 2001, 2003
# Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or mod
www.eeworm.com/read/340665/3265663
t defined.t
SECTIONS {
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) *(COMMON) }
}
value1 = DEFINED (defined) ? 1 : 2;
value2 = DEFINED (undefined) ? 1 : 2;
www.eeworm.com/read/340665/3265680
exp defined.exp
# Test DEFINED in a linker script.
# By Ian Lance Taylor, Cygnus Support.
# Copyright 2001
# Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify
#
www.eeworm.com/read/340665/3280775
c defined.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* Tests tradcpp0 with defined. The defined operator in traditional C
works just the same as the defined opera
www.eeworm.com/read/340665/3280957
c defined.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* Tests behavior of the defined operator. */
/* Source: Neil Booth, 29 Oct 2000, Zack Weinberg 11 Dec 2000. *