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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class/
p6-0x.cpp 3 class Trivial { int n; void f(); };
10 static_assert(__is_trivial(Trivial), "Trivial is not trivial");
11 static_assert(!__is_trivial(NonTrivial1), "NonTrivial1 is trivial");
12 static_assert(!__is_trivial(NonTrivial2), "NonTrivial2 is trivial");
13 static_assert(!__is_trivial(NonTrivial3), "NonTrivial3 is trivial");
14 static_assert(!__is_trivial(NonTrivial4), "NonTrivial4 is trivial");
15 static_assert(!__is_trivial(NonTrivial5), "NonTrivial5 is trivial");
30 static_assert(!__is_trivial(NonTrivial6), "NonTrivial6 is trivial");
    [all...]
  /external/clang/test/SemaCXX/
trivial-destructor.cpp 4 static_assert(__has_trivial_destructor(T1), "T1 has trivial destructor!");
14 static_assert(__has_trivial_destructor(T3), "T3 has a virtual function (but still a trivial destructor)!");
18 static_assert(__has_trivial_destructor(T4), "T4 has a virtual base class! (but still a trivial destructor)!");
22 static_assert(__has_trivial_destructor(T5), "All the direct base classes of T5 have trivial destructors!");
29 static_assert(__has_trivial_destructor(T6), "All nonstatic data members of T6 have trivial destructors!");
34 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
38 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");
trivial-constructor.cpp 4 static_assert(__has_trivial_constructor(T1), "T1 has trivial constructor!");
22 static_assert(__has_trivial_constructor(T5), "All the direct base classes of T5 have trivial constructors!");
29 static_assert(__has_trivial_constructor(T6), "All nonstatic data members of T6 have trivial constructors!");
34 static_assert(!__has_trivial_constructor(T7), "t4 does not have a trivial constructor!");
38 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
cxx0x-defaulted-functions.cpp 31 static_assert(__is_trivial(foo), "foo should be trivial");
33 static_assert(!__has_trivial_destructor(bar), "bar's destructor isn't trivial");
35 "bar's default constructor isn't trivial");
36 static_assert(!__has_trivial_copy(bar), "bar has no trivial copy");
37 static_assert(!__has_trivial_assign(bar), "bar has no trivial assign");
anonymous-struct.cpp 12 S x; // expected-error {{anonymous struct member 'x' has a non-trivial constructor}}
  /dalvik/tests/069-field-type/src/
Blah.java 3 * Trivial class; must implement an interesting interface.
  /dalvik/tests/069-field-type/src2/
Blah.java 3 * Trivial class; must implement an interesting interface.
  /external/clang/test/SemaObjCXX/
property-synthesis-error.mm 46 class Trivial
49 Trivial(const Trivial& inObj);
50 Trivial();
51 ~Trivial();
61 Trivial _tcppObject;
65 @property (assign, readwrite) const Trivial& tcppObject;
70 @synthesize cppObject = _cppObject; // expected-error {{atomic property of reference type 'const TCPPObject &' cannot have non-trivial assignment operator}}
  /external/clang/test/CXX/class/class.union/
p1.cpp 40 Virtual v; // expected-error {{union member 'v' has a non-trivial copy constructor}}
41 VirtualBase vbase; // expected-error {{union member 'vbase' has a non-trivial copy constructor}}
42 Ctor ctor; // expected-error {{union member 'ctor' has a non-trivial constructor}}
43 Ctor2 ctor2; // expected-error {{union member 'ctor2' has a non-trivial constructor}}
44 CtorTmpl ctortmpl; // expected-error {{union member 'ctortmpl' has a non-trivial constructor}}
45 CopyCtor copyctor; // expected-error {{union member 'copyctor' has a non-trivial copy constructor}}
46 CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assignment operator}}
47 Dtor dtor; // expected-error {{union member 'dtor' has a non-trivial destructor}}
54 } m1; // expected-error {{union member 'm1' has a non-trivial copy constructor}}
57 } m2; // expected-error {{union member 'm2' has a non-trivial copy constructor}
    [all...]
  /external/llvm/test/Object/Inputs/
