Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/gnu/llvm/llvm/include/llvm/Support/
DEndian.h220 void operator=(value_type newValue) {
222 (void*)Value.buffer, newValue);
225 packed_endian_specific_integral &operator+=(value_type newValue) {
226 *this = *this + newValue;
230 packed_endian_specific_integral &operator-=(value_type newValue) {
231 *this = *this - newValue;
235 packed_endian_specific_integral &operator|=(value_type newValue) {
236 *this = *this | newValue;
240 packed_endian_specific_integral &operator&=(value_type newValue) {
241 *this = *this & newValue;
/openbsd/src/gnu/llvm/libcxxabi/src/
Dcxa_exception.cpp81 void __setExceptionClass(_Unwind_Exception* unwind_exception, uint64_t newValue) { in __setExceptionClass() argument
82 ::memcpy(&unwind_exception->exception_class, &newValue, sizeof(newValue)); in __setExceptionClass()
/openbsd/src/gnu/llvm/libunwind/src/
DDwarfParser.hpp108 int64_t newValue, PrologInfo &initialState) { in setRegister()
111 savedRegisters[reg].value = newValue; in setRegister()
118 void setRegisterValue(uint64_t reg, int64_t newValue, in setRegisterValue()
121 savedRegisters[reg].value = newValue; in setRegisterValue()
/openbsd/src/gnu/llvm/clang/docs/
DObjectiveCLiterals.rst381 object[idx] = newValue;
387 [object setObject:newValue atIndexedSubscript:idx];
438 object[key] = newValue;
444 [object setObject:newValue forKeyedSubscript:key];
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGObjC.cpp2524 llvm::Value *newValue, in EmitARCStoreStrong() argument
2535 return EmitARCStoreStrongCall(dst.getAddress(*this), newValue, ignored); in EmitARCStoreStrong()
2541 newValue = EmitARCRetain(type, newValue); in EmitARCStoreStrong()
2548 EmitStoreOfScalar(newValue, dst); in EmitARCStoreStrong()
2553 return newValue; in EmitARCStoreStrong()
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DDiagnosticSemaKinds.td4337 : Warning<"%0 attribute for 'subscript' setter must have a 'newValue:' parameter">,
4340 : Warning<"%0 attribute for 'subscript' setter cannot have multiple 'newValue:' parameters">,
4343 : Warning<"%0 attribute for 'subscript' getter cannot have a 'newValue:' parameter">,