/external/v8/test/mjsunit/third_party/ |
D | regexp-pcre.js | 1646 assertToStringEquals("abc", res[1].exec("abc"), 0); 1647 assertToStringEquals("abc", res[1].exec("defabc"), 1); 1648 assertToStringEquals("abc", res[1].exec("Aabc"), 2); 1649 assertNull(res[1].exec("*** Failers", 3)); 1650 assertToStringEquals("abc", res[1].exec("Adefabc"), 4); 1651 assertToStringEquals("ABC", res[1].exec("ABC"), 5); 1652 assertToStringEquals("abc", res[2].exec("abc"), 6); 1653 assertNull(res[2].exec("Aabc", 7)); 1654 assertNull(res[2].exec("*** Failers", 8)); 1655 assertNull(res[2].exec("defabc", 9)); [all …]
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSCanvasRenderingContext2DCustom.cpp | 45 static JSValue toJS(ExecState* exec, CanvasStyle* style) in toJS() argument 48 return toJS(exec, style->canvasGradient()); in toJS() 50 return toJS(exec, style->canvasPattern()); in toJS() 51 return jsString(exec, style->color()); in toJS() 66 JSValue JSCanvasRenderingContext2D::strokeStyle(ExecState* exec) const in strokeStyle() 69 return toJS(exec, context->strokeStyle()); in strokeStyle() 72 void JSCanvasRenderingContext2D::setStrokeStyle(ExecState* exec, JSValue value) in setStrokeStyle() argument 76 context->setStrokeColor(ustringToString(asString(value)->value(exec))); in setStrokeStyle() 79 context->setStrokeStyle(toHTMLCanvasStyle(exec, value)); in setStrokeStyle() 82 JSValue JSCanvasRenderingContext2D::fillStyle(ExecState* exec) const in fillStyle() [all …]
|
D | JSLocationCustom.cpp | 33 static JSValue nonCachingStaticReplaceFunctionGetter(ExecState* exec, JSValue, const Identifier& pr… in nonCachingStaticReplaceFunctionGetter() argument 35 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticReplaceFunctionGetter() 38 static JSValue nonCachingStaticReloadFunctionGetter(ExecState* exec, JSValue, const Identifier& pro… in nonCachingStaticReloadFunctionGetter() argument 40 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticReloadFunctionGetter() 43 static JSValue nonCachingStaticAssignFunctionGetter(ExecState* exec, JSValue, const Identifier& pro… in nonCachingStaticAssignFunctionGetter() argument 45 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticAssignFunctionGetter() 48 bool JSLocation::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertySlotDelegate() argument 62 if (allowsAccessFromFrame(exec, frame, message)) in getOwnPropertySlotDelegate() 66 …const HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName… in getOwnPropertySlotDelegate() 89 bool JSLocation::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, … in getOwnPropertyDescriptorDelegate() argument [all …]
|
D | JSWebGLRenderingContextCustom.cpp | 82 static JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, const WebGLGetInfo& info) in toJS() argument 92 return constructArray(exec, list); in toJS() 101 return jsString(exec, info.getString()); in toJS() 105 return toJS(exec, globalObject, info.getWebGLBuffer()); in toJS() 107 return toJS(exec, globalObject, info.getWebGLFloatArray()); in toJS() 109 return toJS(exec, globalObject, info.getWebGLFramebuffer()); in toJS() 111 return toJS(exec, globalObject, info.getWebGLIntArray()); in toJS() 115 return toJS(exec, globalObject, info.getWebGLProgram()); in toJS() 117 return toJS(exec, globalObject, info.getWebGLRenderbuffer()); in toJS() 119 return toJS(exec, globalObject, info.getWebGLTexture()); in toJS() [all …]
|
D | JSDOMWindowCustom.cpp | 107 JSValue nonCachingStaticFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName) in nonCachingStaticFunctionGetter() argument 109 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticFunctionGetter() 112 static JSValue childFrameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) in childFrameGetter() argument 114 …return toJS(exec, static_cast<JSDOMWindow*>(asObject(slotBase))->impl()->frame()->tree()->child(id… in childFrameGetter() 117 static JSValue indexGetter(ExecState* exec, JSValue slotBase, unsigned index) in indexGetter() argument 119 …return toJS(exec, static_cast<JSDOMWindow*>(asObject(slotBase))->impl()->frame()->tree()->child(in… in indexGetter() 122 static JSValue namedItemGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) in namedItemGetter() argument 127 ASSERT(thisObj->allowsAccessFrom(exec)); in namedItemGetter() 133 return toJS(exec, collection->firstItem()); in namedItemGetter() 134 return toJS(exec, collection.get()); in namedItemGetter() [all …]
|
D | JSDirectoryEntryCustom.cpp | 48 JSValue JSDirectoryEntry::getFile(ExecState* exec) in getFile() argument 51 const String& path = valueToStringWithUndefinedOrNullCheck(exec, exec->argument(0)); in getFile() 52 if (exec->hadException()) in getFile() 55 int argsCount = exec->argumentCount(); in getFile() 62 …if (!exec->argument(1).isNull() && !exec->argument(1).isUndefined() && exec->argument(1).isObject(… in getFile() 63 JSObject* object = exec->argument(1).getObject(); in getFile() 65 JSValue jsCreate = object->get(exec, Identifier(exec, "create")); in getFile() 66 flags->setCreate(jsCreate.toBoolean(exec)); in getFile() 67 JSValue jsExclusive = object->get(exec, Identifier(exec, "exclusive")); in getFile() 68 flags->setExclusive(jsExclusive.toBoolean(exec)); in getFile() [all …]
|
D | JSDeviceMotionEventCustom.cpp | 38 …PassRefPtr<DeviceMotionData::Acceleration> readAccelerationArgument(JSValue value, ExecState* exec) in readAccelerationArgument() argument 44 JSObject* object = value.toObject(exec); in readAccelerationArgument() 46 JSValue xValue = object->get(exec, Identifier(exec, "x")); in readAccelerationArgument() 47 if (exec->hadException()) in readAccelerationArgument() 50 double x = xValue.toNumber(exec); in readAccelerationArgument() 51 if (exec->hadException()) in readAccelerationArgument() 54 JSValue yValue = object->get(exec, Identifier(exec, "y")); in readAccelerationArgument() 55 if (exec->hadException()) in readAccelerationArgument() 58 double y = yValue.toNumber(exec); in readAccelerationArgument() 59 if (exec->hadException()) in readAccelerationArgument() [all …]
|
D | JSHistoryCustom.cpp | 40 static JSValue nonCachingStaticBackFunctionGetter(ExecState* exec, JSValue, const Identifier& prope… in nonCachingStaticBackFunctionGetter() argument 42 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticBackFunctionGetter() 45 static JSValue nonCachingStaticForwardFunctionGetter(ExecState* exec, JSValue, const Identifier& pr… in nonCachingStaticForwardFunctionGetter() argument 47 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticForwardFunctionGetter() 50 static JSValue nonCachingStaticGoFunctionGetter(ExecState* exec, JSValue, const Identifier& propert… in nonCachingStaticGoFunctionGetter() argument 52 …return new (exec) JSFunction(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->funct… in nonCachingStaticGoFunctionGetter() 55 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, Propert… in getOwnPropertySlotDelegate() argument 63 if (allowsAccessFromFrame(exec, impl()->frame(), message)) in getOwnPropertySlotDelegate() 67 …const HashEntry* entry = JSHistoryPrototype::s_info.propHashTable(exec)->entry(exec, propertyName); in getOwnPropertySlotDelegate() 84 if (propertyName == exec->propertyNames().toString) { in getOwnPropertySlotDelegate() [all …]
|
D | JSAudioContextCustom.cpp | 42 EncodedJSValue JSC_HOST_CALL JSAudioContextConstructor::constructJSAudioContext(ExecState* exec) in constructJSAudioContext() argument 44 …JSAudioContextConstructor* jsConstructor = static_cast<JSAudioContextConstructor*>(exec->callee()); in constructJSAudioContext() 46 …return throwError(exec, createReferenceError(exec, "AudioContext constructor callee is unavailable… in constructJSAudioContext() 50 …return throwError(exec, createReferenceError(exec, "AudioContext constructor script execution cont… in constructJSAudioContext() 53 …return throwError(exec, createReferenceError(exec, "AudioContext constructor called in a script ex… in constructJSAudioContext() 59 if (!exec->argumentCount()) { in constructJSAudioContext() 65 if (exec->argumentCount() < 3) in constructJSAudioContext() 66 return throwError(exec, createSyntaxError(exec, "Not enough arguments")); in constructJSAudioContext() 68 unsigned numberOfChannels = exec->argument(0).toInt32(exec); in constructJSAudioContext() 69 unsigned numberOfFrames = exec->argument(1).toInt32(exec); in constructJSAudioContext() [all …]
|
D | JSArrayBufferViewHelper.h | 43 JSC::JSValue setWebGLArrayHelper(JSC::ExecState* exec, T* impl, T* (*conversionFunc)(JSC::JSValue)) in setWebGLArrayHelper() argument 45 if (exec->argumentCount() < 1) in setWebGLArrayHelper() 46 return JSC::throwSyntaxError(exec); in setWebGLArrayHelper() 48 T* array = (*conversionFunc)(exec->argument(0)); in setWebGLArrayHelper() 52 if (exec->argumentCount() == 2) in setWebGLArrayHelper() 53 offset = exec->argument(1).toInt32(exec); in setWebGLArrayHelper() 56 setDOMException(exec, ec); in setWebGLArrayHelper() 60 if (exec->argument(0).isObject()) { in setWebGLArrayHelper() 62 JSC::JSObject* array = JSC::asObject(exec->argument(0)); in setWebGLArrayHelper() 64 if (exec->argumentCount() == 2) in setWebGLArrayHelper() [all …]
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | ObjectPrototype.cpp | 43 ObjectPrototype::ObjectPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* stucture… in ObjectPrototype() argument 44 : JSNonFinalObject(exec->globalData(), stucture) in ObjectPrototype() 47 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 48 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 49 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 50 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 51 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 52 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 55 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() 56 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in ObjectPrototype() [all …]
|
D | ObjectConstructor.cpp | 78 ObjectConstructor::ObjectConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* stru… in ObjectConstructor() argument 79 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "Object")) in ObjectConstructor() 82 …putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, objectPrototype, D… in ObjectConstructor() 84 …putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly… in ObjectConstructor() 87 bool ObjectConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Propert… in getOwnPropertySlot() argument 89 …return getStaticFunctionSlot<JSObject>(exec, ExecState::objectConstructorTable(exec), this, proper… in getOwnPropertySlot() 92 bool ObjectConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, P… in getOwnPropertyDescriptor() argument 94 …return getStaticFunctionDescriptor<JSObject>(exec, ExecState::objectConstructorTable(exec), this, … in getOwnPropertyDescriptor() 98 static ALWAYS_INLINE JSObject* constructObject(ExecState* exec, JSGlobalObject* globalObject, const… in constructObject() argument 102 return constructEmptyObject(exec, globalObject); in constructObject() [all …]
|
D | ArrayPrototype.cpp | 72 static inline bool isNumericCompareFunction(ExecState* exec, CallType callType, const CallData& cal… in isNumericCompareFunction() argument 79 JSObject* error = executable->compileForCall(exec, callData.js.scopeChain); in isNumericCompareFunction() 124 bool ArrayPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySl… in getOwnPropertySlot() argument 126 …return getStaticFunctionSlot<JSArray>(exec, ExecState::arrayTable(exec), this, propertyName, slot); in getOwnPropertySlot() 129 bool ArrayPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, Prop… in getOwnPropertyDescriptor() argument 131 …return getStaticFunctionDescriptor<JSArray>(exec, ExecState::arrayTable(exec), this, propertyName,… in getOwnPropertyDescriptor() 137 static JSValue getProperty(ExecState* exec, JSObject* obj, unsigned index) in getProperty() argument 140 if (!obj->getPropertySlot(exec, index, slot)) in getProperty() 142 return slot.getValue(exec, index); in getProperty() 145 static void putProperty(ExecState* exec, JSObject* obj, const Identifier& propertyName, JSValue val… in putProperty() argument [all …]
|
D | JSGlobalObject.cpp | 118 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropert… in put() argument 122 if (symbolTablePut(exec->globalData(), propertyName, value)) in put() 124 JSVariableObject::put(exec, propertyName, value, slot); in put() 127 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue val… in putWithAttributes() argument 131 if (symbolTablePutWithAttributes(exec->globalData(), propertyName, value, attributes)) in putWithAttributes() 134 JSValue valueBefore = getDirect(exec->globalData(), propertyName); in putWithAttributes() 136 JSVariableObject::put(exec, propertyName, value, slot); in putWithAttributes() 138 JSValue valueAfter = getDirect(exec->globalData(), propertyName); in putWithAttributes() 140 JSObject::putWithAttributes(exec, propertyName, valueAfter, attributes); in putWithAttributes() 144 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getter… in defineGetter() argument [all …]
|
D | JSNotAnObject.cpp | 40 JSValue JSNotAnObject::toPrimitive(ExecState* exec, PreferredPrimitiveType) const in toPrimitive() argument 42 ASSERT_UNUSED(exec, exec->hadException()); in toPrimitive() 46 bool JSNotAnObject::getPrimitiveNumber(ExecState* exec, double&, JSValue&) in getPrimitiveNumber() argument 48 ASSERT_UNUSED(exec, exec->hadException()); in getPrimitiveNumber() 52 bool JSNotAnObject::toBoolean(ExecState* exec) const in toBoolean() 54 ASSERT_UNUSED(exec, exec->hadException()); in toBoolean() 58 double JSNotAnObject::toNumber(ExecState* exec) const in toNumber() 60 ASSERT_UNUSED(exec, exec->hadException()); in toNumber() 64 UString JSNotAnObject::toString(ExecState* exec) const in toString() 66 ASSERT_UNUSED(exec, exec->hadException()); in toString() [all …]
|
D | RegExpPrototype.cpp | 50 RegExpPrototype::RegExpPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structur… in RegExpPrototype() argument 51 : RegExpObject(globalObject, structure, RegExp::create(&exec->globalData(), "", NoFlags)) in RegExpPrototype() 53 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in RegExpPrototype() 54 …ctFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructure, 1, … in RegExpPrototype() 55 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in RegExpPrototype() 56 …putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructu… in RegExpPrototype() 61 EncodedJSValue JSC_HOST_CALL regExpProtoFuncTest(ExecState* exec) in regExpProtoFuncTest() argument 63 JSValue thisValue = exec->hostThisValue(); in regExpProtoFuncTest() 65 return throwVMTypeError(exec); in regExpProtoFuncTest() 66 return JSValue::encode(asRegExpObject(thisValue)->test(exec)); in regExpProtoFuncTest() [all …]
|
D | MathObject.cpp | 89 MathObject::MathObject(ExecState* exec, JSGlobalObject* globalObject, Structure* structure) in MathObject() argument 94 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "E"), jsNumber(exp(1.0)), DontDele… in MathObject() 95 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "LN2"), jsNumber(log(2.0)), DontDe… in MathObject() 96 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "LN10"), jsNumber(log(10.0)), Dont… in MathObject() 97 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "LOG2E"), jsNumber(1.0 / log(2.0))… in MathObject() 98 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "LOG10E"), jsNumber(0.434294481903… in MathObject() 99 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "PI"), jsNumber(piDouble), DontDel… in MathObject() 100 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "SQRT1_2"), jsNumber(sqrt(0.5)), D… in MathObject() 101 …putDirectWithoutTransition(exec->globalData(), Identifier(exec, "SQRT2"), jsNumber(sqrt(2.0)), Don… in MathObject() 106 bool MathObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &… in getOwnPropertySlot() argument [all …]
|
D | JSFunction.cpp | 45 EncodedJSValue JSC_HOST_CALL callHostFunctionAsConstructor(ExecState* exec) in callHostFunctionAsConstructor() argument 47 return throwVMError(exec, createNotAConstructorError(exec, exec->callee())); in callHostFunctionAsConstructor() 64 JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int len… in JSFunction() argument 66 , m_executable(exec->globalData(), this, thunk) in JSFunction() 67 , m_scopeChain(exec->globalData(), this, globalObject->globalScopeChain()) in JSFunction() 70 …putDirect(exec->globalData(), exec->globalData().propertyNames->name, jsString(exec, name.isNull()… in JSFunction() 71 …putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(length), DontDelete | ReadOnl… in JSFunction() 74 JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int len… in JSFunction() argument 76 , m_scopeChain(exec->globalData(), this, globalObject->globalScopeChain()) in JSFunction() 82 m_executable.set(exec->globalData(), this, exec->globalData().getHostFunction(func)); in JSFunction() [all …]
|
D | DatePrototype.cpp | 148 static JSCell* formatLocaleDate(ExecState* exec, DateInstance*, double timeInMilliseconds, LocaleDa… in formatLocaleDate() argument 156 UString arg0String = exec->argument(0).toString(exec); in formatLocaleDate() 157 if (arg0String == "custom" && !exec->argument(1).isUndefined()) { in formatLocaleDate() 159 customFormatString = exec->argument(1).toString(exec); in formatLocaleDate() 160 } else if (format == LocaleDateAndTime && !exec->argument(1).isUndefined()) { in formatLocaleDate() 162 timeStyle = styleFromArgString(exec->argument(1).toString(exec), timeStyle); in formatLocaleDate() 163 } else if (format != LocaleTime && !exec->argument(0).isUndefined()) in formatLocaleDate() 165 else if (format != LocaleDate && !exec->argument(0).isUndefined()) in formatLocaleDate() 194 return jsNontrivialString(exec, UString(buffer, length)); in formatLocaleDate() 199 static JSCell* formatLocaleDate(ExecState* exec, const GregorianDateTime& gdt, LocaleDateTimeFormat… in formatLocaleDate() argument [all …]
|
/external/webkit/Source/JavaScriptCore/API/ |
D | JSValueRef.cpp | 51 ExecState* exec = toJS(ctx); in JSValueGetType() local 52 APIEntryShim entryShim(exec); in JSValueGetType() 54 JSValue jsValue = toJS(exec, value); in JSValueGetType() 72 ExecState* exec = toJS(ctx); in JSValueIsUndefined() local 73 APIEntryShim entryShim(exec); in JSValueIsUndefined() 75 JSValue jsValue = toJS(exec, value); in JSValueIsUndefined() 81 ExecState* exec = toJS(ctx); in JSValueIsNull() local 82 APIEntryShim entryShim(exec); in JSValueIsNull() 84 JSValue jsValue = toJS(exec, value); in JSValueIsNull() 90 ExecState* exec = toJS(ctx); in JSValueIsBoolean() local [all …]
|
D | JSObjectRef.cpp | 78 ExecState* exec = toJS(ctx); in JSObjectMake() local 79 APIEntryShim entryShim(exec); in JSObjectMake() 82 return toRef(constructEmptyObject(exec)); in JSObjectMake() 84 …ithGlobalObject>* object = new (exec) JSCallbackObject<JSObjectWithGlobalObject>(exec, exec->lexic… in JSObjectMake() 85 if (JSObject* prototype = jsClass->prototype(exec)) in JSObjectMake() 86 object->setPrototype(exec->globalData(), prototype); in JSObjectMake() 93 ExecState* exec = toJS(ctx); in JSObjectMakeFunctionWithCallback() local 94 APIEntryShim entryShim(exec); in JSObjectMakeFunctionWithCallback() 96 … Identifier nameID = name ? name->identifier(&exec->globalData()) : Identifier(exec, "anonymous"); in JSObjectMakeFunctionWithCallback() 98 …return toRef(new (exec) JSCallbackFunction(exec, exec->lexicalGlobalObject(), callAsFunction, name… in JSObjectMakeFunctionWithCallback() [all …]
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
D | v8-regexp.js | 60 re0.exec('pyvpx'); 63 re1.exec('uggc://jjj.snprobbx.pbz/ybtva.cuc'); 69 re1.exec('uggc://jjj.snprobbx.pbz/'); 72 re1.exec('uggc://jjj.snprobbx.pbz/fepu.cuc'); 75 …/qqqq|qqq|qq|q|ZZZZ|ZZZ|ZZ|Z|llll|ll|l|uu|u|UU|U|zz|z|ff|f|gg|g|sss|ss|s|mmm|mm|m/g.exec('qqqq, ZZ… 78 re3.exec('vachggrkg QBZPbageby_cynprubyqre'); 81 re4.exec('/ZlFcnprUbzrcntr/Vaqrk-FvgrUbzr,10000000'); 88 re7.exec('528'); 91 re8.exec('VCPhygher=ra-HF'); 92 re8.exec('CersreerqPhygher=ra-HF'); [all …]
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
D | v8-regexp.js | 60 re0.exec('pyvpx'); 63 re1.exec('uggc://jjj.snprobbx.pbz/ybtva.cuc'); 69 re1.exec('uggc://jjj.snprobbx.pbz/'); 72 re1.exec('uggc://jjj.snprobbx.pbz/fepu.cuc'); 75 …/qqqq|qqq|qq|q|ZZZZ|ZZZ|ZZ|Z|llll|ll|l|uu|u|UU|U|zz|z|ff|f|gg|g|sss|ss|s|mmm|mm|m/g.exec('qqqq, ZZ… 78 re3.exec('vachggrkg QBZPbageby_cynprubyqre'); 81 re4.exec('/ZlFcnprUbzrcntr/Vaqrk-FvgrUbzr,10000000'); 88 re7.exec('528'); 91 re8.exec('VCPhygher=ra-HF'); 92 re8.exec('CersreerqPhygher=ra-HF'); [all …]
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
D | v8-regexp.js | 60 re0.exec('pyvpx'); 63 re1.exec('uggc://jjj.snprobbx.pbz/ybtva.cuc'); 69 re1.exec('uggc://jjj.snprobbx.pbz/'); 72 re1.exec('uggc://jjj.snprobbx.pbz/fepu.cuc'); 75 …/qqqq|qqq|qq|q|ZZZZ|ZZZ|ZZ|Z|llll|ll|l|uu|u|UU|U|zz|z|ff|f|gg|g|sss|ss|s|mmm|mm|m/g.exec('qqqq, ZZ… 78 re3.exec('vachggrkg QBZPbageby_cynprubyqre'); 81 re4.exec('/ZlFcnprUbzrcntr/Vaqrk-FvgrUbzr,10000000'); 88 re7.exec('528'); 91 re8.exec('VCPhygher=ra-HF'); 92 re8.exec('CersreerqPhygher=ra-HF'); [all …]
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
D | JSTestObj.cpp | 162 JSTestObjConstructor::JSTestObjConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) in JSTestObjConstructor() argument 166 …putDirect(exec->globalData(), exec->propertyNames().prototype, JSTestObjPrototype::self(exec, glob… in JSTestObjConstructor() 169 bool JSTestObjConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Prop… in getOwnPropertySlot() argument 171 …return getStaticValueSlot<JSTestObjConstructor, DOMObject>(exec, &JSTestObjConstructorTable, this,… in getOwnPropertySlot() 174 bool JSTestObjConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName… in getOwnPropertyDescriptor() argument 176 …return getStaticValueDescriptor<JSTestObjConstructor, DOMObject>(exec, &JSTestObjConstructorTable,… in getOwnPropertyDescriptor() 242 JSObject* JSTestObjPrototype::self(ExecState* exec, JSGlobalObject* globalObject) in self() argument 244 return getDOMPrototype<JSTestObj>(exec, globalObject); in self() 247 bool JSTestObjPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertySlot() argument 249 …return getStaticPropertySlot<JSTestObjPrototype, JSObject>(exec, &JSTestObjPrototypeTable, this, p… in getOwnPropertySlot() [all …]
|