trivial-object-test.elf-i386 
archive-test.a-coff-i386 5 trivial-object-test.coff-i386/0 1317070755 100666 346 `
  /external/webkit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 39 name = "trivial"
70 self.assertEqual(command_with_args.name_with_arguments(), "trivial ARG1 ARG2")
73 self.assertEqual(command_with_args.name_with_arguments(), "trivial [options]")
84 expected_missing_args_error = "2 arguments required, 1 argument provided. Provided: 'foo' Required: ARG1 ARG2\nSee 'trivial-tool help trivial' for usage.\n"
91 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)
121 self.assertEqual(tool.command_by_name("trivial").name, "trivial")
136 expected_common_commands_help = """Usage: trivial-tool [options] COMMAND [ARGS]
141 Common trivial-tool commands
    [all...]
  /external/llvm/test/Object/
nm-trivial-object.test 1 RUN: llvm-nm %p/Inputs/trivial-object-test.coff-i386 \
3 RUN: llvm-nm %p/Inputs/trivial-object-test.coff-x86-64 \
5 RUN: llvm-nm %p/Inputs/trivial-object-test.elf-i386 \
7 RUN: llvm-nm %p/Inputs/trivial-object-test.elf-x86-64 \
9 RUN: llvm-nm %p/Inputs/trivial-object-test.macho-i386 \
11 RUN: llvm-nm %p/Inputs/trivial-object-test.macho-x86-64 \
objdump-relocations.test 1 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.coff-i386 \
3 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.coff-x86-64 \
5 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.elf-i386 \
7 RUN: llvm-objdump -r %p/Inputs/trivial-object-test.elf-x86-64 \
objdump-symbol-table.test 1 RUN: llvm-objdump -t %p/Inputs/trivial-object-test.coff-i386 \
3 RUN: llvm-objdump -t %p/Inputs/trivial-object-test.elf-i386 \
5 RUN: llvm-objdump -t %p/Inputs/trivial-object-test.macho-i386 \
8 COFF-i386: trivial-object-test.coff-i386: file format
19 ELF-i386: trivial-object-test.elf-i386: file format
21 ELF-i386: 00000000 l df *ABS* 00000000 trivial-object-test.s
29 macho-i386: trivial-object-test.macho-i386: file format Mach-O 32-bit i386
nm-archive.test 3 RUN: llvm-as %p/Inputs/trivial.ll -o=%t1
8 COFF: trivial-object-test.coff-i386:
objdump-file-header.test 1 RUN: llvm-objdump -f %p/Inputs/trivial-object-test.coff-i386 \
3 RUN: llvm-objdump -f %p/Inputs/trivial-object-test.elf-i386 \
objdump-section-content.test 1 RUN: llvm-objdump -s %p/Inputs/trivial-object-test.coff-i386 \
3 RUN: llvm-objdump -s %p/Inputs/trivial-object-test.elf-i386 \
6 COFF-i386: trivial-object-test.coff-i386: file format
14 ELF-i386: trivial-object-test.elf-i386: file format
  /external/chromium/chrome/common/extensions/docs/examples/
README.txt 4 * api/ - trivial extensions focused on a single API package
  /ndk/tests/build/import-install/path1/
Android.mk 1 # This is a trivial shared library that will be imported
  /ndk/tests/build/import-install/path2/
Android.mk 1 # This is a trivial shared library that will be imported
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 34 Y y; // expected-note{{jump bypasses variable with a non-trivial destructor}}
39 Y y2; // expected-note{{jump bypasses variable with a non-trivial destructor}}
  /external/clang/test/CodeGenCXX/
skip-vtable-pointer-initialization.cpp 7 // Check that we don't initialize the vtable pointer in A::~A(), since the destructor body is trivial.
23 // Check that we do initialize the vtable pointer in A::~A() since the destructor body isn't trivial.
39 // Check that we don't initialize the vtable pointer in A::~A(), since the destructor body is trivial
40 // and Field's destructor body is also trivial.
63 // isn't trivial.
113 // variable with a non-trivial destructor body.
141 // class with a non-trivial destructor body.
167 // class with a non-trivial destructor body.
pr9965.cpp 4 struct X : A // default constructor is not trivial
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 16 vararg(x2); // expected-error{{cannot pass object of non-trivial type 'X2' through variadic function; call will abort at runtime}}

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 91011>>