Home
last modified time | relevance | path

Searched refs:DataView (Results 1 – 25 of 30) sorted by relevance

12

/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dwrapper_class_declaration.tmpl3 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>(
Dstruct_data_view_definition.tmpl6 inline void {{struct.name}}DataView::Get{{name|under_to_camel}}DataView(
18 inline void {{struct.name}}DataView::Get{{name|under_to_camel}}DataView(
Dstruct_unserialized_message_context.tmpl2 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 = {};
Dstruct_data_view_declaration.tmpl1 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(
Dunion_data_view_declaration.tmpl1 class {{union.name}}DataView {
5 {{union.name}}DataView() {}
7 {{union.name}}DataView(
30 inline void Get{{name|under_to_camel}}DataView(
Dwrapper_union_class_declaration.tmpl3 using DataView = {{union.name}}DataView;
77 {{union.name}}::DataView>(input);
83 return mojo::internal::DeserializeImpl<{{union.name}}::DataView>(
Dunion_data_view_definition.tmpl6 inline void {{union.name}}DataView::Get{{name|under_to_camel}}DataView(
Dstruct_traits_definition.tmpl5 bool StructTraits<{{mojom_type}}::DataView, {{mojom_type}}Ptr>::Read(
6 {{mojom_type}}::DataView input,
Dunion_traits_declaration.tmpl4 struct {{export_attribute}} UnionTraits<{{mojom_type}}::DataView,
23 static bool Read({{mojom_type}}::DataView input, {{mojom_type}}Ptr* output);
Dmodule-shared.h.tmpl11 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;
Dstruct_traits_declaration.tmpl4 struct {{export_attribute}} StructTraits<{{mojom_type}}::DataView,
31 static bool Read({{mojom_type}}::DataView input, {{mojom_type}}Ptr* output);
Dunion_traits_definition.tmpl4 bool UnionTraits<{{mojom_type}}::DataView, {{mojom_type}}Ptr>::Read(
5 {{mojom_type}}::DataView input,
Dstruct_serialization_declaration.tmpl2 {%- set data_view = struct|get_qualified_name_for_kind ~ "DataView" %}
Dunion_serialization_declaration.tmpl1 {%- set data_view = union|get_qualified_name_for_kind ~ "DataView" %}
/external/v8/src/builtins/
Ddata-view.tq18 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/
Dstruct_with_traits_impl_traits.cc19 Read(test::NestedStructWithTraits::DataView data, in Read()
56 Read(test::StructWithTraits::DataView data, in Read()
103 Read(test::MoveOnlyStructWithTraits::DataView data, in Read()
Dstruct_unittest.cc33 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()
Dserialization_warning_unittest.cc49 using MojomType = typename T::Struct::DataView; in TestWarning()
80 using MojomType = typename T::Struct::DataView; in TestUnionWarning()
Dunion_unittest.cc34 using DataViewType = typename StructType::DataView; in SerializeStruct()
50 using DataViewType = typename StructType::DataView; in SerializeUnion()
/external/libchrome/mojo/public/js/lib/
Dbuffer.js24 this.dataView = new DataView(this.arrayBuffer);
50 this.dataView = new DataView(this.arrayBuffer);
55 this.dataView = new DataView(this.arrayBuffer);
/external/v8/src/
Dapi-inl.h81 MAKE_TO_LOCAL(ToLocal, JSDataView, DataView)
Dapi.h101 V(DataView, JSDataView) \
168 static inline Local<DataView> ToLocal(
/external/adhd/scripts/mic_testing/frontend/
Drecorder.js328 var view = new DataView(buffer);
/external/flatbuffers/tests/
DJavaScriptTest.js337 var view = new DataView(bytes.buffer);
/external/v8/include/
Dv8.h5025 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);

12