Searched refs:function (Results 26 - 50 of 1483) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenStream.as38 function LT(k:int):Token;
47 function getToken(i:int):Token;
52 function get tokenSource():TokenSource;
59 function toStringWithRange(start:int, stop:int):String;
67 function toStringWithTokenRange(start:Token, stop:Token):String;
H A DANTLRStringStream.as64 public function ANTLRStringStream(input:String = null, lineDelimiter:String = "\n") {
76 public function reset():void {
83 public function consume():void {
94 public function LA(i:int):int {
111 public function LT(i:int):int {
119 public function get index():int {
123 public function get size():int {
127 public function mark():int {
148 public function rewindTo(m:int):void {
157 public function rewin
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeAdaptor.as50 function createWithPayload(payload:Token):Object;
55 function dupNode(treeNode:Object):Object;
58 function dupTree(tree:Object):Object;
64 function nil():Object;
80 function errorNode(input:TokenStream, start:Token, stop:Token, e:RecognitionException):Object;
83 function isNil(tree:Object):Boolean;
92 function addChild(t:Object, child:Object):void;
120 function becomeRoot(newRoot:Object, oldRoot:Object):Object;
135 function rulePostProcessing(root:Object):Object;
143 function getUniqueI
[all...]
H A DRewriteRuleTokenStream.as34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
39 public function nextNode():Object {
44 public function nextToken():Token {
51 protected override function toTree(el:Object):Object {
55 protected override function dup(el:Object):Object {
H A DCommonTree.as53 public function CommonTree(node:CommonTree = null) {
62 public static function createFromToken(t:Token):CommonTree {
68 public function get token():Token {
72 public override function dupNode():Tree {
76 public override function get isNil():Boolean {
80 public override function get type():int {
87 public override function get text():String {
94 public override function get line():int {
104 public override function get charPositionInLine():int {
114 public override function ge
[all...]
H A DTreeRuleReturnScope.as45 public override function get tree():Object {
49 public function set tree(tree:Object):void {
53 public function get values():Object {
57 public override function get start():Object {
61 public function set start(value:Object):void {
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp4 // Example function implementation from the variadic templates proposal,
7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } function in class:function
32 function(const function& other) : invoker(0) { function in class:function
37 template<typename F> function(const F& f) : invoker(0) { function in class:function
41 ~function() {
46 function& operator=(const function
[all...]
/external/chromium_org/tools/gn/
H A Dfunction_define_rule.cc17 const FunctionCallNode* function,
21 // TODO(brettw) determine if the function is built-in and throw an error if
24 *err = Err(function->function(),
34 *err = Err(function, "Duplicate rule definition.",
36 err->AppendSubErr(Err(existing_rule->function(), "Previous definition."));
40 scope->AddRule(rule_name, function);
16 RunDefineRule(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
H A Dfunction_template.cc21 " The template() function is used to declare a template. To invoke the\n"
27 " Semantically, the code in the template is stored. When a function\n"
33 " The template() function does not generate a closure, so the\n"
85 const FunctionCallNode* function,
89 // TODO(brettw) determine if the function is built-in and throw an error if
92 *err = Err(function->function(),
102 *err = Err(function, "Duplicate template definition.",
104 err->AppendSubErr(Err(existing_template->function(),
109 scope->AddTemplate(template_name, function);
84 RunTemplate(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Dfunctions_target.cc19 const FunctionCallNode* function,
23 if (!EnsureNotProcessingImport(function, scope, err) ||
24 !EnsureNotProcessingBuildConfig(function, scope, err))
27 if (!FillTargetBlockScope(scope, function, target_type, block,
35 TargetGenerator::GenerateTarget(&block_scope, function->function(), args,
51 const FunctionCallNode* function,
63 *err = Err(function->function(), "No component mode set.", helptext);
69 *err = Err(function
17 ExecuteGenericTarget(const char* target_type, Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
50 RunComponent(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
96 RunCopy(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
178 RunCustom(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
193 RunExecutable(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
223 RunGroup(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
238 RunSharedLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
253 RunStaticLibrary(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
268 RunTest(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Dfunction_process_file_template.cc55 const FunctionCallNode* function,
59 *err = Err(function->function(), "Expected two arguments");
67 Value ret(function, Value::LIST);
68 file_template.Apply(args[0], function, &ret.list_value(), err);
54 RunProcessFileTemplate(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
H A Dfunctions.cc25 void FillNeedsBlockError(const FunctionCallNode* function, Err* err) { argument
26 *err = Err(function->function(), "This function call requires a block.",
27 "The block's \"{\" must be on the same line as the function "
43 invocation->function().value().data(),
92 const FunctionCallNode* function,
99 FillNeedsBlockError(function, err);
107 if (!default_scope->NonRecursiveMergeTo(block_scope, function,
112 // The name is the single argument to the target function
91 FillTargetBlockScope(const Scope* scope, const FunctionCallNode* function, const char* target_type, const BlockNode* block, const std::vector<Value>& args, Scope* block_scope, Err* err) argument
125 EnsureSingleStringArg(const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
136 SourceDirForFunctionCall(const FunctionCallNode* function) argument
144 MakeLabelForScope(const Scope* scope, const FunctionCallNode* function, const std::string& name) argument
160 RunAssert(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
198 RunConfig(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
241 RunDeclareArgs(const FunctionCallNode* function, const std::vector<Value>& args, Scope* scope, Err* err) argument
314 RunImport(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
336 RunSetDefaults(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
378 RunSetSourcesAssignmentFilter(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
412 RunPrint(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, Err* err) argument
500 RunFunction(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
/external/stlport/test/unit/
H A Dboost_check.cpp33 #include <boost/function.hpp>
39 #include <boost/function/function_base.hpp>
45 #include <boost/function/function1.hpp>
/external/llvm/test/DebugInfo/AArch64/
H A Deh_frame.s5 .type foo,@function
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_import_prototypes.cpp26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function t
97 ir_function *function; member in class:import_prototype_visitor
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DEnumsTest.java44 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
45 assertEquals(TestEnum.CHEETO, function.apply("CHEETO"));
46 assertEquals(TestEnum.HONDA, function.apply("HONDA"));
47 assertEquals(TestEnum.POODLE, function.apply("POODLE"));
51 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
52 assertNull(function.apply("cHEETO"));
53 assertNull(function.apply("Honda"));
54 assertNull(function.apply("poodlE"));
58 Function<String, TestEnum> function = Enums.valueOfFunction(TestEnum.class);
59 assertNull(function
[all...]
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp26 * Import function prototypes from one IR tree into another.
34 * Visitor used to import function prototypes
39 * body of the function.
51 this->function = NULL;
56 assert(this->function == NULL);
58 this->function = this->symbols->get_function(ir->name);
59 if (!this->function) {
60 this->function = new(this->mem_ctx) ir_function(ir->name);
62 list->push_tail(this->function);
64 /* Add the new function t
97 ir_function *function; member in class:import_prototype_visitor
[all...]
/external/compiler-rt/lib/
H A Dint_util.c30 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
31 panic("%s:%d: abort in %s", file, line, function);
44 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
58 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
22 in_func = function(opaque: Pointer; var buf: PByte): Integer;
24 out_func = function(opaque: Pointer; buf: PByte; size: Integer): Integer;
105 function zlibVersion: PChar;
106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEn
[all...]
/external/guava/guava/src/com/google/common/base/
H A DFunctionalEquivalence.java41 private final Function<F, ? extends T> function; field in class:FunctionalEquivalence
45 Function<F, ? extends T> function, Equivalence<T> resultEquivalence) {
46 this.function = checkNotNull(function);
51 return resultEquivalence.equivalent(function.apply(a), function.apply(b));
55 return resultEquivalence.hash(function.apply(a));
64 return function.equals(that.function)
71 return Objects.hashCode(function, resultEquivalenc
44 FunctionalEquivalence( Function<F, ? extends T> function, Equivalence<T> resultEquivalence) argument
[all...]
/external/skia/tests/
H A DTestClassDef.h21 #define DEFINE_TESTCLASS_SHORT(function) \
23 class function##Class : public Test { \
25 static Test* Factory(void*) { return SkNEW(function##Class); } \
27 virtual void onGetName(SkString* name) SK_OVERRIDE { name->set(#function); } \
28 virtual void onRun(Reporter* reporter) SK_OVERRIDE { function(reporter); } \
30 static TestRegistry gReg_##function##Class(function##Class::Factory); \
33 #define DEFINE_TESTCLASS(uiname, classname, function) \
40 virtual void onRun(Reporter* reporter) SK_OVERRIDE { function(reporter); } \
45 #define DEFINE_GPUTESTCLASS(uiname, classname, function) \
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptModule.cpp55 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "module");
56 function.appendArgument(name());
58 ScriptValue resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
62 ScriptFunctionCall function(injectedScript.injectedScriptObject(), "injectModule");
63 function.appendArgument(name());
64 function.appendArgument(source());
65 resultValue = injectedScript.callFunctionWithEvalEnabled(function, hadException);
H A DInjectedScript.cpp62 ScriptFunctionCall function(injectedScriptObject(), "evaluate");
63 function.appendArgument(expression);
64 function.appendArgument(objectGroup);
65 function.appendArgument(includeCommandLineAPI);
66 function.appendArgument(returnByValue);
67 function.appendArgument(generatePreview);
68 makeEvalCall(errorString, function, result, wasThrown);
73 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn");
74 function.appendArgument(objectId);
75 function
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DByFunctionOrdering.java31 * function on those elements.
36 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.function = checkNotNull(function);
46 return ordering.compare(function.apply(left), function.apply(right));
55 return this.function.equals(that.function)
62 return Objects.hashCode(function, orderin
39 ByFunctionOrdering( Function<F, ? extends T> function, Ordering<T> ordering) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/
H A Dgl-matrix.js.erb30 (function() {
35 if(typeof define == 'function' && typeof define.amd == 'object' && define.amd) {
37 define(function() {
50 (function(exports) {

Completed in 9775 milliseconds

1234567891011>>