• Home
  • Raw
  • Download

Lines Matching refs:Factory

57 Handle<T> Factory::New(Handle<Map> map, AllocationSpace space) {  in New()
66 Handle<T> Factory::New(Handle<Map> map, in New()
76 Handle<HeapObject> Factory::NewFillerObject(int size, in NewFillerObject()
86 Handle<Box> Factory::NewBox(Handle<Object> value) { in NewBox()
93 Handle<PrototypeInfo> Factory::NewPrototypeInfo() { in NewPrototypeInfo()
105 Factory::NewSloppyBlockWithEvalContextExtension( in NewSloppyBlockWithEvalContextExtension()
116 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string, in NewOddball()
126 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) { in NewFixedArray()
135 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size, in NewFixedArrayWithHoles()
147 Handle<FixedArray> Factory::NewUninitializedFixedArray(int size) { in NewUninitializedFixedArray()
155 Handle<FixedArrayBase> Factory::NewFixedDoubleArray(int size, in NewFixedDoubleArray()
165 Handle<FixedArrayBase> Factory::NewFixedDoubleArrayWithHoles( in NewFixedDoubleArrayWithHoles()
181 Handle<OrderedHashSet> Factory::NewOrderedHashSet() { in NewOrderedHashSet()
186 Handle<OrderedHashMap> Factory::NewOrderedHashMap() { in NewOrderedHashMap()
191 Handle<AccessorPair> Factory::NewAccessorPair() { in NewAccessorPair()
200 Handle<TypeFeedbackInfo> Factory::NewTypeFeedbackInfo() { in NewTypeFeedbackInfo()
209 Handle<String> Factory::InternalizeUtf8String(Vector<const char> string) { in InternalizeUtf8String()
215 Handle<String> Factory::InternalizeOneByteString(Vector<const uint8_t> string) { in InternalizeOneByteString()
221 Handle<String> Factory::InternalizeOneByteString( in InternalizeOneByteString()
228 Handle<String> Factory::InternalizeTwoByteString(Vector<const uc16> string) { in InternalizeTwoByteString()
235 Handle<String> Factory::InternalizeStringWithKey(StringTableKey* key) { in InternalizeStringWithKey()
240 MaybeHandle<String> Factory::NewStringFromOneByte(Vector<const uint8_t> string, in NewStringFromOneByte()
259 MaybeHandle<String> Factory::NewStringFromUtf8(Vector<const char> string, in NewStringFromUtf8()
295 MaybeHandle<String> Factory::NewStringFromTwoByte(const uc16* string, in NewStringFromTwoByte()
320 MaybeHandle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string, in NewStringFromTwoByte()
325 MaybeHandle<String> Factory::NewStringFromTwoByte( in NewStringFromTwoByte()
331 Handle<String> Factory::NewInternalizedStringFromUtf8(Vector<const char> str, in NewInternalizedStringFromUtf8()
342 MUST_USE_RESULT Handle<String> Factory::NewOneByteInternalizedString( in NewOneByteInternalizedString()
352 MUST_USE_RESULT Handle<String> Factory::NewOneByteInternalizedSubString( in NewOneByteInternalizedSubString()
363 MUST_USE_RESULT Handle<String> Factory::NewTwoByteInternalizedString( in NewTwoByteInternalizedString()
373 Handle<String> Factory::NewInternalizedStringImpl( in NewInternalizedStringImpl()
383 MaybeHandle<Map> Factory::InternalizedStringMapForString( in InternalizedStringMapForString()
409 MaybeHandle<SeqOneByteString> Factory::NewRawOneByteString( in NewRawOneByteString()
421 MaybeHandle<SeqTwoByteString> Factory::NewRawTwoByteString( in NewRawTwoByteString()
433 Handle<String> Factory::LookupSingleCharacterStringFromCode(uint32_t code) { in LookupSingleCharacterStringFromCode()
512 MaybeHandle<String> Factory::NewConsString(Handle<String> left, in NewConsString()
598 Handle<String> Factory::NewProperSubString(Handle<String> str, in NewProperSubString()
662 MaybeHandle<String> Factory::NewExternalStringFromOneByte( in NewExternalStringFromOneByte()
686 MaybeHandle<String> Factory::NewExternalStringFromTwoByte( in NewExternalStringFromTwoByte()
716 Handle<ExternalOneByteString> Factory::NewNativeSourceString( in NewNativeSourceString()
732 Handle<Symbol> Factory::NewSymbol() { in NewSymbol()
740 Handle<Symbol> Factory::NewPrivateSymbol() { in NewPrivateSymbol()
747 Handle<Context> Factory::NewNativeContext() { in NewNativeContext()
761 Handle<Context> Factory::NewScriptContext(Handle<JSFunction> function, in NewScriptContext()
776 Handle<ScriptContextTable> Factory::NewScriptContextTable() { in NewScriptContextTable()
786 Handle<Context> Factory::NewModuleContext(Handle<ScopeInfo> scope_info) { in NewModuleContext()
797 Handle<Context> Factory::NewFunctionContext(int length, in NewFunctionContext()
811 Handle<Context> Factory::NewCatchContext(Handle<JSFunction> function, in NewCatchContext()
827 Handle<Context> Factory::NewDebugEvaluateContext(Handle<Context> previous, in NewDebugEvaluateContext()
844 Handle<Context> Factory::NewWithContext(Handle<JSFunction> function, in NewWithContext()
858 Handle<Context> Factory::NewBlockContext(Handle<JSFunction> function, in NewBlockContext()
872 Handle<Struct> Factory::NewStruct(InstanceType type) { in NewStruct()
880 Handle<AliasedArgumentsEntry> Factory::NewAliasedArgumentsEntry( in NewAliasedArgumentsEntry()
889 Handle<AccessorInfo> Factory::NewAccessorInfo() { in NewAccessorInfo()
898 Handle<Script> Factory::NewScript(Handle<String> source) { in NewScript()
921 Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) { in NewForeign()
928 Handle<Foreign> Factory::NewForeign(const AccessorDescriptor* desc) { in NewForeign()
933 Handle<ByteArray> Factory::NewByteArray(int length, PretenureFlag pretenure) { in NewByteArray()
942 Handle<BytecodeArray> Factory::NewBytecodeArray( in NewBytecodeArray()
953 Handle<FixedTypedArrayBase> Factory::NewFixedTypedArrayWithExternalPointer( in NewFixedTypedArrayWithExternalPointer()
964 Handle<FixedTypedArrayBase> Factory::NewFixedTypedArray( in NewFixedTypedArray()
974 Handle<Cell> Factory::NewCell(Handle<Object> value) { in NewCell()
983 Handle<PropertyCell> Factory::NewPropertyCell() { in NewPropertyCell()
991 Handle<WeakCell> Factory::NewWeakCell(Handle<HeapObject> value) { in NewWeakCell()
1000 Handle<TransitionArray> Factory::NewTransitionArray(int capacity) { in NewTransitionArray()
1007 Handle<AllocationSite> Factory::NewAllocationSite() { in NewAllocationSite()
1019 Handle<Map> Factory::NewMap(InstanceType type, in NewMap()
1029 Handle<JSObject> Factory::CopyJSObject(Handle<JSObject> object) { in CopyJSObject()
1036 Handle<JSObject> Factory::CopyJSObjectWithAllocationSite( in CopyJSObjectWithAllocationSite()
1047 Handle<FixedArray> Factory::CopyFixedArrayWithMap(Handle<FixedArray> array, in CopyFixedArrayWithMap()
1055 Handle<FixedArray> Factory::CopyFixedArrayAndGrow(Handle<FixedArray> array, in CopyFixedArrayAndGrow()
1063 Handle<FixedArray> Factory::CopyFixedArrayUpTo(Handle<FixedArray> array, in CopyFixedArrayUpTo()
1071 Handle<FixedArray> Factory::CopyFixedArray(Handle<FixedArray> array) { in CopyFixedArray()
1078 Handle<FixedArray> Factory::CopyAndTenureFixedCOWArray( in CopyAndTenureFixedCOWArray()
1087 Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray( in CopyFixedDoubleArray()
1095 Handle<Object> Factory::NewNumber(double value, in NewNumber()
1112 Handle<Object> Factory::NewNumberFromInt(int32_t value, in NewNumberFromInt()
1120 Handle<Object> Factory::NewNumberFromUint(uint32_t value, in NewNumberFromUint()
1130 Handle<HeapNumber> Factory::NewHeapNumber(double value, in NewHeapNumber()
1141 Handle<Type> Factory::New##Type(lane_type lanes[lane_count], \
1150 Handle<Object> Factory::NewError(Handle<JSFunction> constructor, in SIMD128_TYPES()
1186 Handle<Object> Factory::NewError(Handle<JSFunction> constructor, in NewError()
1206 Handle<Object> Factory::New##NAME(MessageTemplate::Template template_index, \
1221 Handle<JSFunction> Factory::NewFunction(Handle<Map> map, in DEFINE_ERROR()
1241 Handle<JSFunction> Factory::NewFunction(Handle<Map> map, in NewFunction()
1263 Handle<JSFunction> Factory::NewFunction(Handle<String> name) { in NewFunction()
1269 Handle<JSFunction> Factory::NewFunctionWithoutPrototype(Handle<String> name, in NewFunctionWithoutPrototype()
1279 Handle<JSFunction> Factory::NewFunction(Handle<String> name, Handle<Code> code, in NewFunction()
1290 Handle<JSFunction> Factory::NewFunction(Handle<String> name, Handle<Code> code, in NewFunction()
1316 Handle<JSFunction> Factory::NewFunction(Handle<String> name, in NewFunction()
1324 Handle<JSObject> Factory::NewFunctionPrototype(Handle<JSFunction> function) { in NewFunctionPrototype()
1353 Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo( in NewFunctionFromSharedFunctionInfo()
1366 Handle<JSFunction> Factory::NewFunctionFromSharedFunctionInfo( in NewFunctionFromSharedFunctionInfo()
1384 Handle<ScopeInfo> Factory::NewScopeInfo(int length) { in NewScopeInfo()
1392 Handle<JSObject> Factory::NewExternal(void* value) { in NewExternal()
1400 Handle<Code> Factory::NewCodeRaw(int object_size, bool immovable) { in NewCodeRaw()
1407 Handle<Code> Factory::NewCode(const CodeDesc& desc, in NewCode()
1481 Handle<Code> Factory::CopyCode(Handle<Code> code) { in CopyCode()
1488 Handle<BytecodeArray> Factory::CopyBytecodeArray( in CopyBytecodeArray()
1495 Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor, in NewJSObject()
1504 Handle<JSObject> Factory::NewJSObjectWithMemento( in NewJSObjectWithMemento()
1514 Handle<JSObject> Factory::NewJSObjectWithNullProto() { in NewJSObjectWithNullProto()
1523 Handle<JSModule> Factory::NewJSModule(Handle<Context> context, in NewJSModule()
1536 Handle<JSGlobalObject> Factory::NewJSGlobalObject( in NewJSGlobalObject()
1596 Handle<JSObject> Factory::NewJSObjectFromMap( in NewJSObjectFromMap()
1610 Handle<JSArray> Factory::NewJSArray(ElementsKind elements_kind, in NewJSArray()
1621 Handle<JSArray> Factory::NewJSArray(ElementsKind elements_kind, int length, in NewJSArray()
1630 Handle<JSArray> Factory::NewJSArrayWithElements(Handle<FixedArrayBase> elements, in NewJSArrayWithElements()
1644 void Factory::NewJSArrayStorage(Handle<JSArray> array, in NewJSArrayStorage()
1681 Handle<JSGeneratorObject> Factory::NewJSGeneratorObject( in NewJSGeneratorObject()
1694 Handle<JSArrayBuffer> Factory::NewJSArrayBuffer(SharedFlag shared, in NewJSArrayBuffer()
1706 Handle<JSDataView> Factory::NewJSDataView() { in NewJSDataView()
1716 Handle<JSMap> Factory::NewJSMap() { in NewJSMap()
1724 Handle<JSSet> Factory::NewJSSet() { in NewJSSet()
1732 Handle<JSMapIterator> Factory::NewJSMapIterator() { in NewJSMapIterator()
1740 Handle<JSSetIterator> Factory::NewJSSetIterator() { in NewJSSetIterator()
1862 Handle<JSTypedArray> Factory::NewJSTypedArray(ExternalArrayType type, in NewJSTypedArray()
1872 Handle<JSTypedArray> Factory::NewJSTypedArray(ElementsKind elements_kind, in NewJSTypedArray()
1883 Handle<JSTypedArray> Factory::NewJSTypedArray(ExternalArrayType type, in NewJSTypedArray()
1912 Handle<JSTypedArray> Factory::NewJSTypedArray(ElementsKind elements_kind, in NewJSTypedArray()
1945 Handle<JSDataView> Factory::NewJSDataView(Handle<JSArrayBuffer> buffer, in NewJSDataView()
1954 MaybeHandle<JSBoundFunction> Factory::NewJSBoundFunction( in NewJSBoundFunction()
2002 Handle<JSProxy> Factory::NewJSProxy(Handle<JSReceiver> target, in NewJSProxy()
2025 Handle<JSGlobalProxy> Factory::NewUninitializedJSGlobalProxy() { in NewUninitializedJSGlobalProxy()
2037 void Factory::ReinitializeJSGlobalProxy(Handle<JSGlobalProxy> object, in ReinitializeJSGlobalProxy()
2076 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo( in NewSharedFunctionInfo()
2092 Handle<JSMessageObject> Factory::NewJSMessageObject( in NewJSMessageObject()
2111 Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo( in NewSharedFunctionInfo()
2183 Handle<Object> Factory::GetNumberStringCache(Handle<Object> number) { in GetNumberStringCache()
2196 void Factory::SetNumberStringCache(Handle<Object> number, in SetNumberStringCache()
2212 Handle<String> Factory::NumberToString(Handle<Object> number, in NumberToString()
2239 Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) { in NewDebugInfo()
2274 Handle<JSObject> Factory::NewArgumentsObject(Handle<JSFunction> callee, in NewArgumentsObject()
2293 Handle<JSWeakMap> Factory::NewJSWeakMap() { in NewJSWeakMap()
2302 Handle<Map> Factory::ObjectLiteralMapFromCache(Handle<Context> context, in ObjectLiteralMapFromCache()
2347 void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp, in SetRegExpAtomData()
2362 void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp, in SetRegExpIrregexpData()
2384 Handle<Object> Factory::GlobalConstantFor(Handle<Name> name) { in GlobalConstantFor()
2392 Handle<Object> Factory::ToBoolean(bool value) { in ToBoolean()