OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructInNestedNS
(Results
1 - 14
of
14
) 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.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
54
func (rcv *TableInFirstNS) FooStruct(obj *
StructInNestedNS
) *
StructInNestedNS
{
59
obj = new(
StructInNestedNS
)
TableInFirstNS.php
53
$obj = new
StructInNestedNS
();
/external/flatbuffers/tests/namespace_test/
namespace_test1_generated.h
14
struct
StructInNestedNS
;
48
MANUALLY_ALIGNED_STRUCT(4)
StructInNestedNS
FLATBUFFERS_FINAL_CLASS {
54
StructInNestedNS
() {
55
memset(this, 0, sizeof(
StructInNestedNS
));
57
StructInNestedNS
(int32_t _a, int32_t _b)
74
STRUCT_END(
StructInNestedNS
, 8);
namespace_test1_generated.js
109
NamespaceA.NamespaceB.
StructInNestedNS
= function() {
124
* @returns {NamespaceA.NamespaceB.
StructInNestedNS
}
126
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.__init = function(i, bb) {
135
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.a = function() {
143
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.mutate_a = function(value) {
157
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.b = function() {
165
NamespaceA.NamespaceB.
StructInNestedNS
.prototype.mutate_b = function(value) {
182
NamespaceA.NamespaceB.
StructInNestedNS
.createStructInNestedNS = function(builder, a, b) {
namespace_test2_generated.h
45
const NamespaceA::NamespaceB::
StructInNestedNS
*foo_struct() const {
46
return GetStruct<const NamespaceA::NamespaceB::
StructInNestedNS
*>(VT_FOO_STRUCT);
48
NamespaceA::NamespaceB::
StructInNestedNS
*mutable_foo_struct() {
49
return GetStruct<NamespaceA::NamespaceB::
StructInNestedNS
*>(VT_FOO_STRUCT);
56
VerifyField<NamespaceA::NamespaceB::
StructInNestedNS
>(verifier, VT_FOO_STRUCT) &&
70
void add_foo_struct(const NamespaceA::NamespaceB::
StructInNestedNS
*foo_struct) {
89
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 2007 milliseconds