HomeSort by relevance Sort by last modified time
    Searched full:rvalue (Results 1 - 25 of 309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/SemaObjCXX/
NSString-type.mm 5 void (^block)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}}
7 void (^block2)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}}
8 void (^block3)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)()' with an rvalue of type 'NSString *'}}
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/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/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 116 // -- a non-static data member of rvalue reference type
117 struct RValue {
118 int && ri = 1; // expected-note{{copy constructor of 'RValue' is implicitly deleted because field 'ri' is of rvalue reference type 'int &&'}}
120 RValue RVa;
121 RValue RVb(RVa); // expected-error{{call to implicitly-deleted copy constructor}}
p11.0x.move.cpp 108 // The restriction on rvalue reference members applies to only the copy
110 struct RValue {
112 RValue(RValue&&);
114 RValue::RValue(RValue&&) = default;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p2.cpp 26 T* x = 1; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} \
27 // expected-error{{cannot initialize a variable of type 'float *' with an rvalue of type 'int'}} \
28 // expected-error{{cannot initialize a variable of type 'double *' with an rvalue of type 'int'}}
templates.cpp 71 T* x = 1; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} \
72 // expected-error{{cannot initialize a variable of type 'float *' with an rvalue of type 'int'}}
125 int X<T>::value = []{ return T(); }(); // expected-error{{cannot initialize a variable of type 'int' with an rvalue of type 'int *'}}
132 void defaults(int x = []{ return T(); }()) { }; // expected-error{{cannot initialize a parameter of type 'int' with an rvalue of type 'int *'}} \
143 int x = []{ return T(); }(); // expected-error{{cannot initialize a member subobject of type 'int' with an rvalue of type 'int *'}}
  /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/CXX/stmt.stmt/stmt.ambig/
p1-0x.cpp 26 T(*g)(double(3)); // expected-error{{cannot initialize a variable of type 'T (*)' with an rvalue of type 'double'}}
38 decltype(T())(*g)(double(3)); // expected-error{{cannot initialize a variable of type 'decltype(T()) (*)' (aka 'T *') with an rvalue of type 'double'}}
  /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 141 Expression* rvalue; member in struct:Assignment
144 Assignment(Variable* lvalue, Expression* rvalue);
145 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
175 Expression* rvalue; member in struct:Comparison
177 Comparison(Expression* lvalue, const string& op, Expression* rvalue);
233 Expression* rvalue; member in struct:VariableDeclaration
236 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...]

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 91011>>