Searched refs:asString (Results 1 - 25 of 32) sorted by path

12

/macosx-10.10.1/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DParser.pm47 sub asString { my $self = shift; return $self->{buffer}; } subroutine
657 return $self->asString;
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DBytecodeGenerator.cpp1061 const String& value = asString(m_codeBlock->constantRegister(src2->index()).get())->tryGetValue();
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGAbstractInterpreterInlines.h947 const StringImpl* a = asString(leftConst)->tryGetValueImpl();
948 const StringImpl* b = asString(rightConst)->tryGetValueImpl();
986 const StringImpl* a = asString(left)->tryGetValueImpl();
987 const StringImpl* b = asString(right)->tryGetValueImpl();
H A DDFGLazyJSValue.cpp54 JSString* jsString = asString(value);
70 JSString* jsString = asString(value);
H A DDFGOperations.cpp257 return JSValue::encode(jsString(exec, asString(op1), op2.toString(exec)));
273 if (isJSString(base) && asString(base)->canGetIndex(index))
274 return JSValue::encode(asString(base)->getIndex(exec, index));
300 if (JSValue result = base->fastGetOwnProperty(vm, structure, asString(property)->value(exec)))
330 if (JSValue result = base->fastGetOwnProperty(vm, structure, asString(property)->value(exec)))
566 JSString* input = argument->isString() ? asString(argument) : asObject(argument)->toString(exec);
581 JSString* input = argument->isString() ? asString(argument) : asObject(argument)->toString(exec);
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScript.cpp104 if (!resultValue->asString(errorString))
H A DInjectedScriptBase.cpp132 result->asString(errorString);
H A DInspectorBackendDispatcher.cpp112 if (!methodValue->asString(&method)) {
226 static bool asString(InspectorValue* value, String* output) { return value->asString(output); } function in struct:Inspector::AsMethodBridges
244 return getPropertyValue<String, String, String>(object, name, valueFound, protocolErrors, "", AsMethodBridges::asString, "String");
H A DInspectorValues.cpp528 bool InspectorValue::asString(String*) const function in class:Inspector::InspectorValue
688 bool InspectorString::asString(String* output) const function in class:Inspector::InspectorString
735 return value->asString(output);
H A DInspectorValues.h77 virtual bool asString(String* output) const;
131 virtual bool asString(String* output) const override;
/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DInterpreter.cpp103 String programSource = asString(program)->value(callFrame);
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITArithmetic.cpp398 addJump(branch32(commute(condition), regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
407 addJump(branch32(condition, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
H A DJITArithmetic32_64.cpp92 addJump(branch32(commute(condition), regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
101 addJump(branch32(condition, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
H A DJITInlines.h678 return m_codeBlock->isConstantRegisterIndex(src) && getConstantOperand(src).isString() && asString(getConstantOperand(src).asCell())->length() == 1;
H A DJITOperations.cpp911 bool result = WTF::equal(*asString(left)->value(exec).impl(), *asString(right)->value(exec).impl());
1424 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, asString(subscript)->value(exec)))
1431 if (isJSString(baseValue) && asString(baseValue)->canGetIndex(i)) {
1433 return asString(baseValue)->getIndex(exec, i);
1513 if (isJSString(baseValue) && asString(baseValue)->canGetIndex(i))
1514 result = asString(baseValue)->getIndex(exec, i);
1625 StringImpl* value = asString(key)->value(exec).impl();
1662 StringImpl* value = asString(key)->value(exec).impl();
/macosx-10.10.1/JavaScriptCore-7600.1.17/llint/
H A DLLIntSlowPaths.cpp724 if (JSValue result = baseValue.asCell()->fastGetOwnProperty(vm, structure, asString(subscript)->value(exec)))
731 if (isJSString(baseValue) && asString(baseValue)->canGetIndex(i))
732 return asString(baseValue)->getIndex(exec, i);
974 JSString* string = asString(scrutinee);
992 pc += codeBlock->stringSwitchJumpTable(pc[1].u.operand).offsetForValue(asString(scrutinee)->value(exec).impl(), defaultOffset);
1306 JSString* property = asString(LLINT_OP(1).jsValue());
/macosx-10.10.1/JavaScriptCore-7600.1.17/replay/
H A DEncodedValue.cpp173 bool castSucceeded = m_value->asString(&result);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DCommonSlowPaths.cpp359 RETURN(jsString(exec, asString(v1), v2.toString(exec)));
H A DInternalFunction.cpp52 return asString(getDirect(exec->vm(), exec->vm().propertyNames->name))->tryGetValue();
60 return asString(displayName)->tryGetValue();
H A DJSCJSValueInlines.h689 if (isCell() && asString(*this)->getStringPropertySlot(exec, propertyName, slot))
712 if (isCell() && asString(*this)->getStringPropertySlot(exec, propertyName, slot))
767 return WTF::equal(*asString(v1)->value(exec).impl(), *asString(v2)->value(exec).impl());
829 return WTF::equal(*asString(v1)->value(exec).impl(), *asString(v2)->value(exec).impl());
867 const StringImpl* v1String = asString(v1)->tryGetValueImpl();
868 const StringImpl* v2String = asString(v2)->tryGetValueImpl();
H A DJSFunction.cpp151 return asString(displayName)->tryGetValue();
H A DJSPropertyNameIterator.cpp100 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
H A DJSString.h355 JSString* asString(JSValue);
357 inline JSString* asString(JSValue value) function in namespace:JSC
H A DMapData.cpp58 auto iter = m_stringKeyedTable.find(asString(key.value)->value(callFrame).impl());
109 return add(callFrame, m_stringKeyedTable, asString(key.value)->value(callFrame).impl(), key);
126 auto iter = m_stringKeyedTable.find(asString(key.value)->value(callFrame).impl());
H A DOperations.cpp50 return jsString(callFrame, asString(p1), p2.toString(callFrame));
53 return jsString(callFrame, p1.toString(callFrame), asString(p2));

Completed in 346 milliseconds

12