OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bar
(Results
176 - 200
of
1644
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/CodeGen/
c-strings.c
24
void
bar
(const char *);
28
bar
("hello");
29
// ITANIUM: call void @
bar
({{.*}} @.str
30
// MSABI: call void @
bar
({{.*}} @"\01??_C@_05CJBACGMB@hello?$AA@"
36
bar
(x);
38
// CHECK: call void @
bar
(i8* [[T1:%.*]])
44
bar
(x);
45
// CHECK: call void @
bar
({{.*}} @f2.x
51
bar
(x);
52
// CHECK: call void @
bar
({{.*}} @f3.
[
all
...]
2002-03-14-BrokenSSA.c
7
int
bar
();
13
b =
bar
();
14
c =
bar
();
2003-10-29-AsmRename.c
5
struct
bar
{ int Y; };
struct
8
extern int Func64(struct
bar
*);
14
int Func64(struct
bar
* B) {
2006-05-19-SingleEltReturn.c
12
struct Y
bar
();
15
*P =
bar
();
18
struct Y
bar
() {
function
2007-01-20-VectorICE.c
7
__v2di
bar
(void);
9
*P = X == 2 ?
bar
() :
bar
();
2007-06-05-NoInlineAttribute.c
3
static int
bar
(int x, int y) __attribute__((noinline));
5
static int
bar
(int x, int y)
function
11
return
bar
(b, a);
2003-08-18-StructAsValue.c
9
event_t foo = { 1 },
bar
= { 2 };
local
10
return X ? foo :
bar
;
2007-09-05-ConstCtor.c
8
void
bar
(struct A *a);
13
bar
(&a);
arm-pcs.c
6
aapcs_fn
bar
;
variable
12
return
bar
() + baz();
enum.c
7
static enum { foo,
bar
= 1U } z;
enumerator in enum:__anon22463
13
if (
bar
- 2 < 0)
/external/clang/test/Index/
complete-super.cpp
6
virtual void
bar
(double x);
7
virtual void
bar
(float x);
12
void
bar
(float real);
19
void B::
bar
(float real) {
function in class:B
20
A::
bar
(real);
26
// RUN: c-index-test -code-completion-at=%s:20:3 %s | FileCheck -check-prefix=CHECK-
BAR
-UNQUAL %s
27
// CHECK-
BAR
-UNQUAL: CXXMethod:{Text A::}{TypedText
bar
}{LeftParen (}{Placeholder real}{RightParen )} (20)
28
// CHECK-
BAR
-UNQUAL: CXXMethod:{ResultType void}{TypedText
bar
}{LeftParen (}{Placeholder float real}{RightParen )} (34
[
all
...]
/external/clang/test/CodeGenCXX/
incomplete-member-function-pointer.cpp
5
void
bar
(fake_tuple);
7
void (connection::*a)(fake_tuple) = &connection::
bar
;
9
void (connection::*b)(fake_tuple) = &connection::
bar
;
linetable-fnbegin.cpp
2
// Test that the line table info for Foo<T>::
bar
() is pointing to the
4
// CHECK: define{{.*}}
bar
8
// CHECK: [[SP:.*]] = metadata !{i32 786478, metadata [[HPP]],{{.*}}[ DW_TAG_subprogram ] [line 22] [def] [
bar
]
17
int
bar
();
21
int Foo<T>::
bar
() {
function in class:Foo
27
return f.
bar
();
debug-info-class-nolimit.cpp
15
void
bar
() {
function in namespace:rdar14101097_1
26
void
bar
() {
function in namespace:rdar14101097_2
/external/clang/test/Sema/
2007-10-01-BuildArrayRef.c
10
int
bar
;
member in struct:foo
18
fp[0].
bar
= 1; // expected-error {{read-only variable is not assignable}}
19
return sfoo.
bar
;
warn-sizeof-array-decay.c
5
int
bar
[20];
local
8
(void)sizeof(
bar
+ 10); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
10
(void)sizeof(
bar
- x); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
/external/clang/test/SemaCXX/
warn-variable-not-needed.cpp
16
static char
bar
;
member in struct:test2::__anon23241::foo
20
bar
++;
22
char foo::
bar
=0;
member in class:test2::__anon23241::foo
qualified-names-diag.cpp
6
namespace
bar
{
namespace in namespace:foo::wibble
16
namespace
bar
{
namespace
19
struct incomplete; // expected-note{{forward declaration of '
bar
::incomplete'}}
23
::
bar
::y b;
24
a + b; // expected-error{{invalid operands to binary expression ('foo::wibble::x' and '::
bar
::y' (aka 'int'))}}
26
::foo::wibble::
bar
::wonka::x::y c;
27
c + b; // expected-error{{invalid operands to binary expression ('::foo::wibble::
bar
::wonka::x::y' and '::
bar
::y' (aka 'int'))}}
29
(void)sizeof(
bar
::incomplete); // expected-error{{invalid application of 'sizeof' to an incomplete type '
bar
::incomplete'}
[
all
...]
/ndk/tests/device/test-stlport_shared-exception/jni/
loop1.cpp
7
static void
bar
(char *);
14
bar
(ptr);
22
static void
bar
(char *)
function
/ndk/tests/device/test-stlport_static-exception/jni/
loop1.cpp
7
static void
bar
(char *);
14
bar
(ptr);
22
static void
bar
(char *)
function
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
030-define-chain-obj-to-func-compose.c
2
#define
bar
(failure) failure
macro
3
#define foo
bar
(baz(success))
031-define-chain-func-to-func-compose.c
2
#define
bar
(failure) failure
macro
3
#define foo()
bar
(baz(success))
056-macro-argument-with-comma.c
1
#define
bar
with,embedded,commas
macro
4
foo(
bar
)
061-define-chain-obj-to-func-multi.c
2
#define
bar
foo
macro
3
#define baz
bar
/external/chromium_org/tools/gyp/test/actions-multiple/src/
main.c
9
void
bar
(void);
16
bar
();
Completed in 1419 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>