HomeSort by relevance Sort by last modified time
    Searched full:proto (Results 476 - 500 of 1395) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/
descriptor.proto 35 // The messages in this file describe the definitions found in .proto files.
36 // A valid .proto file can be translated directly to a FileDescriptorProto
45 // descriptor.proto must be optimized for speed because reflection-based
49 // The protocol compiler can output a FileDescriptorSet containing the .proto
55 // Describes a complete .proto file.
226 // Sets the Java package where classes generated from this .proto will be
227 // placed. By default, the proto package is used, but this is often
228 // inappropriate because proto packages do not normally start with backwards
233 // If set, all the classes from the .proto file are wrapped in a single
236 // a .proto always translates to a single class, but you may want t
    [all...]
  /external/tcpdump/tests/
ospf-gmpls.new 1 IP (tos 0xc0, ttl 1, id 4052, offset 0, flags [none], proto: OSPF (89), length: 172) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 152
25 IP (tos 0xc0, ttl 1, id 4106, offset 0, flags [none], proto: OSPF (89), length: 172) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 152
49 IP (tos 0xc0, ttl 1, id 4160, offset 0, flags [none], proto: OSPF (89), length: 212) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 192
ospf-gmpls.out 1 IP (tos 0xc0, ttl 1, id 4052, offset 0, flags [none], proto: OSPF (89), length: 172) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 152
25 IP (tos 0xc0, ttl 1, id 4106, offset 0, flags [none], proto: OSPF (89), length: 172) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 152
49 IP (tos 0xc0, ttl 1, id 4160, offset 0, flags [none], proto: OSPF (89), length: 212) 40.35.1.2 > 224.0.0.5: OSPFv2, LS-Update, length: 192
  /external/v8/test/mjsunit/
get-own-property-descriptor.js 98 var proto = {};
99 proto[10] = 42;
102 objWithProto.prototype = proto;
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObject.h 131 static Structure* createStructure(JSGlobalData& globalData, JSValue proto)
133 return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), Base::AnonymousSlotCount, &s_info);
165 virtual bool hasInstance(ExecState* exec, JSValue value, JSValue proto);
  /packages/apps/CertInstaller/res/values-cs/
