HomeSort by relevance Sort by last modified time
    Searched refs:lvalue (Results 1 - 25 of 42) 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...]
radius.c 570 if (vp->lvalue != PW_FRAMED) {
572 vp->lvalue, rstate.user);
580 if (vp->lvalue != PW_PPP) {
582 vp->lvalue, rstate.user);
589 maxconnect = vp->lvalue;
594 maxoctets = vp->lvalue;
598 maxoctets_dir = ( vp->lvalue > 4 ) ? 0 : vp->lvalue ;
603 rstate.acct_interim_interval = vp->lvalue;
613 remote = vp->lvalue;
    [all...]
radiusclient.h 329 UINT4 lvalue; member in struct:value_pair
  /frameworks/base/tools/aidl/
AST.h 140 Variable* lvalue; member in struct:Assignment
144 Assignment(Variable* lvalue, Expression* rvalue);
145 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
173 Expression* lvalue; member in struct:Comparison
177 Comparison(Expression* lvalue, const string& op, Expression* rvalue);
231 Variable* lvalue; member in struct:VariableDeclaration
235 VariableDeclaration(Variable* lvalue);
236 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
AST.cpp 260 :lvalue(l),
267 :lvalue(l),
280 this->lvalue->Write(to);
371 :lvalue(l),
385 this->lvalue->Write(to);
499 :lvalue(l),
506 :lvalue(l),
519 this->lvalue->WriteDeclaration(to);
  /external/clang/test/SemaCXX/
expression-traits.cpp 29 // basic.lval/1 Every expression is either an lvalue or an rvalue.
34 // an lvalue.
39 static_assert(__is_lvalue_expr(expr), "should be an lvalue"); \
43 static_assert(!__is_rvalue_expr(expr), "should be an lvalue"); \
140 // (8.3.2, 8.5.3), ... the expression is an lvalue.
149 // 5.1/2 A string literal is an lvalue; all other
218 // expression. ...The result is an lvalue if the entity is
253 // entity denoted by the identifier. The result is an lvalue if
266 // member. The result is an lvalue if the member is a static
280 // expr.call/10: A function call is an lvalue if and only if th
364 Class lvalue; local
506 Class lvalue; local
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 510 LValue &lvalue,
512 lvalue.setAddress(CGF.BuildBlockByrefAddress(lvalue.getAddress(), var));
517 LValue lvalue,
519 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
523 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
524 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
544 LValue tempLV = lvalue
    [all...]
CGObjC.cpp 117 LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
125 LValue KeyLV = LValue::MakeAddr(Builder.CreateStructGEP(Keys, i),
133 LValue ValueLV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
474 LValue lvalue, QualType type);
556 /// lvalue-to-rvalue expressions.
801 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0)
1241 LValue lvalue local
2684 LValue lvalue = EmitLValue(e->getLHS()); local
2702 LValue lvalue = EmitLValue(e->getLHS()); local
    [all...]
CodeGenFunction.h     [all...]
CGExpr.cpp 139 // FIXME: This function should take an LValue as an argument.
150 LValue LV = MakeAddrLValue(Location, E->getType());
255 // Emit the expression as an lvalue.
256 LValue LV = CGF.EmitLValue(E);
261 // We have to load the lvalue.
270 LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
402 LValue LV = CGF.MakeAddrLValue(Object, E->getType());
414 LValue TempLV = CGF.MakeAddrLValue(Object,
545 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
570 // Store the updated result through the lvalue
    [all...]
  /external/iproute2/tc/
em_meta.c 354 PARSE_ERR(arg, "lvalue and rvalue are not compatible.");
364 unsigned long lvalue = 0, rvalue = 0; local
376 a = parse_object(args, args, &meta_hdr.left, &lvalue, NULL);
408 dump_value(n, TCA_EM_META_LVALUE, lvalue, &meta_hdr.left);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 7 template<typename T> T& lvalue();
25 // - is an xvalue, class prvalue, array prvalue or function lvalue
40 // function lvalue case
45 // an xvalue, class prvalue, or function lvalue of type "cv3
57 // function lvalue
62 // conversion sequence includes an lvalue-to-rvalue conversion, the
106 double& rd2 = 2.0; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double'}}
108 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}}
129 double&& rrd2 = d; // expected-error{{rvalue reference to type 'double' cannot bind to lvalue of type 'double'}}
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
process.js 129 "assign": function(op, lvalue, rvalue) {
130 return [ this[0], op, walk(lvalue), walk(rvalue) ];
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_string.c 211 unsigned long lvalue = 0; local
219 text += SDL_ScanUnsignedLong(text, 10, &lvalue);
220 value += lvalue;
225 lvalue = *text - '0';
226 value += (double)lvalue / mult;
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport_wrapPregenerated.c 883 long lvalue; member in struct:swig_constant_info
1144 sv_setiv(sv, (IV) swig_constants[i].lvalue);
1156 SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 646 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
716 get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue)
718 void *ctx = hieralloc_parent(lvalue);
721 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
727 lvalue, NULL));
730 * longer considered an lvalue.
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/jpeg/
configure     [all...]
  /external/qemu/distrib/jpeg-6b/
configure     [all...]

Completed in 583 milliseconds

1 2