OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StructInNestedNS
(Results
1 - 8
of
8
) sorted by null
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
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.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
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);
/external/flatbuffers/tests/namespace_test/
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_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);
Completed in 181 milliseconds