Searched refs:CppType (Results 1 – 21 of 21) sorted by relevance
/external/v8/src/objects/ |
D | managed.h | 47 template <class CppType> 51 V8_INLINE CppType* raw() { return GetSharedPtrPtr()->get(); } in raw() 54 V8_INLINE std::shared_ptr<CppType> get() { return *GetSharedPtrPtr(); } in get() 56 static Managed<CppType>* cast(Object* obj) { in cast() 58 return reinterpret_cast<Managed<CppType>*>(obj); in cast() 63 static Handle<Managed<CppType>> Allocate(Isolate* isolate, in Allocate() 66 CppType* ptr = new CppType(std::forward<Args>(args)...); in Allocate() 68 std::shared_ptr<CppType>(ptr)); in Allocate() 73 static Handle<Managed<CppType>> FromRawPtr(Isolate* isolate, in FromRawPtr() 75 CppType* ptr) { in FromRawPtr() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | repeated_field_reflection.h | 249 static const FieldDescriptor::CppType cpp_type = \ 269 static const FieldDescriptor::CppType cpp_type = 285 static const FieldDescriptor::CppType cpp_type = 300 static const FieldDescriptor::CppType cpp_type = 328 static const FieldDescriptor::CppType cpp_type =
|
D | descriptor.h | 475 enum CppType { enum 540 CppType cpp_type() const; // C++ type of this field. 634 static CppType TypeToCppType(Type type); 640 static const char* CppTypeName(CppType cpp_type); 718 static const CppType kTypeToCppTypeMap[MAX_TYPE + 1]; 1858 inline FieldDescriptor::CppType FieldDescriptor::cpp_type() const { in cpp_type() 1866 inline FieldDescriptor::CppType FieldDescriptor::TypeToCppType(Type type) { in TypeToCppType() 1874 inline const char* FieldDescriptor::CppTypeName(CppType cpp_type) { in CppTypeName()
|
D | reflection.h | 511 static const FieldDescriptor::CppType cpp_type = \ 531 static const FieldDescriptor::CppType cpp_type = 547 static const FieldDescriptor::CppType cpp_type = 562 static const FieldDescriptor::CppType cpp_type = 590 static const FieldDescriptor::CppType cpp_type =
|
D | wire_format_lite.h | 119 enum CppType { enum 134 static CppType FieldTypeToCppType(FieldType type); 536 static const CppType kFieldTypeToCppTypeMap[]; 584 inline WireFormatLite::CppType
|
D | generated_message_reflection.h | 419 Message* message, const FieldDescriptor* field, FieldDescriptor::CppType, 424 FieldDescriptor::CppType, int ctype, 431 FieldDescriptor::CppType cpp_type,
|
D | message.h | 892 Message* message, const FieldDescriptor* field, FieldDescriptor::CppType, 898 FieldDescriptor::CppType cpptype, int ctype, in GetRawRepeatedField() 922 FieldDescriptor::CppType cpp_type,
|
D | map.h | 111 FieldDescriptor::CppType type() const { in type() 118 return (FieldDescriptor::CppType)type_; in type() 281 void SetType(FieldDescriptor::CppType type) { in SetType() 418 void SetType(FieldDescriptor::CppType type) { in SetType() 422 FieldDescriptor::CppType type() const { in type() 428 return (FieldDescriptor::CppType)type_; in type()
|
D | wire_format_lite.cc | 74 const WireFormatLite::CppType 76 static_cast<CppType>(0), // 0 is reserved for errors
|
D | message.cc | 417 FieldDescriptor::CppType cpp_type, in RepeatedFieldData()
|
D | generated_message_reflection.cc | 115 FieldDescriptor::CppType expected_type) { in ReportReflectionUsageTypeError() 1714 FieldDescriptor::CppType cpptype, in MutableRawRepeatedField() 1740 FieldDescriptor::CppType cpptype, in GetRawRepeatedField() 2236 FieldDescriptor::CppType cpp_type, in RepeatedFieldData()
|
D | map_field_inl.h | 159 static_cast<FieldDescriptor::CppType>(that_iter.value_.type_)); in CopyIterator()
|
D | extension_set_heavy.cc | 128 inline FieldDescriptor::CppType cpp_type(FieldType type) { in cpp_type()
|
D | extension_set.cc | 56 inline WireFormatLite::CppType cpp_type(FieldType type) { in cpp_type()
|
D | descriptor_unittest.cc | 2016 FieldDescriptor::CppType GetCppTypeForFieldType(FieldDescriptor::Type type) { in GetCppTypeForFieldType() 2019 static_cast<FieldDescriptor::CppType>(0); in GetCppTypeForFieldType()
|
D | descriptor.cc | 74 const FieldDescriptor::CppType 76 static_cast<CppType>(0), // 0 is reserved for errors
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_helpers.h | 129 const char* PrimitiveTypeName(FieldDescriptor::CppType type);
|
D | cpp_helpers.cc | 290 const char* PrimitiveTypeName(FieldDescriptor::CppType type) { in PrimitiveTypeName()
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | README.md | 1372 strings in this list are of the format `"MojomType=CppType"`, where 1373 `MojomType` must be a fully qualified Mojom typename and `CppType` must be a 1375 brackets following the `CppType`: 1376 * `move_only`: The `CppType` is move-only and should be passed by value 1378 so containers of `MojomType` will translate to containers of `CppType` 1380 * `copyable_pass_by_value`: Forces values of type `CppType` to be passed by 1383 mapped to `CppType` while a nullable `MojomType?` will be mapped to 1384 `base::Optional<CppType>`. If this attribute is set, the `base::Optional`
|
/external/libprotobuf-mutator/src/ |
D | field_instance.h | 168 protobuf::FieldDescriptor::CppType cpp_type() const { in cpp_type()
|
/external/v8/src/wasm/ |
D | wasm-objects.h | 42 template <class CppType>
|