/external/snakeyaml/src/test/resources/pyyaml/ |
spec-05-05.data | 1 # Comment only.
|
/external/clang/test/Preprocessor/ |
pp-record.h | 0 // Only useful for #inclusion.
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/ |
media-multi.css | 1 @media only all and (max-width:50em), only all and (max-device-width:800px), only all and (max-width:780px) {
|
media-multi.css.min | 1 @media only all and (max-width:50em),only all and (max-device-width:800px),only all and (max-width:780px){some-css:here
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/yui/out/ |
media-multi.out | 1 @media only all and (max-width:50em),only all and (max-device-width:800px),only all and (max-width:780px){some-css :here
|
media-multi.out.b | 1 @media only all and (max-width:50em),only all and (max-device-width:800px),only all and (max-width:780px){some-css :here
|
/external/clang/test/Driver/ |
clang_f_opts.h | 1 // RUN: %clang -### -fsyntax-only %s 2>&1 | FileCheck %s 2 // CHECK: -fsyntax-only
|
/art/test/453-not-byte/ |
info.txt | 1 Regression test for optimizing, which was expecting int only on a not-int instruction.
|
/art/test/537-checker-debuggable/ |
info.txt | 1 Test that CHECK-START-DEBUGGABLE runs only on --debuggable code
|
/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)"
|
/external/clang/test/Modules/Inputs/AutolinkTBD.framework/ |
AutolinkTBD.tbd | 1 empty file - clang only needs to check if it exists.
|
/external/clang/test/Parser/ |
c-namespace.c | 1 // RUN: %clang_cc1 -fsyntax-only %s
|
/external/llvm/test/YAMLParser/ |
spec-05-05.test | 3 # Comment only.
|
/external/valgrind/memcheck/tests/solaris/ |
mmapobj_bssonly_lib.c | 1 /* Contains only uninitialized data which end up in BSS section. */
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
k1om-inval.l | 2 Fatal error: Intel K1OM is 64bit only
|
l1om-inval.l | 2 Fatal error: Intel L1OM is 64bit only
|
/external/clang/test/SemaObjC/ |
attr-malloc.m | 1 // RUN: %clang_cc1 -verify -fsyntax-only -fblocks %s 4 - (id) test1 __attribute((malloc)); // expected-warning {{attribute only applies to functions}} 5 - (int) test2 __attribute((malloc)); // expected-warning {{attribute only applies to functions}} 13 __attribute((malloc)) id (*f)(); // expected-warning {{attribute only applies to functions}} 14 __attribute((malloc)) bptr (*g)(); // expected-warning {{attribute only applies to functions}} 15 __attribute((malloc)) void *(^h)(); // expected-warning {{attribute only applies to functions}}
|
/external/selinux/policycoreutils/mcstrans/share/examples/pipes/ |
pipes.test | 1 Restricted Handle Via Iron Pipes Only==s2:c102,c200.c511 2 Restricted Handle Via Copper Pipes Only==s2:c103,c200.c511 3 Restricted Handle Via Plastic Pipes Only==s2:c101,c200.c511 4 Restricted Handle Via Galvanized Pipes Only==s2:c104,c200.c511 5 Restricted Handle Via Plastic,Iron,Copper Pipes Only==s2:c101.c103,c200.c511 6 Restricted Handle Via Iron,Plastic,Copper Pipes Only=s2:c101.c103,c200.c511
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
group-reloc-ldr-encoding-bad.l | 2 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 3 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 4 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 5 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 6 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 7 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 8 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 9 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 10 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\) 11 [^:]*:27: Error: bad offset 0x00001000 \(only 12 bits available for the magnitude\ [all...] |
/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); 21 only<int*> r = new auto(1); 24 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
|
/art/test/469-condition-materialization/ |
info.txt | 2 materialize a condition when used only by an environment.
|
/external/clang/test/Integration/ |
carbon.c | 1 // RUN: %clang -fsyntax-only %s
|