Searched refs:func (Results 1 - 25 of 1961) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
57 if (func == null)
58 throw new ArgumentNullException ("func");
64 public static void SourceAndFunc (object source, object func) argument
68 if (func == null)
69 throw new ArgumentNullException ("func");
H A DEnumerableExtensions.cs57 Func<TAggregate, TElement, TAggregate> func, Func<TAggregate, long, TResult> result)
66 total = func(total, element);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammar.g355 | func NEWLINE -> func
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
62 functionDefinitions.Add($func.tree);
H A DDebugGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
262 // BuildOptions\\DebugGrammar.g3:53:0: stat : ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->);
290 RewriteRuleSubtreeStream stream_func=new RewriteRuleSubtreeStream(adaptor,"rule func");
303 // BuildOptions\\DebugGrammar.g3:53:9: ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->)
434 // BuildOptions\\DebugGrammar.g3:55:9: func NEWLINE
438 func8=func();
451 // elements: func
461 // 55:41: -> func
550 private DebugGrammarParser.func_return func( ) method in class:DebugGrammarParser
[all...]
H A DProfileGrammar.g355 | func NEWLINE -> func
59 func: ID '(' formalPar ')' '=' expr -> ^(FUNC ID formalPar expr)
62 functionDefinitions.Add($func.tree);
H A DProfileGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
266 // BuildOptions\\ProfileGrammar.g3:53:0: stat : ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->);
294 RewriteRuleSubtreeStream stream_func=new RewriteRuleSubtreeStream(adaptor,"rule func");
307 // BuildOptions\\ProfileGrammar.g3:53:9: ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->)
438 // BuildOptions\\ProfileGrammar.g3:55:9: func NEWLINE
442 func8=func();
455 // elements: func
465 // 55:41: -> func
554 private ProfileGrammarParser.func_return func( ) method in class:ProfileGrammarParser
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java58 * @param func The function currently being visited.
62 public boolean visitFunction(ExpressionOwner owner, Function func) argument
64 if (func instanceof FuncExtFunction)
66 String namespace = ((FuncExtFunction)func).getNamespace();
69 else if (func instanceof FuncExtFunctionAvailable)
71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString();
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java103 Class func = org.apache.xalan.templates.FuncDocument.class;
104 m_funcTable.installFunction("document", func);
106 // func = new org.apache.xalan.templates.FuncKey();
107 // FunctionTable.installFunction("key", func);
108 func = org.apache.xalan.templates.FuncFormatNumb.class;
110 m_funcTable.installFunction("format-number", func);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func) argument
62 if((func instanceof FuncCurrent) ||
63 (func instanceof FuncExtFunction))
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java144 * @param func The function reference object.
147 public boolean visitFunction(ExpressionOwner owner, Function func) argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java61 * @param func The function reference object.
64 public boolean visitFunction(ExpressionOwner owner, Function func) argument
66 if((func instanceof FuncPosition) ||
67 (func instanceof FuncLast))
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java1031 Function func = m_functionTable.getFunction(funcID);
1038 if (func instanceof FuncExtFunctionAvailable)
1039 ((FuncExtFunctionAvailable) func).setFunctionTable(m_functionTable);
1041 func.postCompileStep(this);
1052 func.setArg(compile(p), i);
1055 func.checkNumberArgs(i);
1067 return func;
H A DFunctionTable.java360 * @param func A Implementation of an XPath Function object.
363 public int installFunction(String name, Class func) argument
377 m_functions_customer[funcIndex - NUM_BUILT_IN_FUNCS] = func;
383 m_functions_customer[funcIndex-NUM_BUILT_IN_FUNCS] = func;
/external/bison/build-aux/snippet/
H A Dc++defs.h87 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
94 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
95 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
99 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
100 declares the system function, named func, with the given prototype,
106 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
107 _GL_EXTERN_C rettype func parameters_and_attributes
109 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
110 declares a C++ alias called GNULIB_NAMESPACE::func
115 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
/external/bison/darwin-lib/
H A Dc++defs.h71 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
78 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
79 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
83 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
84 declares the system function, named func, with the given prototype,
90 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
91 _GL_EXTERN_C rettype func parameters_and_attributes
93 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
94 declares a C++ alias called GNULIB_NAMESPACE::func
99 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dfcntl.h148 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
155 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
156 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
160 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
161 declares the system function, named func, with the given prototype,
167 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
168 _GL_EXTERN_C rettype func parameters_and_attributes
170 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
171 declares a C++ alias called GNULIB_NAMESPACE::func
176 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dinttypes.h131 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
138 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
139 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
143 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
144 declares the system function, named func, with the given prototype,
150 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
151 _GL_EXTERN_C rettype func parameters_and_attributes
153 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
154 declares a C++ alias called GNULIB_NAMESPACE::func
159 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dmath.h108 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
115 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
116 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
120 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
121 declares the system function, named func, with the given prototype,
127 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
128 _GL_EXTERN_C rettype func parameters_and_attributes
130 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
131 declares a C++ alias called GNULIB_NAMESPACE::func
136 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dsignal.h139 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
146 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
147 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
151 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
152 declares the system function, named func, with the given prototype,
158 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
159 _GL_EXTERN_C rettype func parameters_and_attributes
161 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
162 declares a C++ alias called GNULIB_NAMESPACE::func
167 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dspawn.h146 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
153 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
154 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
158 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
159 declares the system function, named func, with the given prototype,
165 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
166 _GL_EXTERN_C rettype func parameters_and_attributes
168 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
169 declares a C++ alias called GNULIB_NAMESPACE::func
174 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dstdio.h194 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
201 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
202 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
206 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
207 declares the system function, named func, with the given prototype,
213 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
214 _GL_EXTERN_C rettype func parameters_and_attributes
216 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
217 declares a C++ alias called GNULIB_NAMESPACE::func
222 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dstdlib.h189 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
196 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
197 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
201 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
202 declares the system function, named func, with the given prototype,
208 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
209 _GL_EXTERN_C rettype func parameters_and_attributes
211 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
212 declares a C++ alias called GNULIB_NAMESPACE::func
217 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
H A Dstring.h126 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
133 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
134 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
138 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
139 declares the system function, named func, with the given prototype,
145 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
146 _GL_EXTERN_C rettype func parameters_and_attributes
148 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
149 declares a C++ alias called GNULIB_NAMESPACE::func
154 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]

Completed in 6215 milliseconds

1234567891011>>