HomeSort by relevance Sort by last modified time
    Searched refs:formal (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/gas/config/
tc-iq2000.c 256 formal_entry *formal;
258 formal = XNEW (formal_entry);
260 sb_new (& formal->name);
261 sb_new (& formal->def);
262 sb_new (& formal->actual);
271 sb_add_string (& formal->name, tt_args);
272 sb_add_string (& formal->def, tt_dflt + 1);
275 sb_add_string (& formal->name, *arguments);
278 hash_jam (macro->formal_hash, sb_terminate (& formal->name), formal);
254 formal_entry *formal; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
ast_function.cpp 69 * formal (\c ir_variable) or actual (\c ir_rvalue)
98 const ir_variable *formal, const ir_variable *actual)
105 * to functions whose formal parameters lack such
107 * on a formal parameter, but not to have fewer."
109 if (actual->data.image_coherent && !formal->data.image_coherent) {
112 "`coherent' qualifier", formal->name);
116 if (actual->data.image_volatile && !formal->data.image_volatile) {
119 "`volatile' qualifier", formal->name);
123 if (actual->data.image_restrict && !formal->data.image_restrict) {
126 "`restrict' qualifier", formal->name)
447 ir_variable *formal = (ir_variable *) formal_node; local
    [all...]
ast.h 925 bool formal, exec_list *ir_parameters,
929 /** Is this parameter declaration part of a formal parameter list? */
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
TypeResolver.java 72 * Returns a new {@code TypeResolver} with type variables in {@code formal} mapping to types in
75 * <p>For example, if {@code formal} is a {@code TypeVariable T}, and {@code actual} is {@code
76 * String.class}, then {@code new TypeResolver().where(formal, actual)} will {@linkplain
78 * {@code Map<T, Something>} to {@code Map<String, Something>} etc. Similarly, {@code formal} and
83 * @param formal The type whose type variables or itself is mapped to other type(s). It's almost
84 * always a bug if {@code formal} isn't a type variable and contains no type variable. Make
86 * @param actual The type that the formal type variable(s) are mapped to. It can be or contain yet
90 public TypeResolver where(Type formal, Type actual) {
92 populateTypeMappings(mappings, checkNotNull(formal), checkNotNull(actual));
  /libcore/ojluni/src/main/java/java/lang/reflect/
Executable.java 219 * Returns an array of {@code Class} objects that represent the formal
230 * Returns the number of formal parameters (whether explicitly
234 * @return The number of formal parameters for the executable this
242 * Returns an array of {@code Type} objects that represent the formal
247 * <p>If a formal parameter type is a parameterized type,
251 * <p>If a formal parameter type is a type variable or a parameterized
254 * @return an array of {@code Type}s that represent the formal
506 * represent the annotations on the formal parameters, in
511 * array. If the executable has no parameters (meaning no formal,
529 * the formal and implicit parameters, in declaration order, o
    [all...]
  /prebuilts/go/darwin-x86/src/flag/
flag.go 282 formal map[string]*Flag
340 for _, flag := range sortFlags(f.formal) {
367 return f.formal[name]
373 return CommandLine.formal[name]
378 flag, ok := f.formal[name]
801 _, alreadythere := f.formal[name]
812 if f.formal == nil {
813 f.formal = make(map[string]*Flag)
815 f.formal[name] = flag
881 m := f.formal
    [all...]
  /prebuilts/go/linux-x86/src/flag/
flag.go 282 formal map[string]*Flag
340 for _, flag := range sortFlags(f.formal) {
367 return f.formal[name]
373 return CommandLine.formal[name]
378 flag, ok := f.formal[name]
801 _, alreadythere := f.formal[name]
812 if f.formal == nil {
813 f.formal = make(map[string]*Flag)
815 f.formal[name] = flag
881 m := f.formal
    [all...]
  /prebuilts/build-tools/common/bison/
glr.c 50 # The possible parse-params formal arguments preceded by a comma.
53 # formal argument declarations.
    [all...]
  /external/turbine/java/com/google/turbine/parse/
Parser.java 768 VarDecl formal = formalParam(); local
769 builder.add(formal);
770 if (formal.mods().contains(TurbineModifier.VARARGS)) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
input.go 215 // formal argument names.
325 // argsFor returns a map from formal name to actual value for this argumented macro invocation.
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
input.go 215 // formal argument names.
325 // argsFor returns a map from formal name to actual value for this argumented macro invocation.
  /prebuilts/misc/common/robolectric/3.1.1/lib/
plexus-interpolation-1.11.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.11/
plexus-interpolation-1.11.jar 
  /prebuilts/go/darwin-x86/src/reflect/
makefunc.go 31 // - returns the results as a slice of Values, one per formal result.
  /prebuilts/go/linux-x86/src/reflect/
makefunc.go 31 // - returns the results as a slice of Values, one per formal result.
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 466 parameter in a method declaration. A method receiver is the implicit formal
484 A formal parameter definition defines the annotations on a method formal
485 parameter declaration and the type of a method formal parameter, but
486 \emph{not} the receiver formal parameter.
491 \qquad \bnfcmt The integer is the zero-based index of the formal parameter in the method. \\
497 The annotations on the \bnflit{parameter} line are on the formal parameter
499 first formal parameter. The receiver parameter is not index 0. Use the
    [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.21/
plexus-interpolation-1.21.jar 
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
scope_test.go 38 // Local variables are prefixed with "var ", formal parameters with "arg ".
  /prebuilts/go/darwin-x86/src/go/types/
lookup.go 33 // the method's formal receiver base type, nor was the receiver addressable.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
scope_test.go 38 // Local variables are prefixed with "var ", formal parameters with "arg ".
  /prebuilts/go/linux-x86/src/go/types/
lookup.go 33 // the method's formal receiver base type, nor was the receiver addressable.
  /toolchain/binutils/binutils-2.27/gas/
macro.c 467 /* Allocate a new formal. */
472 formal_entry *formal; local
474 formal = XNEW (formal_entry);
476 sb_new (&formal->name);
477 sb_new (&formal->def);
478 sb_new (&formal->actual);
479 formal->next = NULL;
480 formal->type = FORMAL_OPTIONAL;
481 return formal;
484 /* Free a formal. *
506 formal_entry *formal = new_formal (); local
595 formal_entry *formal = new_formal (); local
629 formal_entry *formal; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/
velocity-1.7.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py     [all...]

Completed in 789 milliseconds

1 2 3 4