HomeSort by relevance Sort by last modified time
    Searched full:lvalue (Results 51 - 75 of 311) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/lib/CodeGen/
CGObjC.cpp 286 LValue lvalue, QualType type);
290 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
423 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
463 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
470 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
503 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0);
697 LValue lvalue local
699 CGF.emitDestroy(lvalue.getAddress(), ivar->getType(), destroyer
2077 LValue lvalue = EmitLValue(e->getLHS()); local
2099 LValue lvalue = EmitLValue(e->getLHS()); local
    [all...]
CGTemporaries.cpp 46 LValue CodeGenFunction::EmitExprWithCleanupsLValue(const ExprWithCleanups *E) {
CGObjCRuntime.cpp 82 LValue CGObjCRuntime::EmitValueForIvarAtOffset(CodeGen::CodeGenFunction &CGF,
97 LValue LV = CGF.MakeAddrLValue(V, IvarTy);
136 return LValue::MakeBitfield(V, *Info,
  /frameworks/base/tools/aidl/
AST.cpp 245 :lvalue(l),
252 :lvalue(l),
265 this->lvalue->Write(to);
345 :lvalue(l),
359 this->lvalue->Write(to);
455 :lvalue(l),
462 :lvalue(l),
475 this->lvalue->WriteDeclaration(to);
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p5.cpp 66 return x; // expected-error{{cannot initialize return object of type 'const char *' with an lvalue of type 'char'}}
  /external/clang/test/Misc/
diag-aka-types.cpp 30 bar::f(x); // expected-error{{cannot initialize a parameter of type 'Foo::foo *' (aka 'bar::Foo::foo *') with an lvalue of type 'Foo::foo *')}}
  /external/clang/test/SemaTemplate/
virtual-member-functions.cpp 52 return fp; // expected-error{{cannot initialize return object of type 'int *' with an lvalue of type 'float *'}}
instantiate-template-template-parm.cpp 20 apply<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'int'}}
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.3-3.js 29 for..in should take general lvalue for first argument
  /external/clang/include/clang/Sema/
Initialization.h 507 /// \brief Perform a derived-to-base cast, producing an lvalue.
509 /// \brief Reference binding to an lvalue.
524 /// \brief Perform a qualification conversion, producing an lvalue.
607 /// \brief Non-const lvalue reference binding to a temporary.
609 /// \brief Non-const lvalue reference binding to an lvalue of unrelated
612 /// \brief Rvalue reference binding to an lvalue.
754 /// an lvalue.
762 /// lvalue or an lvalue treated as an rvalue
    [all...]
  /external/srec/srec/EventLog/src/
EventLogImpl.c 104 LCHAR lValue[10];
135 lValueSize = sizeof(lValue);
136 CHKLOG(rc, litostr(i, lValue, &lValueSize, 10));
137 CHKLOG(rc, SR_EventLogTokenInt(eventLog, lValue, iValue));
738 LCHAR lValue[256];
779 CHKLOG(rc, ESR_SessionGetLCHAR(key, (LCHAR*) &lValue, &len));
780 CHKLOG(rc, SR_EventLogToken(self, key, (LCHAR*) lValue));
790 lValueSize = sizeof(lValue);
791 CHKLOG(rc, litostr(j, lValue, &lValueSize, 10));
792 CHKLOG(rc, SR_EventLogTokenInt(self, lValue, iValue))
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 33 T *tp = dp; // expected-error{{ cannot initialize a variable of type 'int *' with an lvalue of type 'double *'}}
  /external/clang/test/CodeGen/
struct.c 161 /* As lvalue */
exprs.c 92 // ?: in "lvalue"
  /external/clang/test/Sema/
varargs.c 60 int *x = &__builtin_va_arg(ap, int); // expected-error {{address expression must be an lvalue or a function designator}}
  /external/clang/test/SemaCXX/
cxx0x-cursory-default-delete.cpp 36 bad_decls&& operator = (bad_decls) = default; // expected-error 2{{lvalue reference}}
nullptr.cpp 57 // nullptr is an rvalue, null is an lvalue
58 (void)&nullptr; // expected-error {{address expression must be an lvalue}}
conditional-expr.cpp 138 // By the way, this isn't an lvalue:
139 &(i1 ? i1 : i2); // expected-error {{address expression must be an lvalue or a function designator}}
141 // p4 (lvalue, same type)
175 // Conversion of primitives does not result in an lvalue.
176 &(i1 ? i1 : d1); // expected-error {{address expression must be an lvalue or a function designator}}
member-pointer.cpp 281 { return u->*f_; } // expected-error{{non-const lvalue reference to type 'int' cannot bind to a temporary of type '<bound member function type>'}}
303 // Verify that we perform (and check) an lvalue conversion on the operands here.
309 // Verify that we perform (and check) an lvalue conversion on the operands here.
  /external/clang/test/SemaObjCXX/
message.mm 93 [i5 method:s other:"world"]; // expected-error{{non-const lvalue reference to type 'String' cannot bind to a value of unrelated type 'const char [6]'}}
  /external/elfutils/libelf/
ChangeLog 36 * gelf_xlate.c (INLINE3): Avoid using cast as lvalue.
  /external/clang/test/Analysis/
array-struct.c 32 // StringLiteral in lvalue context and pointer to array type.
52 // Struct variable in lvalue context.
stack-addr-ps.cpp 4 // the stack analyzer doesn't handle the ImplicitCastExpr (lvalue).
  /external/clang/lib/Sema/
SemaCXXCast.cpp 506 // complete class type, [...]. If T is an lvalue reference type, v shall be
507 // an lvalue of a complete class type, [...]. If T is an rvalue reference
666 // a non-lvalue-reference target type does not lead to decay.
782 // lvalue-to-rvalue, array-to-pointer, function-to-pointer, and boolean
    [all...]
  /external/clang/test/CodeGenCXX/
conditional-gnu-ext.cpp 41 // lvalue test

Completed in 1545 milliseconds

1 23 4 5 6 7 8 91011>>