/frameworks/compile/libbcc/tests/data/src/ |
assignment.c | 4 a = b = 2; // Test that "b = 2" generates an rvalue. 5 if (a = 7) { // Test that a = 7 generates an rvalue.
|
/external/clang/test/CXX/special/class.copy/ |
p11.0x.move.cpp | 60 struct RValue { 62 RValue(RValue&&); 64 RValue::RValue(RValue&&) = default;
|
p11.0x.copy.cpp | 86 struct RValue { // expected-note{{here}} 89 RValue RVa; 90 RValue RVb(RVa); // expected-error{{call to deleted constructor}}
|
/external/clang/test/SemaCXX/ |
member-location.cpp | 7 int A::b() { return a(a((int*)0)); } // expected-error {{cannot initialize a parameter of type 'int *' with an rvalue of type 'float'}}
|
type-formatting.cpp | 8 const T *t = (const X0*)0; // expected-error{{cannot initialize a variable of type 'const X1 *' with an rvalue of type 'const X0 *'}}
|
aggregate-initialization.cpp | 38 __v4hi v1 = { (void *)1, 2, 3 }; // expected-error {{cannot initialize a vector element of type 'short' with an rvalue of type 'void *'}} 41 int a[] = { (void *)1 }; // expected-error {{cannot initialize an array element of type 'int' with an rvalue of type 'void *'}} 44 struct S { int a; } s = { (void *)1 }; // expected-error {{cannot initialize a member subobject of type 'int' with an rvalue of type 'void *'}}
|
/external/mesa3d/src/glsl/ |
opt_constant_folding.cpp | 54 virtual void handle_rvalue(ir_rvalue **rvalue); 60 ir_constant_folding_visitor::handle_rvalue(ir_rvalue **rvalue) 62 if (*rvalue == NULL || (*rvalue)->ir_type == ir_type_constant) 65 /* Note that we do rvalue visitoring on leaving. So if an 70 ir_expression *expr = (*rvalue)->as_expression(); 78 ir_constant *constant = (*rvalue)->constant_expression_value(); 80 *rvalue = constant; 83 (*rvalue)->accept(this);
|
lower_noise.cpp | 41 void handle_rvalue(ir_rvalue **rvalue) 43 if (!*rvalue) 46 ir_expression *expr = (*rvalue)->as_expression(); 54 *rvalue = ir_constant::zero(hieralloc_parent(expr), expr->type);
|
opt_noop_swizzle.cpp | 45 void handle_rvalue(ir_rvalue **rvalue); 50 ir_noop_swizzle_visitor::handle_rvalue(ir_rvalue **rvalue) 52 if (!*rvalue) 55 ir_swizzle *swiz = (*rvalue)->as_swizzle(); 70 *rvalue = swiz->val;
|
ir_expression_flattening.cpp | 54 void handle_rvalue(ir_rvalue **rvalue); 72 ir_expression_flattening_visitor::handle_rvalue(ir_rvalue **rvalue) 76 ir_rvalue *ir = *rvalue; 91 *rvalue = new(ctx) ir_dereference_variable(var);
|
/external/clang/test/CXX/expr/expr.post/expr.reinterpret.cast/ |
p1-0x.cpp | 3 // If T is an lvalue reference type or an rvalue reference to function 4 // type, the result is an lvalue; if T is an rvalue reference to
|
/external/clang/test/CXX/expr/expr.mptr.oper/ |
p6-0x.cpp | 9 // In a .* expression whose object expression is an rvalue, the 29 // Rvalue ref-qualifier. 30 (lvalue<X>().*r_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &&' can only be called on an rvalue}} 33 (xp->*r_pmf)(17); // expected-error{{pointer-to-member function type 'int (X::*)(int) &&' can only be called on an rvalue}}
|
/external/clang/test/SemaTemplate/ |
instantiate-non-dependent-types.cpp | 4 static void member() { T* x = 1; } // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}}
|
/external/libffi/src/m32r/ |
ffi.c | 49 *(void **) argp = ecif->rvalue; 178 void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 187 if ((rvalue == NULL) && 190 ecif.rvalue = alloca (cif->rtype->size); 193 ecif.rvalue = rvalue; 199 cif->flags, ecif.rvalue, fn); 208 *(unsigned long *)(ecif.rvalue) <<= (4 - size) * 8; 214 memcpy (ecif.rvalue, ecif.rvalue + 8-size, size) [all...] |
/external/libffi/src/arm/ |
ffi.c | 45 *(void **) argp = ecif->rvalue; 154 void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 169 if ((rvalue == NULL) && 172 ecif.rvalue = alloca(cif->rtype->size); 175 ecif.rvalue = &temp; 177 ecif.rvalue = rvalue; 182 ffi_call_SYSV(ffi_prep_args, &ecif, cif->bytes, cif->flags, ecif.rvalue, 191 memcpy (rvalue, &temp, cif->rtype->size); 231 ffi_prep_incoming_args_SYSV(char *stack, void **rvalue, [all...] |
/external/clang/test/SemaObjCXX/ |
instantiate-message.mm | 18 R *result3 = [ClassMethods method1:arg1]; // expected-error{{cannot initialize a variable of type 'ClassMethods2 *' with an rvalue of type 'ClassMethods *'}} 40 R *result2 = [im method1:arg1]; // expected-error{{cannot initialize a variable of type 'InstanceMethods2 *' with an rvalue of type 'InstanceMethods *'}}
|
/external/javassist/src/main/javassist/tools/rmi/ |
AppletServer.java | 152 Object rvalue = null; local 157 rvalue = convertRvalue(eo.methods[methodId].invoke(eo.object, 174 out.writeObject(rvalue); 208 private Object convertRvalue(Object rvalue) 211 if (rvalue == null) 214 String classname = rvalue.getClass().getName(); 216 return new RemoteRef(exportObject(null, rvalue), classname); 218 return rvalue;
|
/external/libffi/src/m68k/ |
ffi.c | 40 struct_value_ptr = ecif->rvalue; 169 ffi_call (ffi_cif *cif, void (*fn) (), void *rvalue, void **avalue) 179 if (rvalue == NULL 182 ecif.rvalue = alloca (cif->rtype->size); 184 ecif.rvalue = rvalue; 190 ecif.rvalue, fn);
|
/frameworks/base/tools/aidl/ |
AST.h | 131 Expression* rvalue; member in struct:Assignment 134 Assignment(Variable* lvalue, Expression* rvalue); 135 Assignment(Variable* lvalue, Expression* rvalue, Type* cast); 164 Expression* rvalue; member in struct:Comparison 166 Comparison(Expression* lvalue, const string& op, Expression* rvalue); 218 Expression* rvalue; member in struct:VariableDeclaration 221 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
|
/external/libffi/man/ |
ffi_call.3 | 12 .Fa "void *rvalue" 26 .Fa rvalue . 36 .Fa rvalue
|
/external/libffi/src/ |
java_raw_api.c | 236 ffi_java_rvalue_to_raw (ffi_cif *cif, void *rvalue) 244 *(UINT64 *)rvalue <<= 32; 254 *(SINT64 *)rvalue <<= 32; 264 ffi_java_raw_to_rvalue (ffi_cif *cif, void *rvalue) 272 *(UINT64 *)rvalue >>= 32; 282 *(SINT64 *)rvalue >>= 32; 298 void ffi_java_raw_call (ffi_cif *cif, void (*fn)(void), void *rvalue, 303 ffi_call (cif, fn, rvalue, avalue); 304 ffi_java_rvalue_to_raw (cif, rvalue); 310 ffi_java_translate_args (ffi_cif *cif, void *rvalue, [all...] |
/external/libffi/src/sparc/ |
ffi.c | 50 *(int *) argp = (long)ecif->rvalue; 152 *(unsigned long long *) argp = (unsigned long)ecif->rvalue; 368 void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 371 void *rval = rvalue; 379 ecif.rvalue = rvalue; 387 if (rvalue == NULL) 388 ecif.rvalue = alloca(cif->rtype->size); 400 cif->flags, rvalue, fn); 407 if (rvalue && rval && cif->rtype->type == FFI_TYPE_STRUCT [all...] |
/external/libffi/src/x86/ |
ffi.c | 52 *(void **) argp = ecif->rvalue; 191 void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue) 201 if ((rvalue == NULL) && 204 ecif.rvalue = alloca(cif->rtype->size); 207 ecif.rvalue = rvalue; 213 ffi_call_SYSV(ffi_prep_args, &ecif, cif->bytes, cif->flags, ecif.rvalue, 219 ecif.rvalue, fn); 273 ffi_prep_incoming_args_SYSV(char *stack, void **rvalue, void **avalue, 284 *rvalue = *(void **) argp [all...] |
/external/clang/test/CXX/expr/expr.post/expr.const.cast/ |
p1-0x.cpp | 5 // is an rvalue reference to object type, the result is an xvalue;.
|
/external/clang/test/CXX/expr/expr.post/expr.dynamic.cast/ |
p3-0x.cpp | 8 // If T is an rvalue reference type, v shall be an expression having
|