HomeSort by relevance Sort by last modified time
    Searched full:rvalue (Results 26 - 50 of 408) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
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 *'}}
block-call.cpp 38 int (^y)() = 3; // expected-error {{cannot initialize a variable of type 'int (^)()' with an rvalue of type 'int'}}
40 int (^z)() = a+4; // expected-error {{cannot initialize a variable of type 'int (^)()' with an rvalue of type 'int'}}
expression-traits.cpp 29 // basic.lval/1 Every expression is either an lvalue or an rvalue.
49 static_assert(__is_rvalue_expr(expr), "should be an rvalue"); \
53 static_assert(!__is_lvalue_expr(expr), "should be an rvalue"); \
67 // a reference is an rvalue.
79 // from a cast to a nonreference type is an rvalue (this includes
132 // expression (5.19) rvalue of integer type that evaluates to
161 // expression is an rvalue.
331 // being the value of t as an rvalue.
340 // rvalue of the specified type,
387 // operator... The result is an rvalue
    [all...]
rval-references.cpp 31 int &&virr3 = virr2; // expected-error {{rvalue reference to type 'int' cannot bind to lvalue of type 'int'}}
33 int &&virr4 = i1; // expected-error {{rvalue reference to type 'int' cannot bind to lvalue of type 'int'}}
59 } catch(int&&) { // expected-error {{cannot catch exceptions by rvalue reference}}
  /toolchain/binutils/binutils-2.25/bfd/
elf32-cr16.c     [all...]
  /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
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 72 T* x = 1; // 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 *'}}
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 'double *' with an rvalue of type 'int'}}
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 4 A() : a(1) { } // expected-error{{cannot initialize a member subobject of type 'void *' with an rvalue of type 'int'}}
instantiate-try-catch.cpp 6 } catch (T&&) { // expected-error 2{{cannot catch exceptions by rvalue reference}}
  /external/pdfium/core/src/fxcrt/
fx_basic_maps.cpp 43 void*& rValue) const {
65 rValue = pAssocRet->value;
67 FX_BOOL CFX_MapPtrToPtr::Lookup(void* key, void*& rValue) const {
73 rValue = pAssoc->value;
246 void*& rValue) const {
253 rValue = *(void**)(pKey + 1);
272 void* rValue = *(void**)(pKey + 1);
279 return rValue;
284 return rValue;
292 void*& rValue) const
    [all...]
  /external/chromium-trace/catapult/perf_insights/perf_insights/
corpus_query.py 137 rvalue = s[found_op_key_idx + len(found_op_key):]
140 rvalue = rvalue.strip()
143 rvalue = _StringToValue(rvalue)
145 if not isinstance(lvalue, _ReadField) or not isinstance(rvalue, _Constant):
148 raise Exception('Expected lvalue field and rvalue constant')
152 rvalue)
  /external/mesa3d/src/glsl/
lower_ubo_reference.cpp 51 void handle_rvalue(ir_rvalue **rvalue);
71 lower_ubo_reference_visitor::handle_rvalue(ir_rvalue **rvalue)
73 if (!*rvalue)
76 ir_dereference *deref = (*rvalue)->as_dereference();
84 mem_ctx = ralloc_parent(*rvalue);
93 * dereferenced by *rvalue. This may be a variable offset if an
165 const glsl_type *type = (*rvalue)->type;
179 *rvalue = deref;
lower_vector.cpp 41 void handle_rvalue(ir_rvalue **rvalue);
116 lower_vector_visitor::handle_rvalue(ir_rvalue **rvalue)
118 if (!*rvalue)
121 ir_expression *expr = (*rvalue)->as_expression();
211 *rvalue = new(mem_ctx) ir_dereference_variable(temp);
ir_reader.cpp 503 ir_read_error(expr, "expected (return <rvalue>) or (return)");
518 ir_read_error(expr, "expected rvalue tag");
522 ir_rvalue *rvalue = read_dereference(list); local
523 if (rvalue != NULL || state->error)
524 return rvalue;
526 rvalue = read_swizzle(list);
528 rvalue = read_expression(list);
530 rvalue = read_constant(list);
532 rvalue = read_texture(list);
533 if (rvalue == NULL && !state->error
744 ir_rvalue *rvalue = read_rvalue(sub); local
    [all...]
  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 123 // -- a non-static data member of rvalue reference type
124 struct RValue {
125 int && ri = 1; // expected-note{{copy constructor of 'RValue' is implicitly deleted because field 'ri' is of rvalue reference type 'int &&'}}
128 RValue RVa;
129 RValue RVb(RVa); // expected-error{{call to implicitly-deleted copy constructor}}
  /system/tools/aidl/
ast_java.h 151 Expression* rvalue; member in struct:android::aidl::java::Assignment
154 Assignment(Variable* lvalue, Expression* rvalue);
155 Assignment(Variable* lvalue, Expression* rvalue, const Type* cast);
183 Expression* rvalue; member in struct:android::aidl::java::Comparison
185 Comparison(Expression* lvalue, const std::string& op, Expression* rvalue);
236 Expression* rvalue = nullptr; member in struct:android::aidl::java::VariableDeclaration
239 VariableDeclaration(Variable* lvalue, Expression* rvalue,
  /external/clang/lib/CodeGen/
CGCall.h 46 RValue RV;
49 CallArg(RValue rv, QualType ty, bool needscopy)
81 void add(RValue rvalue, QualType type, bool needscopy = false) {
82 push_back(CallArg(rvalue, type, needscopy));
CGExprCXX.cpp 48 Args.add(RValue::get(This), MD->getThisType(CGF.getContext()));
52 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
72 RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
85 RValue CodeGenFunction::EmitCXXStructorCall(
106 RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
132 RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr(
177 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
180 return RValue::get(nullptr);
190 return RValue::get(This.getPointer());
199 return RValue::get(This.getPointer())
    [all...]
CGCUDARuntime.cpp 27 RValue CGCUDARuntime::EmitCUDAKernelCallExpr(CodeGenFunction &CGF,
54 return RValue::get(nullptr);
CGCUDARuntime.h 33 class RValue;
43 virtual RValue EmitCUDAKernelCallExpr(CodeGenFunction &CGF,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
move.h 80 * @brief Forward an rvalue.
95 * @brief Convert a value to an rvalue.
97 * @return The parameter cast to an rvalue-reference to allow moving it.
111 * @brief Conditionally convert a value to an rvalue.
113 * @return The parameter, possibly cast to an rvalue-reference.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
move.h 80 * @brief Forward an rvalue.
95 * @brief Convert a value to an rvalue.
97 * @return The parameter cast to an rvalue-reference to allow moving it.
111 * @brief Conditionally convert a value to an rvalue.
113 * @return The parameter, possibly cast to an rvalue-reference.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
move.h 80 * @brief Forward an rvalue.
95 * @brief Convert a value to an rvalue.
97 * @return The parameter cast to an rvalue-reference to allow moving it.
111 * @brief Conditionally convert a value to an rvalue.
113 * @return The parameter, possibly cast to an rvalue-reference.
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
move.h 80 * @brief Forward an rvalue.
95 * @brief Convert a value to an rvalue.
97 * @return The parameter cast to an rvalue-reference to allow moving it.
111 * @brief Conditionally convert a value to an rvalue.
113 * @return The parameter, possibly cast to an rvalue-reference.

Completed in 337 milliseconds

12 3 4 5 6 7 8 91011>>