HomeSort by relevance Sort by last modified time
    Searched refs:RValue (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/mojo/public/cpp/bindings/lib/
filter_chain.h 18 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(FilterChain, RValue)
26 FilterChain(RValue other);
27 FilterChain& operator=(RValue other);
filter_chain.cc 17 FilterChain::FilterChain(RValue other) : sink_(other.object->sink_) {
22 FilterChain& FilterChain::operator=(RValue other) {
  /external/chromium_org/ui/gl/android/
scoped_java_surface.h 22 MOVE_ONLY_TYPE_FOR_CPP_03(ScopedJavaSurface, RValue);
36 ScopedJavaSurface(RValue rvalue);
37 ScopedJavaSurface& operator=(RValue rhs);
scoped_java_surface.cc 51 ScopedJavaSurface::ScopedJavaSurface(RValue rvalue) {
52 MoveFrom(*rvalue.object);
55 ScopedJavaSurface& ScopedJavaSurface::operator=(RValue rhs) {
  /external/clang/lib/CodeGen/
CGCUDARuntime.h 29 class RValue;
39 virtual RValue EmitCUDAKernelCallExpr(CodeGenFunction &CGF,
CGCUDARuntime.cpp 27 RValue CGCUDARuntime::EmitCUDAKernelCallExpr(CodeGenFunction &CGF,
55 return RValue::get(nullptr);
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));
CGValue.h 33 /// RValue - This trivial value class is used to represent the result of an
37 class RValue {
70 static RValue get(llvm::Value *V) {
71 RValue ER;
77 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
78 RValue ER;
85 static RValue getComplex(const std::pair<llvm::Value *, llvm::Value *> &C) {
91 static RValue getAggregate(llvm::Value *V, bool Volatile = false) {
92 RValue ER;
354 RValue asAggregateRValue() const
    [all...]
CGAtomic.cpp 99 RValue convertTempToRValue(llvm::Value *addr,
104 void emitCopyIntoMemory(RValue rvalue, LValue lvalue) const;
117 llvm::Value *materializeRValue(RValue rvalue) const;
124 static RValue emitAtomicLibcall(CodeGenFunction &CGF,
469 Args.add(RValue::get(Val), ValTy);
472 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
477 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) {
499 return RValue::get(nullptr)
    [all...]
CGExprCXX.cpp 27 RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
49 Args.add(RValue::get(This), MD->getThisType(getContext()));
53 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
76 RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
135 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
138 return RValue::get(nullptr);
145 return RValue::get(This);
154 return RValue::get(This);
204 return RValue::get(nullptr);
233 RValue
    [all...]
  /external/chromium_org/mojo/embedder/
scoped_platform_handle.h 17 MOVE_ONLY_TYPE_FOR_CPP_03(ScopedPlatformHandle, RValue)
25 ScopedPlatformHandle(RValue other) : handle_(other.object->release()) {}
26 ScopedPlatformHandle& operator=(RValue other) {
  /external/chromium_org/mojo/public/cpp/bindings/
interface_request.h 15 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(InterfaceRequest, RValue)
19 InterfaceRequest(RValue other) {
22 InterfaceRequest& operator=(RValue other) {
struct_ptr.h 27 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(StructPtr, RValue);
36 StructPtr(RValue other) : ptr_(NULL) { Take(other.object); }
37 StructPtr& operator=(RValue other) {
94 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(InlinedStructPtr, RValue);
101 InlinedStructPtr(RValue other) : is_null_(true) { Take(other.object); }
102 InlinedStructPtr& operator=(RValue other) {
interface_ptr.h 21 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(InterfacePtr, RValue)
25 InterfacePtr(RValue other) {
28 InterfacePtr& operator=(RValue other) {
  /external/chromium_org/storage/common/blob/
scoped_file.h 33 MOVE_ONLY_TYPE_FOR_CPP_03(ScopedFile, RValue)
56 ScopedFile(RValue other);
57 ScopedFile& operator=(RValue rhs) {
  /external/clang/test/CXX/special/class.copy/
p11.0x.move.cpp 133 // The restriction on rvalue reference members applies to only the copy
135 struct RValue {
137 RValue(RValue&&);
139 RValue::RValue(RValue&&) = default;
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}}
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_hunspell_dictionary.h 89 MOVE_ONLY_TYPE_FOR_CPP_03(DictionaryFile, RValue)
95 DictionaryFile(RValue other);
96 DictionaryFile& operator=(RValue other);
  /external/chromium_org/remoting/base/
typed_buffer.h 23 MOVE_ONLY_TYPE_FOR_CPP_03(TypedBuffer, RValue)
36 TypedBuffer(RValue rvalue) : buffer_(NULL), length_(0) {
38 temp.Swap(*rvalue.object);
50 TypedBuffer& operator=(RValue rvalue) {
52 temp.Swap(*rvalue.object);
  /external/chromium_org/chrome/common/media_galleries/
picasa_types.h 58 MOVE_ONLY_TYPE_FOR_CPP_03(AlbumTableFiles, RValue)
65 AlbumTableFiles(RValue other);
66 AlbumTableFiles& operator=(RValue other);
  /external/chromium_org/mojo/public/cpp/system/tests/
macros_unittest.cc 76 MOJO_MOVE_ONLY_TYPE_FOR_CPP_03(MoveOnlyInt, RValue)
84 MoveOnlyInt(RValue other) { *this = other; }
85 MoveOnlyInt& operator=(RValue other) {
  /external/chromium_org/base/files/
file.h 56 MOVE_ONLY_TYPE_FOR_CPP_03(File, RValue)
171 File(RValue other);
176 File& operator=(RValue other);
file.cc 50 File::File(RValue other)
62 File& File::operator=(RValue other) {
  /external/chromium_org/base/win/
scoped_handle.h 35 MOVE_ONLY_TYPE_FOR_CPP_03(GenericScopedHandle, RValue)
47 GenericScopedHandle(RValue other) : handle_(Traits::NullHandle()) {
60 GenericScopedHandle& operator=(RValue other) {
  /external/chromium_org/net/base/
file_stream_context.h 111 MOVE_ONLY_TYPE_FOR_CPP_03(OpenResult, RValue)
116 OpenResult(RValue other);
117 OpenResult& operator=(RValue other);

Completed in 670 milliseconds

1 2 3