Searched defs:Function (Results 1 - 25 of 125) sorted by path

12345

/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/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunction.java19 * $Id: Function.java 468655 2006-10-28 07:12:06Z minchau $
41 public abstract class Function extends Expression class in inherits:Expression
101 System.out.println("Error! Function.execute should not be called!");
/external/ceres-solver/internal/ceres/
H A Dline_search.h60 class Function;
150 Function* function;
161 class Function { class in class:ceres::internal::LineSearch
163 virtual ~Function() {}
230 class LineSearchFunction : public LineSearch::Function {
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dstatetracker.py530 class Function(object): class in inherits:object
803 The current Function object.
918 function = Function(self._block_depth, is_assigned, doc, name)
/external/chromium_org/chrome/browser/resources/standalone/
H A Dstandalone_hack.js334 /* Hack to add Function.bind to older browsers that don't yet support it. From:
335 https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/bind
337 if (!Function.prototype.bind) {
344 * @return {!Function} A partially-applied form of the function bind() was
348 Function.prototype.bind = function(selfObj, var_args) {
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dnotifications_test_util.js49 var $Function = {
/external/chromium_org/gpu/command_buffer/
H A Dbuild_gles2_cmd_buffer.py1318 # extension: Function is an extension to GL and should not be exposed to
1320 # extension_flag: Function is an extension and should be enabled only when
6712 class Function(object): class in inherits:object
7191 class ImmediateFunction(Function):
7195 Function.__init__(
7219 Function.InitFunction(self)
7225 """Overridden from Function"""
7230 """Overridden from Function"""
7234 """Overridden from Function"""
7242 """Overridden from Function"""
[all...]
/external/chromium_org/mojo/nacl/generator/
H A Dinterface_dsl.py10 f = Function(self, len(self.functions), name, return_type)
18 class Function(object): class in inherits:object
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromiseResolverTest.cpp25 class Function : public ScriptFunction { class in namespace:blink::__anon10901
27 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
29 Function* self = new Function(scriptState, value);
34 Function(ScriptState* scriptState, String* value) function in class:blink::__anon10901::Function
95 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
143 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
191 promise.then(Function
[all...]
H A DScriptPromiseTest.cpp49 class Function : public ScriptFunction { class in namespace:blink::__anon10902
51 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
53 Function* self = new Function(scriptState, value);
58 Function(ScriptState* scriptState, String* value) function in class:blink::__anon10902::Function
111 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
135 promise.then(Function::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected));
152 promise.then(Function
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.h152 Function = 0x100001, enumerator in enum:blink::CSSParserValue::__anon11029
274 unit = Function;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.h36 class Function : public Expression { class in namespace:blink::XPath
51 Function* createFunction(const String& name);
52 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h1060 class Function;
1063 class Function<R()> : public FunctionBase { class in namespace:WTF
1065 Function() function in class:WTF::Function
1069 Function(PassRefPtr<FunctionImpl<R()> > impl) function in class:WTF::Function
1082 class Function<R(A1)> : public FunctionBase { class in namespace:WTF
1084 Function() function in class:WTF::Function
1088 Function(PassRefPtr<FunctionImpl<R(A1)> > impl) function in class:WTF::Function
1101 class Function<R(A1, A2)> : public FunctionBase { class in namespace:WTF
1103 Function() function in class:WTF::Function
1107 Function(PassRefPt function in class:WTF::Function
1120 class Function<R(A1, A2, A3)> : public FunctionBase { class in namespace:WTF
1122 Function() function in class:WTF::Function
1126 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3)> > impl) function in class:WTF::Function
1139 class Function<R(A1, A2, A3, A4)> : public FunctionBase { class in namespace:WTF
1141 Function() function in class:WTF::Function
1145 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4)> > impl) function in class:WTF::Function
1158 class Function<R(A1, A2, A3, A4, A5)> : public FunctionBase { class in namespace:WTF
1160 Function() function in class:WTF::Function
1164 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4, A5)> > impl) function in class:WTF::Function
1177 class Function<R(A1, A2, A3, A4, A5, A6)> : public FunctionBase { class in namespace:WTF
1179 Function() function in class:WTF::Function
1183 Function(PassRefPtr<FunctionImpl<R(A1, A2, A3, A4, A5, A6)> > impl) function in class:WTF::Function
[all...]
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dstatetracker.py652 class Function(object): class in inherits:object
957 The current Function object.
1099 function = Function(self._block_depth, is_assigned, doc, name)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp27 Function::Function(Program *p, const char *fnName, uint32_t label) function in class:nv50_ir::Function
51 Function::~Function()
70 BasicBlock::BasicBlock(Function *fn) : cfg(this), dom(this), func(fn)
91 BasicBlock::clone(ClonePolicy<Function>& pol) const
392 Function::setEntry(BasicBlock *bb)
401 Function::setExit(BasicBlock *bb)
410 Function::orderInstructions(ArrayList &result)
426 Function
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
H A Dosmesa.c1086 OSMESAproc Function; member in struct:name_function
1111 return functions[i].Function;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A DAPIspec.py100 func = Function(tmpl_node, func_node, self.is_impl,
122 class Function(object): class in inherits:object
H A Dmtypes.h834 GLenum Func; /**< Function for depth buffer compare */
1135 GLenum Function[3]; /**< Stencil function */ member in struct:gl_stencil_attrib
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType1ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType1ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType1ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType2ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType2ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType2ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType3ShadingDictionary_autogen.cpp35 SkPdfFunction SkPdfType3ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType3ShadingDictionary
36 SkPdfNativeObject* ret = get("Function", "");
44 return get("Function", "") != NULL;
H A DSkPdfType4ShadingDictionary_autogen.cpp59 SkPdfFunction SkPdfType4ShadingDictionary::Function(SkPdfNativeDoc* doc) { function in class:SkPdfType4ShadingDictionary
60 SkPdfNativeObject* ret = get("Function", "");
68 return get("Function", "") != NULL;

Completed in 6000 milliseconds

12345