HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 26 - 50 of 102) sorted by null

12 3 4 5

  /external/chromium_org/mojo/nacl/generator/
interface_dsl.py 10 f = Function(self, len(self.functions), name, return_type)
18 class Function(object):
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseResolverTest.cpp 25 class Function : public ScriptFunction {
27 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
29 Function* self = new Function(scriptState, value);
34 Function(ScriptState* scriptState, String* value)
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::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected) (…)
    [all...]
ScriptPromiseTest.cpp 49 class Function : public ScriptFunction {
51 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, String* value)
53 Function* self = new Function(scriptState, value);
58 Function(ScriptState* scriptState, String* value)
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::createFunction(scriptState(), &onFulfilled), Function::createFunction(scriptState(), &onRejected) (…)
    [all...]
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 29 namespace Function {
48 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
50 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
52 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
54 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
56 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
58 expected-note {{suffix with parentheses to turn this into a function call}}
59 b = f6; // expected-warning {{address of function 'f6' will always evaluate to 'true'}} \
  /bootable/recovery/edify/
expr.h 57 typedef Value* (*Function)(const char* name, State* state,
61 Function fn;
68 // Take one of the Expr*s passed to the function as an argument,
73 // Take one of the Expr*s passed to the function as an argument,
76 // a convenience function for older functions that want to deal only
84 // ("concat" is also available as a builtin function, to concatenate
95 // Convenience function for building expressions with a fixed number
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
106 // NULL from a function).
114 Function fn
    [all...]
  /external/chromium_org/chrome/browser/resources/standalone/
standalone_hack.js 32 * We create this object by applying an anonymous function so that we can have
35 chrome.send = (function() {
64 * Invoke the getAppsCallback function with a snapshot of the current app
67 function sendGetUsersCallback()
80 * @param {function(Object): boolean} predicate The function to invoke on
84 function indexOfPred(array, predicate) {
99 function getUserIndex(name) {
100 var i = indexOfPred(apps, function(e) { return e.name === name;});
112 function getUser(name)
    [all...]
  /external/chromium_org/v8/tools/
check-name-clashes.py 12 FUNCTION = re.compile("^RUNTIME_FUNCTION\(Runtime_(\w+)")
29 class Function(object):
114 function = None
130 match = FUNCTION.match(line)
132 function = Function(match)
134 if function is None: continue
137 if function is not None:
138 functions.append(function)
139 function = Non
    [all...]
  /external/deqp/executor/
xeCallQueue.hpp 23 * \brief Cross-thread function call dispatcher.
48 typedef void (*Function) (CallReader data);
55 Function getFunction (void) const { return m_func; }
56 void setFunction (Function func) { m_func = func; }
65 Function m_func;
86 CallWriter (CallQueue* queue, Call::Function function);
  /external/lldb/include/lldb/Symbol/
Function.h 1 //===-- Function.h ----------------------------------------------*- C++ -*-===//
24 /// @class FunctionInfo Function.h "lldb/Symbol/Function.h"
25 /// @brief A class that contains generic function information.
27 /// This provides generic function information that gets resused between
28 /// inline functions and function types.
34 /// Construct with the function method name and optional declaration
38 /// A C string name for the method name for this function. This
44 /// function was declared. This can be NULL.
49 /// Construct with the function method name and optional declaratio
    [all...]
  /external/llvm/include/llvm/MC/
MCWin64EH.h 66 Function(nullptr), PrologEnd(nullptr), Symbol(nullptr),
72 const MCSymbol *Function;
  /external/ceres-solver/internal/ceres/
line_search.h 53 // While finding the exact minimum of a one dimensionl function is
60 class Function;
73 function(NULL) {}
76 // function.
85 // which decreases the value of the objective function
148 // The one dimensional function that the line search algorithm
150 Function* function; member in struct:ceres::internal::LineSearch::Options
153 // An object used by the line search to access the function values
154 // and gradient of the one dimensional function being optimized
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 27 Function::Function(Program *p, const char *fnName, uint32_t label)
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::buildLiveSets(
    [all...]
  /external/lldb/source/Symbol/
Function.cpp 1 //===-- Function.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Function.h"
25 // Basic function information is contained in the FunctionInfo class.
196 Function::Function
220 Function::Function
245 Function::~Function()
250 Function::GetStartLineSourceInfo (FileSpec &source_file, uint32_t &line_no
    [all...]
  /external/llvm/lib/IR/
Function.cpp 1 //===-- Function.cpp - Implement the Global object classes ----------------===//
10 // This file implements the Function class for the IR library.
14 #include "llvm/IR/Function.h"
36 template class llvm::SymbolTableListTraits<Argument, Function>;
37 template class llvm::SymbolTableListTraits<BasicBlock, Function>;
45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
49 // Make sure that we get added to a function
57 void Argument::setParent(Function *parent) {
66 /// function. For example in "void foo(int a, float b)" a is 0 and b is 1.
68 const Function *F = getParent()
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_bb.cpp 27 Function::Function(Program *p, const char *fnName, uint32_t label)
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::buildLiveSets(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 37 // Functional.h provides a very simple way to bind a function pointer and arguments together into a function object
40 // A FunctionWrapper is a class template that can wrap a function pointer or a member function pointer and
41 // provide a unified interface for calling that function.
52 explicit FunctionWrapper(R(*function)())
53 : m_function(function)
71 explicit FunctionWrapper(R(*function)(P1))
72 : m_function(function)
90 explicit FunctionWrapper(R(*function)(P1, P2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspec.py 90 elif node.name == "function":
100 func = Function(tmpl_node, func_node, self.is_impl,
108 """Find a matching function in the API."""
122 class Function(object):
298 """A parameter of a function."""
350 """Validate the checker against a function."""
535 # the described param is not in the final function
559 """Validate a description against certain function."""
  /external/chromium_org/tools/json_schema_compiler/
dart_generator.py 9 from model import Function, PropertyType
36 # self._types, make a _FindType(self, type_) function that looks at
116 # Check whether this type has function members. If it does, don't allow
172 else self._GenerateFunction(prop.type_.function))
276 """Returns the Code object for the given function.
295 """Given a function (assumed to be a callback), generates the proxied
296 version of this function, which calls |callback_name| if it is defined.
351 """Given a function, returns True if this function's callback needs to be
354 Function callbacks need to be proxied if they have at least on
    [all...]
  /external/clang/test/Misc/
integer-literal-printing.cpp 5 template <short T> void Function1(Type1<T>& x) {} // expected-note{{candidate function [with T = -42] not viable: expects an l-value for 1st argument}}
8 template <unsigned short T> void Function2(Type2<T>& x) {} // expected-note{{candidate function [with T = 42] not viable: expects an l-value for 1st argument}}
67 void Function() {
68 Function1(Type1<-42>()); // expected-error{{no matching function for call to 'Function1'}}
69 Function2(Type2<42>()); // expected-error{{no matching function for call to 'Function2'}}
  /external/deqp/framework/randomshaders/
rsgShader.hpp 39 class Function
42 Function (void);
43 Function (const char* name);
44 ~Function (void);
100 Function& getMain (void) { return m_mainFunction; }
101 Function& allocateFunction (void);
126 std::vector<Function*> m_functions;
127 Function m_mainFunction;
  /external/libedit/src/editline/
readline.h 40 typedef int Function(const char *, int);
65 Function *function; member in struct:_keymap_entry
111 extern Function *rl_completion_entry_function;
120 extern Function *rl_pre_input_hook;
121 extern Function *rl_startup_hook;
197 int rl_add_defun(const char *, Function *, int);
  /external/mesa3d/src/mesa/main/
APIspec.py 90 elif node.name == "function":
100 func = Function(tmpl_node, func_node, self.is_impl,
108 """Find a matching function in the API."""
122 class Function(object):
298 """A parameter of a function."""
350 """Validate the checker against a function."""
535 # the described param is not in the final function
559 """Validate a description against certain function."""
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.h 147 CSSParserFunction* function; member in union:blink::CSSParserValue::__anon15653
152 Function = 0x100001,
270 inline void CSSParserValue::setFromFunction(CSSParserFunction* function)
273 this->function = function;
274 unit = Function;
  /external/chromium_org/third_party/webrtc/base/
virtualsocketserver.h 103 typedef std::vector<Point> Function;
105 static Function* CreateDistribution(uint32 mean, uint32 stddev,
174 // Basic operations on functions. Those that return a function also take
175 // ownership of the function given (and hence, may modify or delete it).
176 static Function* Accumulate(Function* f);
177 static Function* Invert(Function* f);
178 static Function* Resample(Function* f, double x1, double x2, uint32 samples)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 96 class Function(Node,Parser):
305 node = Function()
309 self.parse_error(lexer ,"function returns a function" )
311 self.parse_error(lexer ,"function returns an array" )
649 # ! ahhh, function body !!!
651 # "WARNING: function body found at line %s\n"%lexer.lno )

Completed in 1651 milliseconds

12 3 4 5