OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lvalue
(Results
1 - 25
of
40
) sorted by null
1
2
/external/clang/test/CXX/expr/expr.mptr.oper/
p6-0x.cpp
5
template<typename T> T&
lvalue
();
12
// expression whose object expression is an
lvalue
, the program is
18
(
lvalue
<X>().*pmf)(17);
23
//
Lvalue
ref-qualifier.
24
(
lvalue
<X>().*l_pmf)(17);
25
(xvalue<X>().*l_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &' can only be called on an
lvalue
}}
26
(prvalue<X>().*l_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &' can only be called on an
lvalue
}}
30
(
lvalue
<X>().*r_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &&' can only be called on an rvalue}}
/external/clang/test/CXX/over/over.match/over.match.funcs/
p4-0x.cpp
3
template<typename T> T &
lvalue
();
40
int &ir1 =
lvalue
<X0>().f();
43
int &ir2 =
lvalue
<X0>().ft(1);
49
int &ir1 =
lvalue
<X0>()();
55
int &ir1 =
lvalue
<X0>() + prvalue<X0>();
58
int &ir2 =
lvalue
<X0>() + 1;
64
int &ir1 =
lvalue
<X0>().h();
67
int &ir2 =
lvalue
<X0>().h2();
/external/clang/test/CXX/expr/expr.post/expr.static.cast/
p3-0x.cpp
8
template<typename T> T&
lvalue
();
14
A &&ar2 = static_cast<A&&>(
lvalue
<A>());
15
A &&ar3 = static_cast<A&&>(
lvalue
<B>());
20
const A &&ar8 = static_cast<const A&&>(
lvalue
<A>());
21
const A &&ar9 = static_cast<const A&&>(
lvalue
<B>());
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp
5
// and the argument is an
lvalue
, the type "
lvalue
reference to A" is
15
template<typename T> T&
lvalue
();
20
X<int&> xi2 = f0(
lvalue
<int>());
23
X<Y&> xy2 = f0(
lvalue
<Y>());
32
f1(
lvalue
<int>()); // expected-error{{no matching function for call to 'f1'}}
35
f1(
lvalue
<Y>()); // expected-error{{no matching function for call to 'f1'}}
/external/clang/test/CXX/expr/expr.post/expr.const.cast/
p1-0x.cpp
4
// an
lvalue
reference to object type, the result is an
lvalue
; if T
9
template<typename T> T&
lvalue
();
/external/ppp/pppd/plugins/radius/
avpair.c
77
vp->
lvalue
= len;
80
vp->
lvalue
= strlen((char *) pval);
90
vp->
lvalue
= * (UINT4 *) pval;
158
UINT4
lvalue
;
local
227
pair->
lvalue
= attrlen;
233
memcpy ((char *) &
lvalue
, (char *) ptr,
235
pair->
lvalue
= ntohl (
lvalue
);
268
UINT4
lvalue
;
local
322
pair->
lvalue
= vlen
[
all
...]
sendserver.c
37
UINT4
lvalue
;
local
65
length = vp->
lvalue
;
77
lvalue
= htonl(vp->
lvalue
);
78
memcpy(buf, (char *) &
lvalue
, sizeof(UINT4));
93
length = vp->
lvalue
;
133
length = vp->
lvalue
;
158
length = vp->
lvalue
;
168
lvalue
= htonl (vp->
lvalue
);
[
all
...]