Home
last modified time | relevance | path

Searched refs:prototype (Results 1 – 25 of 171) sorted by relevance

1234567

/minix3/crypto/external/bsd/heimdal/dist/cf/
H A Dproto-compat.m44 dnl Check if the prototype of a function is compatible with another one
7 dnl AC_PROTO_COMPAT(includes, function, prototype)
10 AC_CACHE_CHECK([if $2 is compatible with system prototype],
17 AC_DEFINE(foo, 1, [define if prototype of $2 is compatible with
H A Dneed-proto.m44 dnl Check if we need the prototype for a function
11 AC_CACHE_CHECK([if $2 needs a prototype], ac_cv_func_$2_noproto,
19 [define if the system is missing a prototype for $2()])
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dparser.ml90 (* prototype
100 'Token.Kwd '(' ?? "expected '(' in prototype";
102 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
107 raise (Stream.Error "expected function name in prototype")
109 (* definition ::= 'def' prototype expression *)
120 (* external ::= 'extern' prototype *)
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml90 (* prototype
100 'Token.Kwd '(' ?? "expected '(' in prototype";
102 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
107 raise (Stream.Error "expected function name in prototype")
109 (* definition ::= 'def' prototype expression *)
120 (* external ::= 'extern' prototype *)
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dparser.ml90 (* prototype
100 'Token.Kwd '(' ?? "expected '(' in prototype";
102 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
107 raise (Stream.Error "expected function name in prototype")
109 (* definition ::= 'def' prototype expression *)
120 (* external ::= 'extern' prototype *)
/minix3/external/bsd/llvm/dist/clang/test/Parser/
H A Dmissing-selector-name.mm6 - (void) // expected-error {{expected ';' after method prototype}}
35 - (void)Meth {} // expected-error {{expected ';' after method prototype}}
42 // expected-error {{expected ';' after method prototype}}
H A Dmethod-def-in-class.m5 -(id) f0 { // expected-error {{expected ';' after method prototype}}
11 - (id) f0 { // expected-error {{expected ';' after method prototype}}
H A Dobjc-interfaces.m6 …ttribute__((deprecated)); // expected-error {{expected ';' after method prototype}} expected-error…
H A Dcheck-syntax-1.m9 … // expected-error {{expected ';' after method prototype}}
/minix3/external/bsd/llvm/dist/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h301 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype, in forPrototypePlus() argument
303 if (!prototype->isVariadic()) return All; in forPrototypePlus()
304 return RequiredArgs(prototype->getNumParams() + additional); in forPrototypePlus()
307 static RequiredArgs forPrototype(const FunctionProtoType *prototype) { in forPrototype() argument
308 return forPrototypePlus(prototype, 0); in forPrototype()
311 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) { in forPrototype() argument
312 return forPrototype(prototype.getTypePtr()); in forPrototype()
315 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype, in forPrototypePlus() argument
317 return forPrototypePlus(prototype.getTypePtr(), additional); in forPrototypePlus()
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dparser.ml137 (* prototype
156 'Token.Kwd '(' ?? "expected '(' in prototype";
158 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
165 'Token.Kwd '(' ?? "expected '(' in prototype";
167 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
180 raise (Stream.Error "expected function name in prototype")
182 (* definition ::= 'def' prototype expression *)
193 (* external ::= 'extern' prototype *)
/minix3/minix/share/beaglebone/weather/
H A Dprocessing.js13prototype={set:function(Q,S,R){if(arguments.length===1){this.set(Q.x||Q[0]||0,Q.y||Q[1]||0,Q.z||Q[…
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml126 (* prototype
136 'Token.Kwd '(' ?? "expected '(' in prototype";
138 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
143 raise (Stream.Error "expected function name in prototype")
145 (* definition ::= 'def' prototype expression *)
156 (* external ::= 'extern' prototype *)
/minix3/external/bsd/llvm/dist/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml163 (* prototype
182 'Token.Kwd '(' ?? "expected '(' in prototype";
184 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
191 'Token.Kwd '(' ?? "expected '(' in prototype";
193 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
206 raise (Stream.Error "expected function name in prototype")
208 (* definition ::= 'def' prototype expression *)
219 (* external ::= 'extern' prototype *)
/minix3/crypto/external/bsd/heimdal/dist/include/
H A Dconfig.h.w32114 /* define if prototype of gethostbyaddr is compatible with struct hostent
118 /* define if prototype of gethostbyname is compatible with struct hostent
122 /* define if prototype of getservbyname is compatible with struct servent
126 /* define if prototype of getsockname is compatible with int getsockname(int,
1272 /* define if the system is missing a prototype for asnprintf() */
1275 /* define if the system is missing a prototype for asprintf() */
1278 /* define if the system is missing a prototype for crypt() */
1281 /* define if the system is missing a prototype for daemon() */
1284 /* define if the system is missing a prototype for gethostname() */
1287 /* define if the system is missing a prototype for getusershell() */
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/SystemZ/
H A Dstrlen-01.ll8 ; Test strlen with its proper i64 prototype. It would also be valid for
25 ; Test strnlen with its proper i64 prototype.
H A Dstrlen-02.ll8 ; Test strlen with an i32-based prototype. It would also be valid for
25 ; Test strnlen with an i32-based prototype.
/minix3/external/bsd/llvm/dist/clang/test/SemaOpenCL/
H A Dwarn-missing-prototypes.cl3 void f() { } // expected-warning {{no previous prototype for function 'f'}}
/minix3/external/bsd/bind/dist/contrib/perftcpdns/
H A Dconfigure2617 /* Override any GCC internal prototype to avoid an error.
2619 builtin and then its argument prototype would still apply. */
2662 /* Override any GCC internal prototype to avoid an error.
2664 builtin and then its argument prototype would still apply. */
2774 /* Override any GCC internal prototype to avoid an error.
2776 builtin and then its argument prototype would still apply. */
2818 /* Override any GCC internal prototype to avoid an error.
2820 builtin and then its argument prototype would still apply. */
2862 /* Override any GCC internal prototype to avoid an error.
2864 builtin and then its argument prototype would still apply. */
[all …]
/minix3/external/bsd/llvm/dist/llvm/docs/tutorial/
H A DOCamlLangImpl6.rst120 definition is parsed as the "prototype" production and into the
127 (* proto - This type represents the "prototype" for a function, which captures
134 Basically, in addition to knowing a name for the prototype, we now keep
138 operators). Now that we have a way to represent the prototype for a
143 (* prototype
162 'Token.Kwd '(' ?? "expected '(' in prototype";
164 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
171 'Token.Kwd '(' ?? "expected '(' in prototype";
173 'Token.Kwd ')' ?? "expected ')' in prototype" >] ->
186 raise (Stream.Error "expected function name in prototype")
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/Linker/
H A D2005-02-12-ConstantGlobals-2.ll1 ; Test that a prototype can be marked const, and the definition is allowed
H A D2005-02-12-ConstantGlobals.ll1 ; Test that a prototype can be marked const, and the definition is allowed
H A D2003-08-28-TypeResolvesGlobal3.ll7 ; GLobal using the resolved function prototype
/minix3/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/
H A Dconfigure2098 /* Override any gcc2 internal prototype to avoid an error. */
2100 builtin and then its argument prototype would still apply. */
2145 /* Override any gcc2 internal prototype to avoid an error. */
2147 builtin and then its argument prototype would still apply. */
2192 /* Override any gcc2 internal prototype to avoid an error. */
2194 builtin and then its argument prototype would still apply. */
2245 /* Override any gcc2 internal prototype to avoid an error. */
2247 builtin and then its argument prototype would still apply. */
2301 /* Override any gcc2 internal prototype to avoid an error. */
2303 builtin and then its argument prototype would still apply. */
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/Transforms/InstCombine/
H A Dpow-2.ll7 ; Check that pow functions with the wrong prototype aren't simplified.

1234567