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

1 23 4 5 6 7 8 91011>>

  /external/ppp/pppd/plugins/radius/
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...]
  /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'}} \
67 // expected-error{{cannot initialize return object of type 'const int *' with an lvalue of type 'int'}}
  /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())) {
  /external/skia/resources/
slides_utils.lua 57 function parse_attr(s, lvalue)
58 local ts = "^<%s*" .. lvalue .. "%s*=%s*(%a+)%s*>$"
  /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...]
  /external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/pinetrail/
graphics_PiglitBVT_0.sh     [all...]
  /external/clang/test/CXX/basic/basic.def.odr/
p2-typeid.cpp 6 // designate an lvalue of polymorphic class type.
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1.cpp 25 double*& get_double_ptr() { return X0<int*>::value; } // expected-error{{non-const lvalue reference to type 'double *' cannot bind to a value of unrelated type 'int *'}}
  /external/clang/test/CodeGenCXX/
volatile.cpp 3 // Check that IR gen doesn't try to do an lvalue-to-rvalue conversion
  /external/clang/test/SemaCXX/
bitfield.cpp 16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue...
elaborated-type-specifier.cpp 30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
member-pointers-2.cpp 9 // We have to override these to get something with an lvalue result.
references.cpp 47 double& rd2 = 2.0; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double'}}
49 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}}
113 string &s = getInput(); // expected-error{{lvalue reference}}
148 // The following crashed trying to recursively evaluate the LValue.
user-defined-conversions.cpp 33 // Test reference binding via an lvalue conversion function.
  /external/clang/test/SemaObjCXX/
objc-pointer-conv.mm 35 [sel Meth : p]; // expected-error {{cannot initialize a parameter of type 'I *' with an lvalue of type 'const I *'}}
  /external/clang/test/SemaTemplate/
metafun-apply.cpp 32 apply1<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/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
move02.fail.cpp 20 // Can't copy from const lvalue