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

<<11121314151617181920>>

  /external/clang/test/Driver/
bounds-checking.c 1 // RUN: %clang -fsanitize=bounds -### -fsyntax-only %s 2> %t
5 // RUN: %clang -fbounds-checking -### -fsyntax-only %s 2> %t
9 // RUN: %clang -fbounds-checking=3 -### -fsyntax-only %s 2> %t
ms-inline-asm.c 2 // RUN: -### -fsyntax-only -fasm-blocks %s 2> %t
6 // RUN: -### -fsyntax-only -fno-asm-blocks -fasm-blocks %s 2> %t
12 // RUN: -### -fsyntax-only -fasm-blocks -fno-asm-blocks %s 2> %t
arc.c 1 // RUN: %clang -ObjC -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s
2 // RUN: %clang -x objective-c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s
3 // RUN: %clang -x objective-c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck %s
4 // RUN: %clang -x c -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s
5 // RUN: %clang -x c++ -target i386-apple-darwin10 -m32 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix NOTOBJC %s
6 // RUN: %clang -x objective-c -target x86_64-apple-darwin11 -mmacosx-version-min=10.5 -fobjc-arc %s -fsyntax-only 2>&1 | FileCheck -check-prefix UNSUPPORTED %s
  /external/clang/test/FixIt/
fixit-include.c 1 // RUN: %clang_cc1 -fsyntax-only -Wall -pedantic -verify %s
4 // RUN: not %clang_cc1 -fsyntax-only -fixit %t
6 // RUN: %clang_cc1 -fsyntax-only -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
  /external/clang/test/PCH/
rdar10830559.cpp 2 // RUN: %clang_cc1 -fsyntax-only -emit-llvm-only %s
7 // RUN: %clang_cc1 -include-pch %t -emit-llvm-only %t.empty.cpp
reinclude.cpp 2 // RUN: %clang_cc1 %s -include %S/reinclude1.h -include %S/reinclude2.h -fsyntax-only -verify
6 // RUN: %clang_cc1 %s -include-pch %t2 -fsyntax-only -verify
8 // RUN: %clang_cc1 %s -include-pch %t2 -fsyntax-only -verify
  /external/clang/test/Parser/
cxx-default-delete.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
3 int i = delete; // expected-error{{only functions}}
9 int q() = default, r; // expected-error{{only special member functions}} \
  /external/clang/test/Sema/
attr-tls_model.c 1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -verify -fsyntax-only %s
7 int f() __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only applies to thread-local variables}}
9 int x __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only applies to thread-local variables}}
attr-weak.c 1 // RUN: %clang_cc1 -verify -fsyntax-only %s
11 struct __attribute__((weak)) s0 {}; // expected-warning {{'weak' attribute only applies to variables and functions}}
12 struct __attribute__((weak_import)) s1 {}; // expected-warning {{'weak_import' attribute only applies to variables and functions}}
constructor-attribute.c 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 int x __attribute__((constructor)); // expected-warning {{'constructor' attribute only applies to functions}}
9 int x __attribute__((destructor)); // expected-warning {{'destructor' attribute only applies to functions}}
mips16_attr_allowed.c 1 // RUN: %clang_cc1 -triple mipsel-linux-gnu -fsyntax-only -verify %s
23 __attribute((nomips16)) int a; // expected-error {{attribute only applies to functions}}
25 __attribute((mips16)) int b; // expected-error {{attribute only applies to functions}}
sentinel-attribute.c 1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 int x __attribute__((sentinel)); //expected-warning{{'sentinel' attribute only applies to functions, methods and blocks}}
12 void f5(int a) __attribute__ ((sentinel)); //expected-warning{{'sentinel' attribute only supported for variadic functions}}
typedef-retain.c 1 // RUN: %clang_cc1 -fsyntax-only -verify %s -fno-lax-vector-conversions
20 r[0]=10; // expected-error {{read-only variable is not assignable}}
24 y[0] = 10; // expected-error {{read-only variable is not assignable}}
  /external/clang/test/SemaCXX/
constexpr-depth.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=128 -fconstexpr-depth 128
2 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=2 -fconstexpr-depth 2
3 // RUN: %clang -std=c++11 -fsyntax-only -Xclang -verify %s -DMAX=10 -fconstexpr-depth=10
  /external/iptables/extensions/
