OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StructInNestedNS
(Results
1 - 7
of
7
) sorted by null
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.php
11
class
StructInNestedNS
extends Struct
16
* @return
StructInNestedNS
StructInNestedNS.py
7
class
StructInNestedNS
(object):
10
#
StructInNestedNS
14
#
StructInNestedNS
16
#
StructInNestedNS
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.java
11
public final class
StructInNestedNS
extends Struct {
13
public
StructInNestedNS
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
StructInNestedNS.cs
9
public struct
StructInNestedNS
: IFlatbufferObject
14
public
StructInNestedNS
__assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
21
public static Offset<
StructInNestedNS
> CreateStructInNestedNS(FlatBufferBuilder builder, int A, int B) {
25
return new Offset<
StructInNestedNS
>(builder.Offset);
/external/flatbuffers/tests/namespace_test/
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_test1_generated.h
14
struct
StructInNestedNS
;
39
MANUALLY_ALIGNED_STRUCT(4)
StructInNestedNS
FLATBUFFERS_FINAL_CLASS {
45
StructInNestedNS
() {
46
memset(this, 0, sizeof(
StructInNestedNS
));
48
StructInNestedNS
(const
StructInNestedNS
&_o) {
49
memcpy(this, &_o, sizeof(
StructInNestedNS
));
51
StructInNestedNS
(int32_t _a, int32_t _b)
68
STRUCT_END(
StructInNestedNS
, 8);
Completed in 713 milliseconds