HomeSort by relevance Sort by last modified time
    Searched full:only (Results 1 - 25 of 53466) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/android/sys/
sysctl.h 1 // Empty because sysctl is only needed on mac.
  /external/clang/test/Preprocessor/
pp-record.h 0 // Only useful for #inclusion.
missing-system-header.c 1 // RUN: %clang_cc1 -verify -fsyntax-only %s
  /external/clang/test/Driver/
clang_f_opts.h 1 // RUN: %clang -### -fsyntax-only %s 2>&1 | FileCheck %s
2 // CHECK: -fsyntax-only
  /external/clang/test/Coverage/
verbose.c 1 // RUN: %clang_cc1 -fsyntax-only -v %s
  /external/clang/test/Lexer/
cxx0x_raw_string_directives.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only %s
2 // RUN: %clang_cc1 -std=c++98 -fsyntax-only -verify %s
4 // expected-error@8 {{in c++98 only}}
8 #error in c++98 only)"
comment-escape.c 1 // RUN: %clang -fsyntax-only %s
  /external/clang/test/Parser/
c-namespace.c 1 // RUN: %clang_cc1 -fsyntax-only %s
cxx-bool.cpp 1 // RUN: %clang_cc1 -fsyntax-only %s
parser_overflow.c 1 // RUN: %clang_cc1 %s -fsyntax-only -DHUGE 2>&1 | FileCheck %s
2 // RUN: %clang_cc1 %s -fsyntax-only 2>&1 | FileCheck %s
3 // RUN: %clang_cc1 %s -fsyntax-only -fbracket-depth 299 2>&1 | FileCheck %s
4 // RUN: %clang_cc1 %s -fsyntax-only -fbracket-depth 300
5 // RUN: %clang %s -fsyntax-only -fbracket-depth=299 2>&1 | FileCheck %s
6 // RUN: %clang %s -fsyntax-only -fbracket-depth=300
    [all...]
  /external/llvm/test/YAMLParser/
spec-05-05.data 3 # Comment only.
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
subwrt2.good 2 Comes only from the things YoU choose.
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p3.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
3 void nondecl(int (*f)(int x = 5)) // expected-error {{default arguments can only be specified}}
5 void (*f2)(int = 17) // expected-error {{default arguments can only be specified}}
6 = (void (*)(int = 42))f; // expected-error {{default arguments can only be specified}}
10 int (*f)(int = 17); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
11 void (*g())(int = 22); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
13 auto i(int) -> void (*)(int = 9); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
15 void mem8(int (*fp)(int) = (int (*)(int = 17))0); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
4 struct only { struct
5 only(T);
6 template<typename U> only(U) = delete;
10 only<const int*> p = new const auto (0);
11 only<double*> q = new (auto) (0.0);
19 only<int*> r = new auto(1);
22 only<char*> testX = x;
  /external/clang/test/Sema/
attr-minsize.c 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
5 int var1 __attribute__((__minsize__)); // expected-error{{'__minsize__' attribute only applies to functions and methods}}
implicit-def.c 1 /* RUN: %clang_cc1 -fsyntax-only %s -std=c89
2 * RUN: not %clang_cc1 -fsyntax-only %s -std=c99 -pedantic-errors
assign.c 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
6 x->a = 10; // expected-error {{read-only variable is not assignable}}
13 b[4] = 1; // expected-error {{read-only variable is not assignable}}
14 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
text-diag.c 1 // RUN: %clang_cc1 -fsyntax-only %s
attr-returns-twice.c 1 // RUN: %clang_cc1 %s -verify -fsyntax-only
3 int a __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}}
12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}}
  /external/kernel-headers/original/asm-mips/
segment.h 4 /* Only here because we have some old header files that expect it.. */
  /ndk/tests/build/issue21132-__ARM_ARCH__/jni/
Application.mk 0 # Only armeabi-v7a and x86 instruction for fast __swap32md
  /external/clang/test/SemaCXX/
inline.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
4 // (checking C++-only constructs here)
5 struct c {inline int a;}; // expected-error{{'inline' can only appear on functions}}
attr-no-sanitize-address.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
18 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
23 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
28 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
33 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
37 // expected-error {{'no_sanitize_address' attribute only applies to functions and methods}}
  /external/clang/test/SemaObjC/
attr-objc-exception.m 1 // RUN: %clang_cc1 %s -fsyntax-only -verify
11 __attribute__((__objc_exception__)) // expected-error {{attribute may only be applied to an Objective-C interface}}
14 __attribute__((__objc_exception__)) // expected-error {{attribute may only be applied to an Objective-C interface}}
  /external/clang/test/SemaObjCXX/
objc-decls-inside-namespace.mm 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
5 @protocol P; //expected-error{{Objective-C declarations may only appear in global scope}}
7 @class Bar; //expected-error{{Objective-C declarations may only appear in global scope}}
9 @compatibility_alias Foo Bar; //expected-error{{Objective-C declarations may only appear in global scope}}
11 @interface A //expected-error{{Objective-C declarations may only appear in global scope}}
14 @implementation A //expected-error{{Objective-C declarations may only appear in global scope}}
17 @protocol P //expected-error{{Objective-C declarations may only appear in global scope}}
20 @interface A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
23 @implementation A(C) //expected-error{{Objective-C declarations may only appear in global scope}}
26 @interface B @end //expected-error{{Objective-C declarations may only appear in global scope}
    [all...]

Completed in 1034 milliseconds

1 2 3 4 5 6 7 8 91011>>