libipt_REDIRECT.man 1 This target is only valid in the
7 chains, and user-defined chains which are only called from those
14 this, the destination port is never altered. This is only valid
  /libcore/dalvik/src/main/java/dalvik/system/
TemporaryDirectory.java 22 * Obsolete, for binary compatibility only.
28 * This method exists for binary compatibility only.
34 * This method exists for binary compatibility only.
  /external/clang/test/Frontend/
dependency-gen.c 7 // RUN: %clang -MD -MF - %s -fsyntax-only -I a/b | FileCheck -check-prefix=CHECK-ONE %s
11 // RUN: %clang -MD -MF - %s -fsyntax-only -include a/b/x.h -DINCLUDE_FLAG_TEST | FileCheck -check-prefix=CHECK-TWO %s
15 // RUN: %clang -MD -MF - %s -fsyntax-only -I ./a/b | FileCheck -check-prefix=CHECK-THREE %s
17 // RUN: %clang -MD -MF - %s -fsyntax-only -I .//./a/b/ | FileCheck -check-prefix=CHECK-FOUR %s
19 // RUN: %clang -MD -MF - %s -fsyntax-only -I a/b/. | FileCheck -check-prefix=CHECK-FIVE %s
22 // RUN: %clang -MD -MF - %s -fsyntax-only -I ./ | FileCheck -check-prefix=CHECK-SIX %s
  /external/clang/test/Preprocessor/
predefined-macros.c 18 // RUN: %clang_cc1 %s -E -dM -ffinite-math-only -o - \
19 // RUN: | FileCheck %s --check-prefix=CHECK-FINITE-MATH-ONLY
20 // CHECK-FINITE-MATH-ONLY: #define __FINITE_MATH_ONLY__ 1
22 // RUN: %clang %s -E -dM -fno-finite-math-only -o - \
23 // RUN: | FileCheck %s --check-prefix=CHECK-NO-FINITE-MATH-ONLY
24 // CHECK-NO-FINITE-MATH-ONLY: #define __FINITE_MATH_ONLY__ 0
  /external/icu4c/common/
icuplugimp.h 33 * @internal internal use only
42 * @internal internal use only
52 * @internal internal use only
66 * @internal - Internal use only.
73 * @internal - Internal use only
80 * @internal - Internal use only.
  /external/kernel-headers/original/asm-arm/
domain.h 16 * DOMAIN_IO - domain 2 includes all IO only
17 * DOMAIN_USER - domain 1 includes all user memory only
18 * DOMAIN_KERNEL - domain 0 includes all kernel memory only
22 * only be mapped using supersections and supersections can only
28 * 36-bit addressing and supersections are only available on
  /external/skia/gyp/
common.gypi 15 # Validate the 'skia_os' setting against 'OS', because only certain
16 # combinations work. You should only override 'skia_os' for certain
25 'error': '<!(skia_mesa=1 only supported with skia_os="mac" or "linux".)',
28 'error': '<!(skia_angle=1 only supported with skia_os="win".)',
31 'error': '<!(skia_arch_width can only be 32 or 64 bits not <(skia_arch_width) bits)',
34 'error': '<!(Skia NaCl build only currently supported on Linux.)',
  /development/samples/USB/AdbTest/
README.txt 2 Currently it only implements the "adb logcat" command and displays the log
3 output in a text view and only allows connecting to one device at a time.
  /external/android-clat/
clatd.conf 10 # hostname to use to lookup plat subnet. must contain only A records
14 # This setting only makes sense with: plat_from_dns64 no
  /external/clang/test/ARCMT/
GC-check-warn-nsalloc.m 1 // RUN: %clang_cc1 -arcmt-check -verify -no-ns-alloc-error -triple x86_64-apple-darwin10 -fobjc-gc-only %s
2 // RUN: %clang_cc1 -arcmt-check -verify -no-ns-alloc-error -triple x86_64-apple-darwin10 -fobjc-gc-only -x objective-c++ %s
assign-prop-no-arc-runtime.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -fobjc-arc -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only %s > %t

Completed in 1199 milliseconds

<<11121314151617181920>>