OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Bar
(Results
1 - 25
of
72
) sorted by null
1
2
3
/external/clang/test/CodeGenCXX/
2005-02-19-UnnamedVirtualThunkArgument.cpp
8
struct
Bar
{
9
Bar
();
10
virtual ~
Bar
();
14
struct Baz : public Foo, public
Bar
{
copy-initialization.cpp
8
struct
Bar
{
9
Bar
();
20
f(
Bar
());
incomplete-types.cpp
6
struct
Bar
{
10
static struct
Bar
<int>
bar
[1] = {
variable in typeref:struct:Bar
/external/clang/test/SemaCXX/
templated-friend-decl.cpp
6
struct
Bar
{};
8
// The templated declaration for class
Bar
should not be instantiated when
12
friend struct
Bar
;
zero-length-arrays.cpp
12
class
Bar
{
19
Bar
(): foo_count(0) { }
20
~
Bar
() { }
24
Bar
b;
25
Bar
b2(b);
PR9572.cpp
9
struct
Bar
: public Foo {
10
Bar
() { } // expected-note {{implicit default destructor for 'Foo' first required here}}
/external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp
5
class
Bar
{};
7
class
Bar
<G> blah_test; // expected-error{{template argument for non-type template parameter must be an expression}}
instantiate-subscript.cpp
39
void
Bar
() {
/ndk/tests/device/test-stlport_shared-exception/jni/
ctor1.cpp
18
struct
Bar
20
~
Bar
()
32
Bar
f;
delete3.cpp
29
struct
Bar
: virtual Foo {
34
delete [] new
Bar
[2];
/ndk/tests/device/test-stlport_static-exception/jni/
ctor1.cpp
18
struct
Bar
20
~
Bar
()
32
Bar
f;
delete3.cpp
29
struct
Bar
: virtual Foo {
34
delete [] new
Bar
[2];
/build/tools/droiddoc/test/generics/src/com/android/generics/
Bar.java
19
public interface
Bar
<K> {
20
public K
bar
(K arg);
method in interface:Bar
/external/clang/test/PCH/
attrs-PR8406.c
11
struct
Bar
20
struct
Bar
bar
;
local
rdar10830559.cpp
25
class
Bar
34
friend class Templated<
Bar
::BarImpl >::s;
/external/clang/test/Parser/
cxx-undeclared-identifier.cpp
18
class Foo::
Bar
{ // expected-error {{use of undeclared identifier 'Foo'}} \
/external/clang/test/Analysis/
member-expr.cpp
8
Bar
= 1
13
clang_analyzer_eval(Baz.
Bar
== Foo::
Bar
); // expected-warning{{TRUE}}
17
clang_analyzer_eval(Baz.
Bar
== Foo::
Bar
); // expected-warning{{TRUE}}
21
clang_analyzer_eval(Baz->
Bar
== Foo::
Bar
); // expected-warning{{TRUE}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
basic.cpp
14
E&
Bar
() { return Foo(C()); }
19
e.
Bar
();
/external/clang/test/CodeGen/
2003-10-09-UnionInitializerBug.c
9
struct
Bar
{
16
struct
Bar
test = {0};
2009-03-08-ZeroEltStructCrash.c
12
static void
Bar
(struct Union *u) {
2009-06-18-StaticInitTailPadPack.c
6
struct
Bar
{
12
struct
Bar
f1;
13
struct
Bar
f2;
/external/apache-harmony/support/src/test/resources/tests/resources/
hyts_Bar.ser
/libcore/support/src/test/java/tests/resources/
hyts_Bar.ser
/external/v8/test/mjsunit/
instanceof-2.js
308
var
Bar
= function() { }
311
if (d)
Bar
.prototype = 13;
312
var x = a ? new Foo() : new
Bar
();
313
var y = b ? new Foo() : new
Bar
();
316
InstanceTest(x,
Bar
);
317
InstanceTest(y,
Bar
);
318
if (e) x.__proto__ =
Bar
.prototype;
327
InstanceTest(x,
Bar
);
328
InstanceTest(y,
Bar
);
/ndk/tests/device/test-basic-rtti/jni/
test_basic_rtti.cpp
28
class
Bar
: public Foo
33
std::printf("in
Bar
!\n");
39
Foo* foo = new
Bar
();
40
Bar
*
bar
;
local
42
bar
= dynamic_cast<
Bar
*>(foo);
43
if (
bar
!= NULL) {
44
printf("OK: 'foo' is pointing to a
Bar
class instance.\n");
46
fprintf(stderr, "KO: Could not dynamically cast 'foo' to a '
Bar
*'\n")
[
all
...]
Completed in 1424 milliseconds
1
2
3