HomeSort by relevance Sort by last modified time
    Searched refs:asRegExpObject (Results 1 - 4 of 4) sorted by null

  /external/webkit/JavaScriptCore/runtime/
RegExpPrototype.cpp 65 return asRegExpObject(thisValue)->test(exec, args);
72 return asRegExpObject(thisValue)->exec(exec, args);
87 regExp = asRegExpObject(arg0)->regExp();
97 asRegExpObject(thisValue)->setRegExp(regExp.release());
98 asRegExpObject(thisValue)->setLastIndex(0);
112 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().global).toBoolean(exec))
114 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().ignoreCase).toBoolean(exec))
116 if (asRegExpObject(thisValue)->get(exec, exec->propertyNames().multiline).toBoolean(exec))
118 UString source = asRegExpObject(thisValue)->get(exec, exec->propertyNames().source).toString(exec);
RegExpObject.cpp 82 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->global());
87 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->ignoreCase());
92 return jsBoolean(asRegExpObject(slot.slotBase())->regExp()->multiline());
97 return jsString(exec, asRegExpObject(slot.slotBase())->regExp()->pattern());
102 return jsNumber(exec, asRegExpObject(slot.slotBase())->lastIndex());
112 asRegExpObject(baseObject)->setLastIndex(value.toInteger(exec));
129 return asRegExpObject(function)->exec(exec, args);
RegExpObject.h 77 RegExpObject* asRegExpObject(JSValue);
79 inline RegExpObject* asRegExpObject(JSValue value)
StringPrototype.cpp 326 RegExp* reg = asRegExpObject(pattern)->regExp();
579 reg = asRegExpObject(a0)->regExp();
629 reg = asRegExpObject(a0)->regExp();
681 RegExp* reg = asRegExpObject(a0)->regExp();
    [all...]

Completed in 1088 milliseconds