strings.xml 43 <string name="cert_too_large_error" msgid="8715414972725646285">"Instalace se nezda?ila, proto?e je soubor certifikátu p?íli? velký."</string>
44 <string name="cert_missing_error" msgid="7040527352278728220">"Instalace se nezda?ila, proto?e se soubor certifikátu nepoda?ilo najít."</string>
45 <string name="cert_read_error" msgid="7353463360652419796">"Instalace se nezda?ila, proto?e se soubor certifikátu nepoda?ilo p?e?íst."</string>
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c 376 static int gpm_available(char *proto, size_t protolen)
437 SDL_strlcpy(proto, raw_proto, protolen);
439 SDL_strlcpy(proto, repeat_proto, protolen);
441 SDL_strlcpy(proto, "msc", protolen);
605 char proto[10]; local
606 if ( gpm_available(proto, SDL_arraysize(proto)) ) {
609 if ( SDL_strcmp(proto, "msc") == 0 ) {
611 } else if ( SDL_strcmp(proto, "ps2") == 0 ) {
613 } else if ( SDL_strcmp(proto, "imps2") == 0 )
    [all...]
  /external/ipsec-tools/src/libipsec/
test-policy.c 156 int proto = 0, optname = 0; local
162 proto = IPPROTO_IP;
166 proto = IPPROTO_IPV6;
179 if (setsockopt(so, proto, optname, policy, len) < 0) {
187 if (getsockopt(so, proto, optname, getbuf, &len) < 0) {
pfkey.c 882 pfkey_send_spdadd(so, src, prefs, dst, prefd, proto, policy, policylen, seq)
885 u_int prefs, prefd, proto;
893 src, prefs, dst, prefd, proto,
908 pfkey_send_spdadd2(so, src, prefs, dst, prefd, proto, ltime, vtime,
912 u_int prefs, prefd, proto;
921 src, prefs, dst, prefd, proto,
936 pfkey_send_spdupdate(so, src, prefs, dst, prefd, proto, policy, policylen, seq)
939 u_int prefs, prefd, proto;
947 src, prefs, dst, prefd, proto,
962 pfkey_send_spdupdate2(so, src, prefs, dst, prefd, proto, ltime, vtime
    [all...]
  /external/llvm/docs/tutorial/
LangImpl2.rst 119 PrototypeAST *Proto;
122 FunctionAST(PrototypeAST *proto, ExprAST *body)
123 : Proto(proto), Body(body) {}
575 PrototypeAST *Proto = ParsePrototype();
576 if (Proto == 0) return 0;
579 return new FunctionAST(Proto, E);
604 // Make an anonymous proto.
605 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
606 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 141 PrototypeAST *Proto;
144 FunctionAST(PrototypeAST *proto, ExprAST *body)
145 : Proto(proto), Body(body) {}
320 PrototypeAST *Proto = ParsePrototype();
321 if (Proto == 0) return 0;
324 return new FunctionAST(Proto, E);
331 // Make an anonymous proto.
332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
333 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 148 PrototypeAST *Proto;
151 FunctionAST(PrototypeAST *proto, ExprAST *body)
152 : Proto(proto), Body(body) {}
327 PrototypeAST *Proto = ParsePrototype();
328 if (Proto == 0) return 0;
331 return new FunctionAST(Proto, E);
338 // Make an anonymous proto.
339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
340 return new FunctionAST(Proto, E)
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-function.js 362 function TestConstruct(proto, constructTrap) {
363 TestConstruct2(proto, constructTrap, handlerWithPrototype)
364 TestConstruct2(proto, constructTrap, handlerSansPrototype)
367 function TestConstruct2(proto, constructTrap, handler) {
372 assertSame(proto, Object.getPrototypeOf(o))
378 assertSame(proto, Object.getPrototypeOf(o))
394 function TestConstructFromCall(proto, returnsThis, callTrap) {
396 TestConstructFromCall2(proto, returnsThis, callTrap, handlerSansPrototype)
399 function TestConstructFromCall2(proto, returnsThis, callTrap, handler) {
406 // assertSame(proto, Object.getPrototypeOf(o)
    [all...]
  /external/clang/test/Index/
c-index-getCursor-test.m 23 @protocol Proto
27 @protocol SubP <Proto>
48 id <Proto> d;
83 // CHECK: [23:1 - 24:1] ObjCProtocolDecl=Proto:23:11 (Definition)
85 // CHECK: [24:11 - 25:5] ObjCProtocolDecl=Proto:23:11 (Definition)
88 // CHECK: [27:17 - 27:22] ObjCProtocolRef=Proto:23:1
137 // CHECK: [48:6 - 48:11] ObjCProtocolRef=Proto:23:1
  /external/clang/lib/Sema/
SemaLambda.cpp 694 const FunctionProtoType *Proto
699 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
702 S.Context.getFunctionType(Proto->getResultType(),
703 ArrayRef<QualType>(Proto->arg_type_begin(),
704 Proto->getNumArgs()),
768 const FunctionProtoType *Proto
772 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
775 = S.Context.getFunctionType(Proto->getResultType(),
776 ArrayRef<QualType>(Proto->arg_type_begin(),
777 Proto->getNumArgs())
    [all...]
  /external/tcpdump/
print-ip.c 378 struct protoent *proto; local
485 ND_PRINT((ndo, " (ipip-proto-4)"));
523 if ((proto = getprotobynumber(ipds->nh)) != NULL)
524 ND_PRINT((ndo, " %s", proto->p_name));
526 ND_PRINT((ndo, " ip-proto-%d", ipds->nh));
564 struct protoent *proto; local
645 (void)printf(", id %u, offset %u, flags [%s], proto %s (%u)",
699 if ((proto = getprotobynumber(ipds->ip->ip_p)) != NULL)
700 (void)printf(" %s", proto->p_name);
702 (void)printf(" ip-proto-%d", ipds->ip->ip_p)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 223 PrototypeAST *Proto;
226 FunctionAST(PrototypeAST *proto, ExprAST *body)
227 : Proto(proto), Body(body) {}
578 PrototypeAST *Proto = ParsePrototype();
579 if (Proto == 0) return 0;
582 return new FunctionAST(Proto, E);
589 // Make an anonymous proto.
590 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
591 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 319 let create_argument_allocas the_function proto =
320 let args = match proto with
336 | Ast.Function (proto, body) ->
338 let the_function = codegen_proto proto in
341 begin match proto with
354 create_argument_allocas the_function proto;
  /external/qemu/hw/
bt-hid.c 91 int proto; member in struct:bt_hid_device_s
115 s->proto = BT_HID_PROTO_REPORT;
314 *s->control->sdu_out(s->control, 1) = s->proto;
325 s->proto = parameter;
326 s->usbdev->handle_control(s->usbdev, SET_PROTOCOL, s->proto, 0, 0,
454 hid->proto = BT_HID_PROTO_REPORT;
  /external/valgrind/main/coregrind/m_demangle/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ansidecl.h 112 CONST, VOLATILE, SIGNED, PROTO, EXFUN, DEFUN, DEFUN_VOID,
197 #define PROTO(type, name, arglist) type name arglist
198 #define EXFUN(name, proto) name proto
236 #define PROTO(type, name, arglist) type name ()
237 #define EXFUN(name, proto) name()

Completed in 1022 milliseconds

<<11121314151617181920>>