Searched refs:Proto (Results 1 - 25 of 111) sorted by relevance

12345

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs79 internal MethodDescriptorProto Proto { get { return proto; } } property in class:Google.Protobuf.Reflection.MethodDescriptor
88 IDescriptor lookup = File.DescriptorPool.LookupSymbol(Proto.InputType, this);
91 throw new DescriptorValidationException(this, "\"" + Proto.InputType + "\" is not a message type.");
95 lookup = File.DescriptorPool.LookupSymbol(Proto.OutputType, this);
98 throw new DescriptorValidationException(this, "\"" + Proto.OutputType + "\" is not a message type.");
H A DFieldDescriptor.cs65 internal FieldDescriptorProto Proto { get; } property in class:Google.Protobuf.Reflection.FieldDescriptor
71 Proto = proto;
85 if (proto.OneofIndex < 0 || proto.OneofIndex >= parent.Proto.OneofDecl.Count)
100 JsonName = Proto.JsonName == "" ? JsonFormatter.ToCamelCase(Proto.Name) : Proto.JsonName;
107 public override string Name => Proto.Name;
180 public bool IsRepeated => Proto.Label == FieldDescriptorProto.Types.Label.Repeated;
185 public bool IsMap => fieldType == FieldType.Message && messageType.Proto.Options != null && messageType.Proto
[all...]
H A DEnumValueDescriptor.cs53 internal EnumValueDescriptorProto Proto { get { return proto; } } property in class:Google.Protobuf.Reflection.EnumValueDescriptor
63 public int Number { get { return Proto.Number; } }
H A DFileDescriptor.cs50 Proto = proto;
126 internal FileDescriptorProto Proto { get; } property in class:Google.Protobuf.Reflection.FileDescriptor
131 public string Name => Proto.Name;
137 public string Package => Proto.Package;
H A DServiceDescriptor.cs61 internal ServiceDescriptorProto Proto { get { return proto; } } property in class:Google.Protobuf.Reflection.ServiceDescriptor
/external/syslinux/gnu-efi/gnu-efi-3.0/apps/
H A Ddrv0.c99 GNU_EFI_APPS_DRV0_PROTOCOL Proto; member in struct:__anon24228
144 &InternalGnuEfiAppsDrv0ProtocolData.Proto,
160 InternalGnuEfiAppsDrv0ProtocolData.Proto.SayHello
162 InternalGnuEfiAppsDrv0ProtocolData.Proto.GetNumberOfHello
179 &InternalGnuEfiAppsDrv0ProtocolData.Proto, NULL);
/external/syslinux/com32/lua/src/
H A Dlfunc.h21 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
27 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
29 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
H A Dlundump.h20 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
H A Dlundump.c86 static void LoadCode(LoadState* S, Proto* f)
94 static void LoadFunction(LoadState* S, Proto* f);
96 static void LoadConstants(LoadState* S, Proto* f)
125 f->p=luaM_newvector(S->L,n,Proto*);
135 static void LoadUpvalues(LoadState* S, Proto* f)
149 static void LoadDebug(LoadState* S, Proto* f)
171 static void LoadFunction(LoadState* S, Proto* f)
226 Proto* p=cl->l.p;
H A Dldump.c78 static void DumpFunction(const Proto* f, DumpState* D);
80 static void DumpConstants(const Proto* f, DumpState* D)
109 static void DumpUpvalues(const Proto* f, DumpState* D)
120 static void DumpDebug(const Proto* f, DumpState* D)
139 static void DumpFunction(const Proto* f, DumpState* D)
162 int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip)
H A Dluac.c22 static void PrintFunction(const Proto* f, int full);
136 static const Proto* combine(lua_State* L, int n)
142 Proto* f;
166 const Proto* f;
251 static void PrintConstant(const Proto* f, int i)
277 static void PrintCode(const Proto* f)
378 static void PrintHeader(const Proto* f)
398 static void PrintDebug(const Proto* f)
425 static void PrintFunction(const Proto* f, int full)
H A Dlfunc.c110 Proto *luaF_newproto (lua_State *L) {
111 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto), NULL, 0)->p;
135 void luaF_freeproto (lua_State *L, Proto *f) {
150 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_proto.cpp20 XFA_Element::Proto,
/external/perfetto/tools/ftrace_proto_gen/
H A Dftrace_proto_gen.h28 struct Proto { struct in namespace:perfetto
45 const perfetto::Proto& proto);
47 bool GenerateProto(const FtraceEvent& format, Proto* proto_out);
52 perfetto::Proto proto,
H A Dftrace_proto_gen_unittest.cc49 Proto output;
H A Dftrace_proto_gen.cc120 const perfetto::Proto& proto) {
151 bool GenerateProto(const FtraceEvent& format, Proto* proto_out) {
167 proto_out->fields.emplace_back(Proto::Field{type, name, i});
193 perfetto::Proto proto,
250 std::string Proto::ToString() {
263 for (const Proto::Field& field : fields) {
/external/tensorflow/tensorflow/contrib/lite/toco/
H A Dtoco_port.h85 template <typename Proto>
87 Proto* proto) {
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp130 PrototypeAST *Proto; member in class:FunctionAST
134 : Proto(proto), Body(body) {}
308 PrototypeAST *Proto = ParsePrototype(); local
309 if (Proto == 0) return 0;
312 return new FunctionAST(Proto, E);
320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
321 return new FunctionAST(Proto, E);
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp155 std::unique_ptr<PrototypeAST> Proto; member in class:__anon13556::FunctionAST
159 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
161 : Proto(std::move(Proto)), Body(std::move(Body)) {}
351 auto Proto = ParsePrototype(); local
352 if (!Proto)
356 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
364 auto Proto = helper::make_unique<PrototypeAST>("__anon_expr", local
366 return helper::make_unique<FunctionAST>(std::move(Proto), std::move(E));
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp172 std::unique_ptr<PrototypeAST> Proto; member in class:__anon13558::FunctionAST
176 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
178 : Proto(std::move(Proto)), Body(std::move(Body)) {}
370 auto Proto = ParsePrototype(); local
371 if (!Proto)
375 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
383 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr", local
385 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
502 auto &P = *Proto;
[all...]
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp163 std::unique_ptr<PrototypeAST> Proto; member in class:__anon13557::FunctionAST
167 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
169 : Proto(std::move(Proto)), Body(std::move(Body)) {}
361 auto Proto = ParsePrototype(); local
362 if (!Proto)
366 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
374 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr", local
376 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
474 Function *TheFunction = TheModule->getFunction(Proto
[all...]
/external/clang/lib/AST/
H A DDeclPrinter.cpp475 std::string Proto = D->getNameInfo().getAsString(); local
479 Proto = '(' + Proto + ')';
488 Proto += "(";
490 llvm::raw_string_ostream POut(Proto);
504 Proto += ", ";
505 Proto += D->getParamDecl(i)->getNameAsString();
509 Proto += ")";
513 Proto += " const";
515 Proto
564 Out << Proto; local
620 Out << "auto " << Proto << " -> "; local
626 Out << Proto; local
[all...]
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp141 PrototypeAST *Proto; member in class:FunctionAST
145 : Proto(proto), Body(body) {}
320 PrototypeAST *Proto = ParsePrototype(); local
321 if (Proto == 0) return 0;
324 return new FunctionAST(Proto, E);
332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
333 return new FunctionAST(Proto, E);
446 Function *TheFunction = Proto->Codegen();
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp205 PrototypeAST *Proto; member in class:FunctionAST
209 : Proto(proto), Body(body) {}
513 PrototypeAST *Proto = ParsePrototype(); local
514 if (Proto == 0) return 0;
517 return new FunctionAST(Proto, E);
525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); local
526 return new FunctionAST(Proto, E);
803 Function *TheFunction = Proto->Codegen();
808 if (Proto->isBinaryOp())
809 BinopPrecedence[Proto
[all...]
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp215 std::unique_ptr<PrototypeAST> Proto; member in class:__anon13559::FunctionAST
219 FunctionAST(std::unique_ptr<PrototypeAST> Proto, argument
221 : Proto(std::move(Proto)), Body(std::move(Body)) {}
495 auto Proto = ParsePrototype(); local
496 if (!Proto)
500 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
508 auto Proto = llvm::make_unique<PrototypeAST>("__anon_expr", local
510 return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
774 auto &P = *Proto;
[all...]

Completed in 518 milliseconds

12345