/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-re{{pointer-to-member function type 'int (X::*)(int){{( __attribute__\(\(thiscall\)\))?}} &' can only be called on an lvalue}} 26 (prvalue<X>().*l_pmf)(17); // expected-error-re{{pointer-to-member function type 'int (X::*)(int){{( __attribute__\(\(thiscall\)\))?}} &' can only be called on an lvalue}} 30 (lvalue<X>().*r_pmf)(17); // expected-error-re{{pointer-to-member function type 'int (X::*)(int){{( __attribute__\(\(thiscall\)\))?}} &&' can only be called on an rvalue}}
|
/external/clang/test/CXX/over/over.match/over.match.funcs/ |
p4-0x.cpp | 4 template<typename T> T &lvalue(); 41 int &ir1 = lvalue<X0>().f(); 44 int &ir2 = lvalue<X0>().ft(1); 50 int &ir1 = lvalue<X0>()(); 56 int &ir1 = lvalue<X0>() + prvalue<X0>(); 59 int &ir2 = lvalue<X0>() + 1; 65 int &ir1 = lvalue<X0>().h(); 68 int &ir2 = lvalue<X0>().h2();
|
/external/clang/test/CXX/expr/expr.post/expr.static.cast/ |
p3-0x.cpp | 9 template<typename T> T& lvalue(); 15 A &&ar2 = static_cast<A&&>(lvalue<A>()); 16 A &&ar3 = static_cast<A&&>(lvalue<B>()); 21 const A &&ar8 = static_cast<const A&&>(lvalue<A>()); 22 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/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 | 573 if (vp->lvalue != PW_FRAMED) { 575 vp->lvalue, rstate.user); 583 if (vp->lvalue != PW_PPP) { 585 vp->lvalue, rstate.user); 592 maxconnect = vp->lvalue; 604 idle_time_limit = vp->lvalue; 609 maxoctets = vp->lvalue; 613 maxoctets_dir = ( vp->lvalue > 4 ) ? 0 : vp->lvalue ; 618 rstate.acct_interim_interval = vp->lvalue; [all...] |
/prebuilts/misc/common/swig/include/2.0.11/php/ |
typemaps.i | 43 %typemap(in) TYPE *REFERENCE (TYPE lvalue), TYPE &REFERENCE (TYPE lvalue) 46 lvalue = (*$input)->value.lval ? true : false; 47 $1 = &lvalue; 51 (*$arg)->value.lval = lvalue$argnum ? true : false; 80 $1->value.dval = (double)(lvalue$argnum); 101 %typemap(in) TYPE *REFERENCE (TYPE lvalue), TYPE &REFERENCE (TYPE lvalue) 104 lvalue = (TYPE) (*$input)->value.lval; 105 $1 = &lvalue; [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_test_main.c | 148 long long lvalue = (long long)value; local 149 lvalue = MIN2(lvalue, ((long long)1 << (type.width - 1)) - 1); 152 *((int8_t *)dst + index) = (int8_t)lvalue; 155 *((int16_t *)dst + index) = (int16_t)lvalue; 158 *((int32_t *)dst + index) = (int32_t)lvalue; 161 *((int64_t *)dst + index) = (int64_t)lvalue; 168 unsigned long long lvalue = (long long)value; local 169 lvalue = MIN2(lvalue, ((unsigned long long)1 << type.width) - 1) [all...] |
/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'}} 199 X &&f0(X &x) { return x; } // expected-error{{rvalue reference to type 'rdar13278115::X' cannot bind to lvalue of type 'rdar13278115::X'} [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/ |
UserHistoryDictionaryTestsHelper.java | 137 long lvalue = Math.abs((long)value); local 138 while (lvalue > 0) { 139 builder.append(CHARACTERS[(int)(lvalue % lengthOfChars)]); 140 lvalue /= lengthOfChars;
|
/external/libbrillo/brillo/glib/ |
dbus.cc | 26 if (!::dbus_g_proxy_call(proxy.gproxy(), method, &Resetter(&error).lvalue(), 28 &Resetter(result).lvalue(), G_TYPE_INVALID)) { 40 &Resetter(&error).lvalue()); 114 if (!::dbus_g_proxy_call(proxy.gproxy(), "GetAll", &Resetter(&error).lvalue(), 118 &Resetter(result).lvalue(), G_TYPE_INVALID)) { 180 &Resetter(&error).lvalue()); 235 &Resetter(&err).lvalue())) { 262 &Resetter(&err).lvalue())) {
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyapi.swg | 21 long lvalue;
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ |
corpus_query.py | 136 lvalue = s[:found_op_key_idx] 139 lvalue = lvalue.strip() 142 lvalue = _StringToValue(lvalue) 145 if not isinstance(lvalue, _ReadField) or not isinstance(rvalue, _Constant): 148 raise Exception('Expected lvalue field and rvalue constant') 150 return Filter(lvalue,
|
/system/tools/aidl/ |
ast_java.h | 150 Variable* lvalue; member in struct:android::aidl::java::Assignment 154 Assignment(Variable* lvalue, Expression* rvalue); 155 Assignment(Variable* lvalue, Expression* rvalue, const Type* cast); 181 Expression* lvalue; member in struct:android::aidl::java::Comparison 185 Comparison(Expression* lvalue, const std::string& op, Expression* rvalue); 234 Variable* lvalue = nullptr; member in struct:android::aidl::java::VariableDeclaration 238 VariableDeclaration(Variable* lvalue); 239 VariableDeclaration(Variable* lvalue, Expression* rvalue,
|
ast_java.cpp | 151 : lvalue(l), rvalue(r), cast(NULL) {} 154 : lvalue(l), rvalue(r), cast(c) {} 157 this->lvalue->Write(to); 214 : lvalue(l), op(o), rvalue(r) {} 218 this->lvalue->Write(to); 278 : lvalue(l), cast(c), rvalue(r) {} 280 VariableDeclaration::VariableDeclaration(Variable* l) : lvalue(l) {} 283 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 | 602 const LValue &destLV, const Expr *init) { 622 LValue srcLV = CGF.EmitLValue(srcExpr); 653 LValue &lvalue, 655 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(), var)); 659 LValue lvalue, bool capturedByInit) { 660 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); 664 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)) 665 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local 1299 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local [all...] |
CGAtomic.cpp | 40 LValue LVal; 43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) 46 assert(!lvalue.isGlobalReg()); 48 if (lvalue.isSimple()) { 49 AtomicTy = lvalue.getType(); 71 if (lvalue.getAlignment().isZero()) 72 lvalue.setAlignment(AtomicAlign); 74 LVal = lvalue; 75 } else if (lvalue.isBitField()) 693 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); local [all...] |
CGExprComplex.cpp | 80 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc); 84 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit); 167 LValue LV = CGF.EmitLValue(E->getSubExpr()); 227 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E, 275 LValue EmitBinAssignLValue(const BinaryOperator *E, 318 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, 320 assert(lvalue.isSimple() && "non-simple complex l-value?"); 321 if (lvalue.getType()->isAtomicType()) 322 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal() [all...] |
/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 11 template<typename T> T& lvalue(); 40 unsigned &t0 = const_cast<unsigned&>(a.ubf); // expected-error {{const_cast from bit-field lvalue to reference type}} 41 unsigned &t1 = const_cast<unsigned&>(a.foo(), a.ubf); // expected-error {{const_cast from bit-field lvalue to reference type}} 42 unsigned &t2 = const_cast<unsigned&>(a.pred() ? a.ubf : a.ubf); // expected-error {{const_cast from bit-field lvalue to reference type}} 43 unsigned &t3 = const_cast<unsigned&>(a.pred() ? a.ubf : a.uv); // expected-error {{const_cast from bit-field lvalue to reference type}}
|
/external/skia/resources/ |
slides_utils.lua | 57 function parse_attr(s, lvalue) 58 local ts = "^<%s*" .. lvalue .. "%s*=%s*(%a+)%s*>$"
|
/libcore/ojluni/src/main/java/sun/misc/ |
FormattedFloatingDecimal.java | 296 * all the significant bits, after scaling, are held in lvalue. 301 * lvalue is a finite number (not Inf, nor NaN) 302 * lvalue > 0L (not zero, nor negative). 310 developLongDigits( int decExponent, long lvalue, long insignificant ){ 323 long residue = lvalue % pow10; 324 lvalue /= pow10; 328 lvalue++; 331 if ( lvalue <= Integer.MAX_VALUE ){ 332 assert lvalue > 0L : lvalue; // lvalue <= [all...] |
/prebuilts/misc/common/swig/include/2.0.11/tcl/ |
tclapi.swg | 20 long lvalue;
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
B64Code.java | 432 public static void encode(long lvalue,Appendable buf) throws IOException 434 int value=(int)(0xFFFFFFFC&(lvalue>>32)); 441 buf.append(__rfc1421alphabet[0x3f&((0x00000003&value)<<4) + (0xf&(int)(lvalue>>28))]); 443 value=0x0FFFFFFF&(int)lvalue;
|