Home
last modified time | relevance | path

Searched refs:V8_NOEXCEPT (Results 1 – 10 of 10) sorted by relevance

/external/v8/src/
Dlabel.h35 Label(Label&& other) V8_NOEXCEPT { *this = std::move(other); } in Label()
36 Label& operator=(Label&& other) V8_NOEXCEPT {
44 Label(Label&&) V8_NOEXCEPT = default;
45 Label& operator=(Label&&) V8_NOEXCEPT = default;
Dd8.h144 ExternalizedContents(ExternalizedContents&& other) V8_NOEXCEPT in ExternalizedContents()
154 ExternalizedContents& operator=(ExternalizedContents&& other) V8_NOEXCEPT {
/external/v8/src/wasm/
Dwasm-result.h29 ResultBase& operator=(ResultBase&& other) V8_NOEXCEPT = default;
32 ResultBase(ResultBase&& other) V8_NOEXCEPT in ResultBase()
76 Result(Result<S>&& other) V8_NOEXCEPT : ResultBase(std::move(other)), in Result()
79 Result& operator=(Result&& other) V8_NOEXCEPT = default;
102 ErrorThrower(ErrorThrower&& other) V8_NOEXCEPT;
Dwasm-result.cc148 ErrorThrower::ErrorThrower(ErrorThrower&& other) V8_NOEXCEPT in ErrorThrower()
/external/v8/src/base/
Dcompiler-specific.h101 #define V8_NOEXCEPT noexcept macro
103 #define V8_NOEXCEPT macro
Dmacros.h138 TypeName(TypeName&&) V8_NOEXCEPT = default; \
139 TypeName& operator=(TypeName&&) V8_NOEXCEPT = default; \
Doptional.h134 Optional(Optional&& other) V8_NOEXCEPT {
167 Optional& operator=(Optional&& other) V8_NOEXCEPT {
/external/v8/src/inspector/
Dstring-16.h27 String16(String16&& other) V8_NOEXCEPT;
35 String16& operator=(String16&& other) V8_NOEXCEPT;
Dstring-16.cc378 String16::String16(String16&& other) V8_NOEXCEPT in String16()
403 String16& String16::operator=(String16&& other) V8_NOEXCEPT { in operator =()
/external/v8/src/snapshot/
Dserializer-common.h303 SerializedData(SerializedData&& other) V8_NOEXCEPT in SerializedData()