HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 701 - 725 of 897) sorted by null

<<21222324252627282930>>

  /external/v8/src/
d8-posix.cc 161 // bail out of the System() function early. If you don't ever do a waitpid on
314 const char* source = "(function(a, b) { return a + b; })";
316 Handle<Function> cons_function(Function::Cast(*cons_as_obj));
457 // Implementation of the system() function (see d8.h for details).
502 // Parent process. Ensure that we clean up if we exit this function early.
  /external/v8/src/ia32/
macro-assembler-ia32.h 60 // responsibility of the caller to never invoke such function on the
136 // Find the function context up the context chain.
139 // Load the global function with the given index.
140 void LoadGlobalFunction(int index, Register function);
142 // Load the initial map from the global function. The registers
143 // function and map can be the same.
144 void LoadGlobalFunctionInitialMap(Register function, Register map);
158 // Invoke the JavaScript function code by either calling or jumping.
172 // Invoke the JavaScript function in the given register. Changes the
173 // current context to the context in the function before invoking
    [all...]
  /external/v8/test/cctest/
test-accessors.cc 43 using ::v8::Function;
61 Local<Function> fun = fun_templ->GetFunction();
182 "obj.__defineGetter__('x', function() { return false; });"
187 "obj.__defineSetter__('x', function() { setter_called = true; });"
194 "obj2.__defineGetter__('x', function() { return false; });"
201 "obj2.__defineSetter__('x', function() { setter_called = true; });"
418 "function foo() {"
  /external/v8/test/mjsunit/
