OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:c99
(Results
1 - 25
of
1344
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaCXX/
c99.cpp
2
void f1(int i[static 5]) { // expected-error{{
C99
}}
5
struct Point { int x; int y; int z[]; }; // expected-warning{{flexible array members are a
C99
feature}}
7
Point p1 = { .x = 17, // expected-warning{{designated initializers are a
C99
feature}}
8
y: 25 }; // expected-warning{{designated initializers are a
C99
feature}} \
c99-variable-length-array-cxx11.cpp
21
int array1[N]; // expected-warning{{variable length arrays are a
C99
feature}}
22
POD array2[N]; // expected-warning{{variable length arrays are a
C99
feature}}
23
StillPOD array3[N]; // expected-warning{{variable length arrays are a
C99
feature}}
24
StillPOD2 array4[N][3]; // expected-warning{{variable length arrays are a
C99
feature}}
/frameworks/compile/slang/tests/F_unknown_function/
stderr.txt.expect
1
unknown_function.rs:6:5: error: implicit declaration of function 'bar' is invalid in
C99
/external/clang/test/Preprocessor/
expr_comma.c
4
// Comma is allowed if unevaluated in
C99
5
// RUN: %clang_cc1 -E %s -std=
c99
-pedantic-errors
macro_fn.c
7
#define zero_dot(...) 0 /* expected-warning {{variadic macros are a
C99
feature}} */
8
#define one_dot(x, ...) 0 /* expected-warning {{variadic macros are a
C99
feature}} expected-note 2{{macro 'one_dot' defined here}} */
17
expected-warning {{empty macro arguments are a
C99
feature}}*/
23
two(a, ) /* expected-warning {{empty macro arguments are a
C99
feature}} */
26
, /* expected-warning {{empty macro arguments are a
C99
feature}} */
27
, /* expected-warning {{empty macro arguments are a
C99
feature}} \
29
) /* expected-warning {{empty macro arguments are a
C99
feature}} */
30
two(,) /* expected-warning 2 {{empty macro arguments are a
C99
feature}} */
35
#define e(...) __VA_ARGS__ /* expected-warning {{variadic macros are a
C99
feature}} */
51
#define NSAssert(condition, desc, ...) /* expected-warning {{variadic macros are a
C99
feature}} */
[
all
...]
macro_fn_comma_swallow2.c
4
// RUN: %clang_cc1 -E -std=
c99
%s | FileCheck -check-prefix=
C99
-strict-whitespace %s
5
// RUN: %clang_cc1 -E -std=c11 %s | FileCheck -check-prefix=
C99
-strict-whitespace %s
10
// RUN: %clang_cc1 -E -std=
c99
-DNAMED %s | FileCheck -check-prefix=
C99
-strict-whitespace %s
20
// These are the GCC named argument versions of the
C99
-style variadic macros.
37
// empty __VA_ARGS__. This extension does not apply in -std=
c99
mode, but
46
// Under
C99
standard mode, the GCC ", ## __VA_ARGS__" extension *does not*
49
//
C99
: 1: [ ] [ , ] [ , ] [ ] [ ]
50
//
C99
: 2: [ a ] [ , a ] [ ,a ] [ a ] [ a
[
all
...]
/external/compiler-rt/test/BlocksRuntime/
c99.c
8
//
c99
.m
10
// CONFIG
C99
rdar://problem/6399225
/external/autotest/client/site_tests/hardware_PerfCallgraphVerification/src/
Makefile
1
CFLAGS=-O2 -g -std=
c99
/external/clang/test/Parser/
if-scope-c99.c
1
// RUN: %clang_cc1 -fsyntax-only -verify -std=
c99
%s
struct-recursion.c
3
//
C99
6.7.2.3p11
control-scope.c
2
// RUN: %clang_cc1 %s -std=
c99
/external/clang/test/Sema/
arg-scope-c99.c
1
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-verify %s
implicit-def.c
2
* RUN: not %clang_cc1 -fsyntax-only %s -std=
c99
-pedantic-errors
warn-freestanding-complex.c
3
void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding
C99
implementation}}
PR2727.c
2
// RUN: %clang_cc1 -verify -fsyntax-only -std=
c99
%s
PR2728.c
2
// RUN: %clang_cc1 -verify -fsyntax-only -std=
c99
%s
/external/clang/test/CodeGen/
inline2.c
2
// RUN: %clang_cc1 -O1 -std=
c99
-triple i386-apple-darwin9 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-
C99
%s
5
// CHECK-
C99
-LABEL: define i32 @f0()
10
// CHECK-
C99
-LABEL: define i32 @f1()
15
// CHECK-
C99
-LABEL: define i32 @f2()
20
// CHECK-
C99
-LABEL: define i32 @f3()
25
// CHECK-
C99
-LABEL: define i32 @f5()
30
// CHECK-
C99
-LABEL: define i32 @f6()
35
// CHECK-
C99
-LABEL: define i32 @f7()
46
// CHECK-
C99
-LABEL: define i32 @f4(
[
all
...]
2005-06-15-ExpandGotoInternalProblem.c
1
// RUN: %clang_cc1 -std=
c99
%s -emit-llvm -o - | \
/external/clang/test/PCH/
empty-with-headers.c
1
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-pedantic-errors %s
2
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-emit-pch -o %t %s
3
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-pedantic-errors -include-pch %t %s
5
// RUN: %clang_cc1 -fsyntax-only -std=
c99
-pedantic-errors -DINCLUDED %s -verify
6
// This last one should warn for -Wempty-translation-unit (
C99
6.9p1).
/external/clang/include/clang/Frontend/
LangStandards.def
44
//
C99
-ish modes
45
LANGSTANDARD(
c99
, "
c99
",
47
LineComment |
C99
| Digraphs | HexFloat)
50
LineComment |
C99
| Digraphs | HexFloat)
53
LineComment |
C99
| Digraphs | HexFloat)
56
LineComment |
C99
| Digraphs | HexFloat)
60
LineComment |
C99
| Digraphs | GNUMode | HexFloat)
63
LineComment |
C99
| Digraphs | GNUMode | HexFloat)
68
LineComment |
C99
| C11 | Digraphs | HexFloat
[
all
...]
/external/skia/third_party/yasm/config/win/
stdint.h
5
// YASM is written in
C99
and requires <stdint.h> and <inttypes.h>.
14
// Define
C99
equivalent types.
24
// Define the
C99
INT64_C macro that is used for declaring 64-bit literals.
/external/clang/test/Frontend/
stdlang.c
2
// RUN: %clang_cc1 -x cl -std=
c99
-DOPENCL %s
/external/clang/test/Headers/
ms-wchar.c
4
#error "_WCHAR_T_DEFINED should not be defined in
C99
"
/external/clang/test/Lexer/
hexfloat.cpp
3
float f = 0x1p+1; // expected-warning{{hexadecimal floating constants are a
C99
feature}}
5
double d = 0x.2p2; // expected-warning{{hexadecimal floating constants are a
C99
feature}}
6
float g = 0x1.2p2; // expected-warning{{hexadecimal floating constants are a
C99
feature}}
7
double h = 0x1.p2; // expected-warning{{hexadecimal floating constants are a
C99
feature}}
rdr-6096838-2.c
5
long double d = 0x0.0000003ffffffff00000p-16357L; /* expected-warning {{hexadecimal floating constants are a
C99
feature}} */
Completed in 939 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>