/external/v8/src/runtime/ |
D | runtime-literals.cc | 345 Handle<JSObject> boilerplate = in Create() local 352 if (!use_fast_elements) JSObject::NormalizeElements(boilerplate); in Create() 372 JSObject::SetOwnElementIgnoreAttributes(boilerplate, element_index, in Create() 378 JSObject::SetOwnPropertyIgnoreAttributes(boilerplate, name, value, NONE) in Create() 386 JSObject::MigrateSlowToFast(boilerplate, in Create() 387 boilerplate->map()->UnusedPropertyFields(), in Create() 390 return boilerplate; in Create() 504 Handle<JSObject> boilerplate; in CreateLiteral() local 508 boilerplate = Handle<JSObject>(site->boilerplate(), isolate); in CreateLiteral() 519 boilerplate = LiteralHelper::Create(isolate, description, flags, TENURED); in CreateLiteral() [all …]
|
/external/v8/src/compiler/ |
D | js-heap-broker.cc | 175 bool IsFastLiteralHelper(Handle<JSObject> boilerplate, int max_depth, in IsFastLiteralHelper() argument 181 if (!JSObject::TryMigrateInstance(boilerplate)) return false; in IsFastLiteralHelper() 187 Isolate* const isolate = boilerplate->GetIsolate(); in IsFastLiteralHelper() 188 Handle<FixedArrayBase> elements(boilerplate->elements(), isolate); in IsFastLiteralHelper() 191 if (boilerplate->HasSmiOrObjectElements()) { in IsFastLiteralHelper() 205 } else if (boilerplate->HasDoubleElements()) { in IsFastLiteralHelper() 213 if (!(boilerplate->HasFastProperties() && in IsFastLiteralHelper() 214 boilerplate->property_array()->length() == 0)) { in IsFastLiteralHelper() 220 boilerplate->map()->instance_descriptors(), isolate); in IsFastLiteralHelper() 221 int limit = boilerplate->map()->NumberOfOwnDescriptors(); in IsFastLiteralHelper() [all …]
|
D | js-create-lowering.cc | 1141 JSObjectRef boilerplate = site.boilerplate().value(); in ReduceJSCreateLiteralArrayOrObject() local 1143 AllocateFastLiteral(effect, control, boilerplate, pretenure); in ReduceJSCreateLiteralArrayOrObject() 1213 JSRegExpRef boilerplate = feedback.AsJSRegExp(); in ReduceJSCreateLiteralRegExp() local 1214 Node* value = effect = AllocateLiteralRegExp(effect, control, boilerplate); in ReduceJSCreateLiteralRegExp() 1629 JSObjectRef boilerplate, in AllocateFastLiteral() argument 1635 MapRef boilerplate_map = boilerplate.map(); in AllocateFastLiteral() 1651 if (boilerplate.IsUnboxedDoubleField(index)) { in AllocateFastLiteral() 1654 value = jsgraph()->Constant(boilerplate.RawFastDoublePropertyAt(index)); in AllocateFastLiteral() 1656 ObjectRef boilerplate_value = boilerplate.RawFastPropertyAt(index); in AllocateFastLiteral() 1695 AllocateFastLiteralElements(effect, control, boilerplate, pretenure); in AllocateFastLiteral() [all …]
|
D | js-create-lowering.h | 105 JSObjectRef boilerplate, PretenureFlag pretenure); in NON_EXPORTED_BASE() 107 JSObjectRef boilerplate, in NON_EXPORTED_BASE() 110 JSRegExpRef boilerplate); in NON_EXPORTED_BASE()
|
D | compilation-dependencies.cc | 240 ? site_.boilerplate().value().GetElementsKind() in ElementsKindDependency() 247 ? site->boilerplate()->GetElementsKind() in IsValid() 354 ? site.boilerplate().value().GetElementsKind() in DependOnElementsKind()
|
/external/python/cpython2/Tools/framer/ |
D | README.txt | 1 framer is a tool to generate boilerplate code for C extension types. 3 The boilerplate is generated from a specification object written in 6 specification, framer can generate all the boilerplate C code,
|
/external/v8/src/builtins/ |
D | builtins-constructor-gen.cc | 306 Node* boilerplate = literal_site; in EmitCreateRegExpLiteral() local 307 CSA_ASSERT(this, IsJSRegExp(boilerplate)); in EmitCreateRegExpLiteral() 311 Node* value = LoadObjectField(boilerplate, offset); in EmitCreateRegExpLiteral() 352 TNode<JSArray> boilerplate = CAST(LoadBoilerplate(allocation_site)); in EmitCreateShallowArrayLiteral() local 356 return CloneFastJSArray(context, boilerplate, mode, allocation_site); in EmitCreateShallowArrayLiteral() 358 return CloneFastJSArray(context, boilerplate, mode); in EmitCreateShallowArrayLiteral() 437 TNode<JSObject> boilerplate = LoadBoilerplate(allocation_site); in EmitCreateShallowObjectLiteral() local 438 TNode<Map> boilerplate_map = LoadMap(boilerplate); in EmitCreateShallowObjectLiteral() 453 CAST(LoadSlowProperties(boilerplate)), call_runtime)); in EmitCreateShallowObjectLiteral() 460 Node* boilerplate_properties = LoadFastProperties(boilerplate); in EmitCreateShallowObjectLiteral() [all …]
|
/external/v8/src/heap/ |
D | object-stats.cc | 462 JSObject* boilerplate = site->boilerplate(); in RecordVirtualAllocationSiteDetails() local 463 if (boilerplate->IsJSArray()) { in RecordVirtualAllocationSiteDetails() 464 RecordSimpleVirtualObjectStats(site, boilerplate, in RecordVirtualAllocationSiteDetails() 469 site, boilerplate, ObjectStats::JS_OBJECT_BOILERPLATE_TYPE, in RecordVirtualAllocationSiteDetails() 470 boilerplate->Size(), ObjectStats::kNoOverAllocation); in RecordVirtualAllocationSiteDetails() 471 if (boilerplate->HasFastProperties()) { in RecordVirtualAllocationSiteDetails() 474 PropertyArray* properties = boilerplate->property_array(); in RecordVirtualAllocationSiteDetails() 478 NameDictionary* properties = boilerplate->property_dictionary(); in RecordVirtualAllocationSiteDetails() 483 FixedArrayBase* elements = boilerplate->elements(); in RecordVirtualAllocationSiteDetails()
|
/external/python/cpython2/Doc/library/ |
D | numbers.rst | 152 "boilerplate". ``a`` will be an instance of ``A``, which is a subtype 158 2. If ``A`` falls back to the boilerplate code, and it were to 161 boilerplate should return :const:`NotImplemented` from 166 4. If it falls back to the boilerplate, there are no more possible
|
/external/python/cpython3/Doc/library/ |
D | numbers.rst | 155 "boilerplate". ``a`` will be an instance of ``A``, which is a subtype 161 2. If ``A`` falls back to the boilerplate code, and it were to 164 boilerplate should return :const:`NotImplemented` from 169 4. If it falls back to the boilerplate, there are no more possible
|
/external/cmockery/cmockery_0_1_2/packages/deb/ |
D | README | 5 Most of the files that are in this directory are boilerplate.
|
/external/parameter-framework/upstream/skeleton-subsystem/ |
D | README.md | 3 This is a skeleton plugin i.e. the minimal plugin boilerplate.
|
/external/v8/src/ |
D | allocation-site-scopes.h | 75 DCHECK(object.is_null() || *object == scope_site->boilerplate()); in ExitScope()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/ |
D | FastISelEmitter.td | 5 //===- Define the necessary boilerplate for our test target. --------------===//
|
/external/libmtp/ |
D | ChangeLog | 1876 * examples/newplaylist.c: LGPL boilerplate, crediting Robert. 1877 * examples/playlists.c: LGPL boilerplate. 1878 * examples/sendfile.c: LGPL boilerplate, crediting me and Chris. 1879 * examples/sendtr.c: LGPL boilerplate, crediting me, Chris, 1881 * examples/thumb.c: LGPL boilerplate, crediting Robert. 1882 * examples/tracks.c: LGPL boilerplate. 1883 * examples/trexist.c: LGPL boilerplate, crediting noone. 1918 * src/libmtp.h.in: LGPL boilerplate. 1919 * src/libusb-glue.h: LGPL boilerplate. 1920 * src/unicode.h: LGPL boilerplate. [all …]
|
/external/cmockery/cmockery_0_1_2/ |
D | configure.ac | 1 ## This is a boilerplate file for Google opensource projects.
|
/external/grpc-grpc-java/examples/example-kotlin/ |
D | README.md | 59 boilerplate for you.
|
/external/perfetto/protos/perfetto/trace/ |
D | trusted_packet.proto | 47 // The oneof boilerplate here is required to tell the difference between
|
/external/libyuv/files/tools/ |
D | OWNERS | 27 per-file boilerplate.py=rsesek@chromium.org
|
/external/python/cpython2/Tools/versioncheck/ |
D | README | 16 A boilerplate for the _checkversion.py file can be found here. Replace
|
/external/guice/ |
D | CONTRIBUTING.md | 47 a copy of the boilerplate licence comment (can be copied from an existing
|
/external/robolectric-shadows/processor/ |
D | README.md | 17 …boilerplate code in the form of the <code>shadowOf()</code> methods that form a convenient type-sa…
|
/external/perfetto/gn/standalone/ |
D | wasm.gni | 33 # and provides the boilerplate to initialize the module.
|
/external/javaparser/ |
D | readme.md | 45 …raverse and manipulate the generated AST, you can reduce your projects boilerplate by only includi…
|
/external/skqp/src/gpu/gradients/ |
D | README.md | 53 reduce the amount of duplicate code and boilerplate, these optimization
|