function-bind.js 28 // Tests the Function.prototype.bind (ES 15.3.4.5) method.
31 function foo(x, y, z) {
63 function f_bound_this(z) {
142 function bar(x, y, z) {
  /external/v8/test/mjsunit/third_party/
string-trim.js 35 // testing Function's *.call() and *.apply() methods.
100 ({toString:function(){return 'wibble'}})
  /external/v8/tools/
logreader.js 40 function LogReader(dispatchTable) {
65 LogReader.prototype.printError = function(str) {
75 LogReader.prototype.processLogChunk = function(chunk) {
85 LogReader.prototype.processLogLine = function(line) {
94 * @param {number} func JS Function.
98 LogReader.prototype.processStack = function(pc, func, stack) {
123 LogReader.prototype.skipDispatch = function(dispatch) {
134 LogReader.prototype.dispatchLogRow_ = function(fields) {
152 } else if (typeof parser == 'function') {
172 LogReader.prototype.processLog_ = function(lines)
    [all...]
profile.js 31 * and calculating function execution times.
35 function Profile() {
43 * Returns whether a function with the specified name must be skipped.
46 * @param {string} name Function name.
48 Profile.prototype.skipThisFunction = function(name) {
79 * Called whenever the specified operation has failed finding a function
90 Profile.prototype.handleUnknownCode = function(
102 Profile.prototype.addLibrary = function(
118 Profile.prototype.addStaticCode = function(
135 Profile.prototype.addCode = function(
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 417 v8::Handle<v8::Function> windowConstructor = V8DOMWrapper::getConstructor(&V8DOMWindow::info, getHiddenObjectPrototype(context));
634 v8::Local<v8::Function> function = V8DOMWrapper::getConstructor(type, getHiddenObjectPrototype(m_context)); local
635 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
V8NPObject.cpp 213 // FunctionTemplate caches function for each context.
214 v8::Local<v8::Function> v8Function = functionTemplate->GetFunction();
377 // pointer, and field 1 is the type. There should be an api function that returns unused type id. The same Wrapper type
387 v8::Handle<v8::Function> v8Function = npObjectDesc->GetFunction();
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 222 Local<Function> write = Local<Function>::Cast(write_v);
requests.cpp 279 // Get the onRilRequest Function
282 v8::Handle<v8::Function> onRilRequestFunction =
283 v8::Handle<v8::Function>::Cast(onRilRequestFunctionValue);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 36 import org.apache.xpath.functions.Function;
54 * The function table for xpath build-in functions
59 * initial the function table
77 * This function is used to fixup variables from QNames to stack frame
  /external/clang/include/clang/Sema/
DeclSpec.h 202 /// type-qualifiers, and function-specifiers.
304 // function-specifier
488 // function-specifier
767 /// \brief A conversion function name, e.g., operator int.
807 /// conversion function names.
873 /// operator-function-id.
    [all...]
Overload.h 39 OR_No_Viable_Function, ///< No viable function found.
41 OR_Deleted ///< Succeeded, but refers to a deleted function.
61 ICK_Function_To_Pointer, ///< Function-to-pointer (C++ 4.3)
126 /// function-to-pointer conversion.
163 /// \brief Whether we're binding to a function lvalue.
170 /// non-static member function without a ref-qualifier.
235 /// a conversion function (12.3.2), the initial standard
237 /// object parameter of the conversion function.
249 /// conversion function was resolved from an overloaded set having
257 /// ConversionFunction - The function that will perform th
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.h 63 // beginning of a function. This is used to pop unbalanced regions at
64 // the end of a function.
167 /// EmitFunctionStart - Emit a call to llvm.dbg.function.start to indicate
168 /// start of a new function.
170 llvm::Function *Fn, CGBuilderTy &Builder);
172 /// EmitFunctionEnd - Constructs the debug code for exiting a function.
206 /// invocation function.
263 /// getFunctionName - Get function name for the given FunctionDecl. If the
TargetInfo.cpp 10 // These classes wrap the information about a call or function
479 // member function pointer it is ok.
772 // Get the LLVM function.
773 llvm::Function *Fn = cast<llvm::Function>(GV);
    [all...]
  /external/llvm/lib/Analysis/
LoopPass.cpp 26 /// PrintLoopPass - Print a Function corresponding to a Loop.
194 /// whether any of the passes modifies the function, and if so, return true.
195 bool LPPassManager::runOnFunction(Function &F) {
255 // is a function pass and it's really expensive to verify every
256 // loop in the function every time. That level of checking can be
  /external/llvm/lib/CodeGen/
CodePlacementOpt.cpp 366 // Do optimization for each loop in the function.
378 const Function *F = MF.getFunction();
  /external/skia/src/animator/
SkMemberInfo.h 134 k_##_member##Function
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 192 %token <string> FUNCTION
277 %type <value> function
1160 | ':' FUNCTION maybe_space NTH maybe_space ')' {
1171 | ':' FUNCTION maybe_space maybe_unary_operator INTEGER maybe_space ')' {
1182 | ':' FUNCTION maybe_space IDENT maybe_space ')' {
1464 function: label
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 16 ; * Function: omxVCM4P2_PredictReconCoefIntra
20 ; * to the function call, prediction direction (predDir) should be selected
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageParser.java 23 import com.android.glesv2debugger.DebuggerMessage.Message.Function;
139 Function function = Function.valueOf(t[t.length - 1]); local
140 builder.setFunction(function);
141 switch (function) {
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 100 function jstProcess(context, template, opt_debugging) {
129 function JstProcessor() {
206 JstProcessor.prepareTemplate_ = function(template) {
208 domTraverseElements(template, function(node) {
244 JstProcessor.prepareNode_ = function(node) {
318 * Runs the given function in our state machine.
320 * It's informative to view the set of all function calls as a tree:
324 * - pre-order function calls are downward edges (recursion into call).
325 * - post-order function calls are upward edges (return from call).
333 * @param {Function} f The first function to run.
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 100 function jstProcess(context, template, opt_debugging) {
129 function JstProcessor() {
206 JstProcessor.prepareTemplate_ = function(template) {
208 domTraverseElements(template, function(node) {
244 JstProcessor.prepareNode_ = function(node) {
318 * Runs the given function in our state machine.
320 * It's informative to view the set of all function calls as a tree:
324 * - pre-order function calls are downward edges (recursion into call).
325 * - post-order function calls are upward edges (return from call).
333 * @param {Function} f The first function to run
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 422 case Function:
683 /// a friend function the parent lookup context is the lexical context, which
711 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) {
712 if (Function->getDescribedFunctionTemplate())
715 // Friend function declarations are dependent if their *lexical*
    [all...]

Completed in 1541 milliseconds

<<21222324252627282930>>