HomeSort by relevance Sort by last modified time
    Searched defs:Global (Results 1 - 8 of 8) sorted by null

  /external/v8/test/mjsunit/
arguments-apply.js 37 function Global() {
41 assertEquals(0, Global().length);
42 assertEquals(1, Global(1).length);
43 assertEquals(2, Global(2)[0]);
44 assertEquals(2, Global(3, 4).length);
45 assertEquals(3, Global(3, 4)[0]);
46 assertEquals(4, Global(3, 4)[1]);
134 assertEquals(2048, Global.apply(this, array).length);
  /external/webkit/JavaScriptCore/runtime/
RegExp.h 47 bool global() const { return m_flagBits & Global; } function in class:JSC::RegExp
65 enum FlagBits { Global = 1, IgnoreCase = 2, Multiline = 4 };
  /external/webkit/WebCore/bridge/
testqtbindings.cpp 77 class Global : public JSObject {
79 virtual UString className() const { return "global"; }
96 // create interpreter w/ global object
97 Global* global = new Global(); local
100 RefPtr<Interpreter> interp = new Interpreter(global);
105 global->put(exec, Identifier("myInterface"), Instance::createRuntimeObject(Instance::QtLanguage, (void*)myObject));
134 } // end block, so that Interpreter and global get deleted
  /external/v8/src/
d8.js 46 function GetCompletions(global, last, full) {
51 var current = global;
75 // Global object holding debugger related constants and state.
102 Debug.ScopeType = { Global: 0,
413 // Global varaible used to store whether a handle was requested.
418 // Remember the handle requested in a global variable.
430 // Request a global evaluation if there is no current frame.
432 request.arguments.global = true;
893 case Debug.ScopeType.Global:
894 result += 'Global, ';
    [all...]
api.cc 36 #include "global-handles.h"
669 // function cache of the global context.
    [all...]
mirror-debugger.js 171 // A copy of the PropertyType enum from global.h
192 ScopeType = { Global: 0,
1030 * Returns whether this regular expression has the global (g) flag set.
1031 * @return {boolean} Value of the global flag
1033 RegExpMirror.prototype.global = function() {
1034 return this.value_.global;
    [all...]
  /external/webkit/WebKit/chromium/src/js/
DebuggerAgent.js 46 * Id of the inspected page global context. It is used for filtering scripts.
134 Global: 0,
589 if (scope.type === devtools.DebuggerAgent.ScopeType.Global) {
590 // Do not resolve global scope since it takes for too long.
738 * @param {number} contextId Id of the inspected page global context.
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 854 milliseconds