Home
last modified time | relevance | path

Searched refs:RawValue (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py234 def RawValue(typecode_or_type, *args): function
238 from multiprocessing.sharedctypes import RawValue
239 return RawValue(typecode_or_type, *args)
Dsharedctypes.py71 def RawValue(typecode_or_type, *args): function
104 obj = RawValue(typecode_or_type, *args)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DAPSIntType.h70 llvm::APSInt getValue(uint64_t RawValue) const LLVM_READONLY { in getValue() argument
71 return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue); in getValue()
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py122 def RawValue(self, typecode_or_type, *args): member in BaseContext
124 from .sharedctypes import RawValue
125 return RawValue(typecode_or_type, *args)
Dsharedctypes.py44 def RawValue(typecode_or_type, *args): function
74 obj = RawValue(typecode_or_type, *args)
/external/skqp/src/utils/
DSkJSON.cpp488 class RawValue final : public Value { class in skjson::__anond83786ea0211::DOMParser
490 explicit RawValue(T v) { in RawValue() function in skjson::__anond83786ea0211::DOMParser::RawValue
517 fScopeIndex = *static_cast<RawValue<intptr_t>&>(placeholder); in popScopeAsVec()
526 fValueStack.push_back(RawValue<intptr_t>(fScopeIndex)); in pushObjectScope()
547 fValueStack.push_back(RawValue<intptr_t>(fScopeIndex)); in pushArrayScope()
/external/skia/src/utils/
DSkJSON.cpp488 class RawValue final : public Value { class in skjson::__anonde7231730211::DOMParser
490 explicit RawValue(T v) { in RawValue() function in skjson::__anonde7231730211::DOMParser::RawValue
517 fScopeIndex = *static_cast<RawValue<intptr_t>&>(placeholder); in popScopeAsVec()
526 fValueStack.push_back(RawValue<intptr_t>(fScopeIndex)); in pushObjectScope()
547 fValueStack.push_back(RawValue<intptr_t>(fScopeIndex)); in pushArrayScope()
/external/boringssl/src/crypto/x509/
Dmake_many_constraints.go163 Value: asn1.RawValue{
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DGlobalISelEmitter.cpp411 int64_t RawValue; member
415 int64_t RawValue = std::numeric_limits<int64_t>::min()) in MatchTableRecord()
418 RawValue(RawValue) { in MatchTableRecord()
435 return RawValue < Other.RawValue; in operator <()
437 int64_t getRawValue() const { return RawValue; } in getRawValue()
483 static MatchTableRecord NamedValue(StringRef NamedValue, int64_t RawValue) { in NamedValue() argument
485 MatchTableRecord::MTRF_CommaFollows, RawValue); in NamedValue()
493 int64_t RawValue) { in NamedValue() argument
495 MatchTableRecord::MTRF_CommaFollows, RawValue); in NamedValue()
/external/libchrome/base/numerics/
Dclamped_math.h172 constexpr T RawValue() const { return value_; } in RawValue() function
DREADME.md379 * `RawValue()` - Returns the raw value as the underlying arithmetic type. This
/external/pdfium/xfa/fxfa/parser/
Delement_attributes.inc180 ELEM_ATTR____(Field, RawValue, CJX_Field::rawValue)
227 ELEM_ATTR____(ExclGroup, RawValue, CJX_ExclGroup::rawValue)
418 ELEM_ATTR____(Draw, RawValue, CJX_Draw::rawValue)
Dattributes.inc204 ATTR____(0xa03cf627u, "rawValue", RawValue, Basic)
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1217 .. function:: RawValue(typecode_or_type, *args)
1251 The same as :func:`RawValue` except that depending on the value of *lock* a
1290 c_double(2.4) RawValue(c_double, 2.4) RawValue('d', 2.4)
1291 MyStruct(4, 6) RawValue(MyStruct, 4, 6)
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2018 values = [self.RawValue(code, value)
2059 arr5 = self.RawValue('i', 5)
5505 RawValue = staticmethod(multiprocessing.RawValue) variable in ProcessesMixin
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst1481 .. function:: RawValue(typecode_or_type, *args)
1515 The same as :func:`RawValue` except that depending on the value of *lock* a
1557 c_double(2.4) RawValue(c_double, 2.4) RawValue('d', 2.4)
1558 MyStruct(4, 6) RawValue(MyStruct, 4, 6)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py967 values = [self.RawValue(code, value)
1008 arr5 = self.RawValue('i', 5)
/external/v8/src/execution/arm64/
Dsimulator-arm64.cc3159 set_xreg(instr->Rt(), nzcv().RawValue()); in VisitSystem()
3162 set_xreg(instr->Rt(), fpcr().RawValue()); in VisitSystem()
Dsimulator-arm64.h275 uint32_t RawValue() const { return value_; } in RawValue() function
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h8530 typename T::PrimitiveIntType RawValue;
8531 memcpy(&RawValue, &Value, sizeof(Value));
8534 snprintf(buf, llvm::array_lengthof(buf), T::PrintfString, RawValue);
/external/vixl/src/aarch64/
Dsimulator-aarch64.h505 VIXL_DEPRECATED("GetRawValue", uint32_t RawValue() const) {