OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructInNestedNS
(Results
1 - 16
of
16
) sorted by null
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.go
9
type
StructInNestedNS
struct {
13
func (rcv *
StructInNestedNS
) Init(buf []byte, i flatbuffers.UOffsetT) {
18
func (rcv *
StructInNestedNS
) Table() flatbuffers.Table {
22
func (rcv *
StructInNestedNS
) A() int32 {
25
func (rcv *
StructInNestedNS
) MutateA(n int32) bool {
29
func (rcv *
StructInNestedNS
) B() int32 {
32
func (rcv *
StructInNestedNS
) MutateB(n int32) bool {
StructInNestedNS.lua
7
local
StructInNestedNS
= {} -- the module
10
function
StructInNestedNS
.New()
24
function
StructInNestedNS
.CreateStructInNestedNS(builder, a, b)
31
return
StructInNestedNS
-- return the modul
StructInNestedNS.cs
11
public struct
StructInNestedNS
: IFlatbufferObject
16
public
StructInNestedNS
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23
public static Offset<
StructInNestedNS
> CreateStructInNestedNS(FlatBufferBuilder builder, int A, int B) {
27
return new Offset<
StructInNestedNS
>(builder.Offset);
StructInNestedNS.java
11
public final class
StructInNestedNS
extends Struct {
13
public
StructInNestedNS
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
StructInNestedNS.php
11
class
StructInNestedNS
extends Struct
16
* @return
StructInNestedNS
StructInNestedNS.py
7
class
StructInNestedNS
(object):
10
#
StructInNestedNS
14
#
StructInNestedNS
16
#
StructInNestedNS
/external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.java
21
public NamespaceA.NamespaceB.
StructInNestedNS
fooStruct() { return fooStruct(new NamespaceA.NamespaceB.
StructInNestedNS
()); }
22
public NamespaceA.NamespaceB.
StructInNestedNS
fooStruct(NamespaceA.NamespaceB.
StructInNestedNS
obj) { int o = __offset(8); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; }
TableInFirstNS.py
44
from .
StructInNestedNS
import
StructInNestedNS
45
obj =
StructInNestedNS
()
TableInFirstNS.cs
23
public NamespaceA.NamespaceB.
StructInNestedNS
? FooStruct { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.NamespaceB.
StructInNestedNS
?)(new NamespaceA.NamespaceB.
StructInNestedNS
()).__assign(o + __p.bb_pos, __p.bb) : null; } }
28
public static void AddFooStruct(FlatBufferBuilder builder, Offset<NamespaceA.NamespaceB.
StructInNestedNS
> fooStructOffset) { builder.AddStruct(2, fooStructOffset.Value, 0); }
TableInFirstNS.go
56
func (rcv *TableInFirstNS) FooStruct(obj *NamespaceA__NamespaceB.
StructInNestedNS
) *NamespaceA__NamespaceB.
StructInNestedNS
{
61
obj = new(NamespaceA__NamespaceB.
StructInNestedNS
)
TableInFirstNS.php
53
$obj = new
StructInNestedNS
();
TableInFirstNS.lua
44
local obj = require('NamespaceA.NamespaceB.
StructInNestedNS
').New()
/external/flatbuffers/tests/namespace_test/
namespace_test1_generated.h
14
struct
StructInNestedNS
;
53
FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4)
StructInNestedNS
FLATBUFFERS_FINAL_CLASS {
59
StructInNestedNS
() {
60
memset(static_cast<void *>(this), 0, sizeof(
StructInNestedNS
));
62
StructInNestedNS
(int32_t _a, int32_t _b)
79
FLATBUFFERS_STRUCT_END(
StructInNestedNS
, 8);
namespace_test1_generated.js
120
NamespaceA.NamespaceB.
StructInNestedNS
= function() {
135
* @returns {NamespaceA.NamespaceB.
StructInNestedNS
}
137
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.__init = function(i, bb) {
146
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.a = function() {
154
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.mutate_a = function(value) {
168
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.b = function() {
176
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.mutate_b = function(value) {
193
NamespaceA.NamespaceB.
StructInNestedNS
.createStructInNestedNS = function(builder, a, b) {
namespace_test2_generated.h
62
const NamespaceA::NamespaceB::
StructInNestedNS
*foo_struct() const {
63
return GetStruct<const NamespaceA::NamespaceB::
StructInNestedNS
*>(VT_FOO_STRUCT);
65
NamespaceA::NamespaceB::
StructInNestedNS
*mutable_foo_struct() {
66
return GetStruct<NamespaceA::NamespaceB::
StructInNestedNS
*>(VT_FOO_STRUCT);
73
VerifyField<NamespaceA::NamespaceB::
StructInNestedNS
>(verifier, VT_FOO_STRUCT) &&
87
void add_foo_struct(const NamespaceA::NamespaceB::
StructInNestedNS
*foo_struct) {
106
const NamespaceA::NamespaceB::
StructInNestedNS
*foo_struct = 0) {
namespace_test2_generated.js
89
* @param {NamespaceA.NamespaceB.
StructInNestedNS
=} obj
90
* @returns {NamespaceA.NamespaceB.
StructInNestedNS
|null}
94
return offset ? (obj || new NamespaceA.NamespaceB.
StructInNestedNS
).__init(this.bb_pos + offset, this.bb) : null;
Completed in 467 milliseconds