/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/ |
D | wrapper_class_declaration.tmpl | 3 using DataView = {{struct.name}}DataView; 67 {{struct.name}}::DataView, {{serialization_result_type}}>(input); 73 {{struct.name}}::DataView>(input); 84 UserType, {{struct.name}}::DataView>>(0, 0, std::move(input))); 91 return mojo::internal::DeserializeImpl<{{struct.name}}::DataView>( 107 UserType, {{struct.name}}::DataView>>(); 113 return mojo::internal::DeserializeImpl<{{struct.name}}::DataView>(
|
D | struct_data_view_definition.tmpl | 6 inline void {{struct.name}}DataView::Get{{name|under_to_camel}}DataView( 18 inline void {{struct.name}}DataView::Get{{name|under_to_camel}}DataView(
|
D | struct_unserialized_message_context.tmpl | 2 template <typename UserType, typename DataView> 25 mojo::internal::Serialize<DataView>(user_data_, buffer, &writer, context); 31 template <typename UserType, typename DataView> 33 {{struct.name}}_UnserializedMessageContext<UserType, DataView>::kMessageTag = {};
|
D | struct_data_view_declaration.tmpl | 1 class {{struct.name}}DataView { 3 {{struct.name}}DataView() {} 5 {{struct.name}}DataView( 20 inline void Get{{name|under_to_camel}}DataView( 36 inline void Get{{name|under_to_camel}}DataView(
|
D | union_data_view_declaration.tmpl | 1 class {{union.name}}DataView { 5 {{union.name}}DataView() {} 7 {{union.name}}DataView( 30 inline void Get{{name|under_to_camel}}DataView(
|
D | wrapper_union_class_declaration.tmpl | 3 using DataView = {{union.name}}DataView; 77 {{union.name}}::DataView>(input); 83 return mojo::internal::DeserializeImpl<{{union.name}}::DataView>(
|
D | union_data_view_definition.tmpl | 6 inline void {{union.name}}DataView::Get{{name|under_to_camel}}DataView(
|
D | struct_traits_definition.tmpl | 5 bool StructTraits<{{mojom_type}}::DataView, {{mojom_type}}Ptr>::Read( 6 {{mojom_type}}::DataView input,
|
D | union_traits_declaration.tmpl | 4 struct {{export_attribute}} UnionTraits<{{mojom_type}}::DataView, 23 static bool Read({{mojom_type}}::DataView input, {{mojom_type}}Ptr* output);
|
D | module-shared.h.tmpl | 11 struct MojomTypeTraits<{{kind|get_qualified_name_for_kind}}DataView> { 77 using {{struct.name}}DataView = mojo::native::NativeStructDataView; 79 class {{struct.name}}DataView; 85 class {{union.name}}DataView;
|
D | struct_traits_declaration.tmpl | 4 struct {{export_attribute}} StructTraits<{{mojom_type}}::DataView, 31 static bool Read({{mojom_type}}::DataView input, {{mojom_type}}Ptr* output);
|
D | union_traits_definition.tmpl | 4 bool UnionTraits<{{mojom_type}}::DataView, {{mojom_type}}Ptr>::Read( 5 {{mojom_type}}::DataView input,
|
D | struct_serialization_declaration.tmpl | 2 {%- set data_view = struct|get_qualified_name_for_kind ~ "DataView" %}
|
D | union_serialization_declaration.tmpl | 1 {%- set data_view = union|get_qualified_name_for_kind ~ "DataView" %}
|
/external/v8/src/builtins/ |
D | data-view.tq | 18 return 'DataView.prototype.getUint8'; 20 return 'DataView.prototype.getInt8'; 22 return 'DataView.prototype.getUint16'; 24 return 'DataView.prototype.getInt16'; 26 return 'DataView.prototype.getUint32'; 28 return 'DataView.prototype.getInt32'; 30 return 'DataView.prototype.getFloat32'; 32 return 'DataView.prototype.getFloat64'; 34 return 'DataView.prototype.getBigInt64'; 36 return 'DataView.prototype.getBigUint64'; [all …]
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | struct_with_traits_impl_traits.cc | 19 Read(test::NestedStructWithTraits::DataView data, in Read() 56 Read(test::StructWithTraits::DataView data, in Read() 103 Read(test::MoveOnlyStructWithTraits::DataView data, in Read()
|
D | struct_unittest.cc | 33 using DataView = typename StructType::DataView; typedef 38 using DataView = native::NativeStructDataView; typedef 48 typename SerializeStructHelperTraits<StructType>::DataView; in SerializeStruct() 67 using InputMojomType = typename T::Struct::DataView; in SerializeAndDeserialize() 68 using OutputMojomType = typename U::Struct::DataView; in SerializeAndDeserialize()
|
D | serialization_warning_unittest.cc | 49 using MojomType = typename T::Struct::DataView; in TestWarning() 80 using MojomType = typename T::Struct::DataView; in TestUnionWarning()
|
D | union_unittest.cc | 34 using DataViewType = typename StructType::DataView; in SerializeStruct() 50 using DataViewType = typename StructType::DataView; in SerializeUnion()
|
/external/libchrome/mojo/public/js/lib/ |
D | buffer.js | 24 this.dataView = new DataView(this.arrayBuffer); 50 this.dataView = new DataView(this.arrayBuffer); 55 this.dataView = new DataView(this.arrayBuffer);
|
/external/v8/src/ |
D | api-inl.h | 81 MAKE_TO_LOCAL(ToLocal, JSDataView, DataView)
|
D | api.h | 101 V(DataView, JSDataView) \ 168 static inline Local<DataView> ToLocal(
|
/external/adhd/scripts/mic_testing/frontend/ |
D | recorder.js | 328 var view = new DataView(buffer);
|
/external/flatbuffers/tests/ |
D | JavaScriptTest.js | 337 var view = new DataView(bytes.buffer);
|
/external/v8/include/ |
D | v8.h | 5025 class V8_EXPORT DataView : public ArrayBufferView { 5027 static Local<DataView> New(Local<ArrayBuffer> array_buffer, 5029 static Local<DataView> New(Local<SharedArrayBuffer> shared_array_buffer, 5031 V8_INLINE static DataView* Cast(Value* obj); 5034 DataView(); 10569 DataView* DataView::Cast(v8::Value* value) { 10573 return static_cast<DataView*>(value);
|