Searched refs:boilerplate (Results 1 – 25 of 203) sorted by relevance
123456789
48 Handle<JSObject> boilerplate = in CreateObjectLiteralBoilerplate() local52 if (!should_have_fast_elements) JSObject::NormalizeElements(boilerplate); in CreateObjectLiteralBoilerplate()57 !is_result_from_cache && boilerplate->HasFastProperties(); in CreateObjectLiteralBoilerplate()61 JSObject::NormalizeProperties(boilerplate, KEEP_INOBJECT_PROPERTIES, length, in CreateObjectLiteralBoilerplate()71 Handle<BoilerplateDescription> boilerplate = in CreateObjectLiteralBoilerplate() local75 CreateLiteralBoilerplate(isolate, vector, boilerplate), Object); in CreateObjectLiteralBoilerplate()85 boilerplate, element_index, value, NONE); in CreateObjectLiteralBoilerplate()89 maybe_result = JSObject::SetOwnPropertyIgnoreAttributes(boilerplate, name, in CreateObjectLiteralBoilerplate()100 JSObject::MigrateSlowToFast(boilerplate, in CreateObjectLiteralBoilerplate()101 boilerplate->map()->unused_property_fields(), in CreateObjectLiteralBoilerplate()[all …]
1 framer is a tool to generate boilerplate code for C extension types.3 The boilerplate is generated from a specification object written in6 specification, framer can generate all the boilerplate C code,
428 Node* boilerplate = LoadFixedArrayElement(feedback_vector, literal_index, 0, in EmitFastCloneRegExp() local430 GotoIf(IsUndefined(boilerplate), &call_runtime); in EmitFastCloneRegExp()436 Node* value = LoadObjectField(boilerplate, offset); in EmitFastCloneRegExp()465 Node* boilerplate, Node* boilerplate_map, Node* boilerplate_elements, in NonEmptyShallowClone() argument471 Node* length = LoadJSArrayLength(boilerplate); in NonEmptyShallowClone()518 Node* boilerplate = in EmitFastCloneShallowArray() local520 Node* boilerplate_map = LoadMap(boilerplate); in EmitFastCloneShallowArray()521 Node* boilerplate_elements = LoadElements(boilerplate); in EmitFastCloneShallowArray()552 NonEmptyShallowClone(boilerplate, boilerplate_map, boilerplate_elements, in EmitFastCloneShallowArray()562 NonEmptyShallowClone(boilerplate, boilerplate_map, boilerplate_elements, in EmitFastCloneShallowArray()[all …]
57 Node* NonEmptyShallowClone(Node* boilerplate, Node* boilerplate_map,
137 bool IsFastLiteral(Handle<JSObject> boilerplate, int max_depth, in IsFastLiteral() argument143 if (!JSObject::TryMigrateInstance(boilerplate)) return false; in IsFastLiteral()149 Isolate* const isolate = boilerplate->GetIsolate(); in IsFastLiteral()150 Handle<FixedArrayBase> elements(boilerplate->elements(), isolate); in IsFastLiteral()153 if (boilerplate->HasFastSmiOrObjectElements()) { in IsFastLiteral()166 } else if (boilerplate->HasFastDoubleElements()) { in IsFastLiteral()174 Handle<FixedArray> properties(boilerplate->properties(), isolate); in IsFastLiteral()179 boilerplate->map()->instance_descriptors(), isolate); in IsFastLiteral()180 int limit = boilerplate->map()->NumberOfOwnDescriptors(); in IsFastLiteral()186 FieldIndex field_index = FieldIndex::ForDescriptor(boilerplate->map(), i); in IsFastLiteral()[all …]
73 Handle<JSObject> boilerplate, in NON_EXPORTED_BASE()76 Handle<JSObject> boilerplate, in NON_EXPORTED_BASE()
152 "boilerplate". ``a`` will be an instance of ``A``, which is a subtype158 2. If ``A`` falls back to the boilerplate code, and it were to161 boilerplate should return :const:`NotImplemented` from166 4. If it falls back to the boilerplate, there are no more possible
54 A basic boilerplate is often used::93 This boilerplate code allows the testing suite to be run by :mod:`test.regrtest`
5 Most of the files that are in this directory are boilerplate.
3 This is a skeleton plugin i.e. the minimal plugin boilerplate.
7 // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
1 /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
65 // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
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 …]
1 ## This is a boilerplate file for Google opensource projects.
27 per-file boilerplate.py=rsesek@chromium.org
16 A boilerplate for the _checkversion.py file can be found here. Replace
47 a copy of the boilerplate licence comment (can be copied from an existing
66 # using m4_for to generate a boilerplate into _m4_f then passing $@ to88 # Use m4_for to create a temporary macro in terms of a boilerplate
88 subsection about it right here. You can copy the following boilerplate
227 …test. The fragment is a complete control file, except for the missing boilerplate comments and do…273 # ... Standard boilerplate variable assignments...275 # ... more standard boilerplate...
1*PPD-Adobe: "4.3" 2*% 3*% For information on using this, ...
183 int boilerplate, int all_properties, int index_keys, bool has_seen_proto) { in NewBoilerplateDescription() argument184 DCHECK_GE(boilerplate, 0); in NewBoilerplateDescription()191 bool has_different_size_backing_store = boilerplate != backing_store_size; in NewBoilerplateDescription()194 int size = 2 * boilerplate; in NewBoilerplateDescription()205 DCHECK((boilerplate != (all_properties - index_keys)) || has_seen_proto); in NewBoilerplateDescription()
5382 static bool IsFastLiteral(Handle<JSObject> boilerplate, in IsFastLiteral() argument5385 if (boilerplate->map()->is_deprecated() && in IsFastLiteral()5386 !JSObject::TryMigrateInstance(boilerplate)) { in IsFastLiteral()5393 Isolate* isolate = boilerplate->GetIsolate(); in IsFastLiteral()5394 Handle<FixedArrayBase> elements(boilerplate->elements()); in IsFastLiteral()5397 if (boilerplate->HasFastSmiOrObjectElements()) { in IsFastLiteral()5412 } else if (boilerplate->HasFastDoubleElements()) { in IsFastLiteral()5419 Handle<FixedArray> properties(boilerplate->properties()); in IsFastLiteral()5424 boilerplate->map()->instance_descriptors()); in IsFastLiteral()5425 int limit = boilerplate->map()->NumberOfOwnDescriptors(); in IsFastLiteral()[all …]
29 but it requires much more boilerplate code: