/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | V8PerContextData.h | 129 UnsafePersistent<v8::Object> boilerplate = m_wrapperBoilerplates.get(type); in createWrapperFromCache() local 130 …return !boilerplate.isEmpty() ? boilerplate.newLocal(v8::Isolate::GetCurrent())->Clone() : createW… in createWrapperFromCache()
|
/external/chromium_org/third_party/tcmalloc/vendor/packages/deb/ |
D | README | 5 Most of the files that are in this directory are boilerplate.
|
/external/chromium_org/v8/src/ |
D | code-stubs-hydrogen.cc | 372 HInstruction* boilerplate = Add<HLoadNamedField>(allocation_site, access); in BuildCodeStub() local 375 HValue* elements = AddLoadElements(boilerplate); in BuildCodeStub() 380 push_value = BuildCloneShallowArray(boilerplate, in BuildCodeStub() 391 push_value = BuildCloneShallowArray(boilerplate, in BuildCodeStub() 398 push_value = BuildCloneShallowArray(boilerplate, in BuildCodeStub() 406 push_value = BuildCloneShallowArray(boilerplate, in BuildCodeStub() 442 HInstruction* boilerplate = Add<HLoadNamedField>(allocation_site, access); in BuildCodeStub() local 451 boilerplate, HObjectAccess::ForMap()); in BuildCodeStub() 467 Add<HLoadNamedField>(boilerplate, access)); in BuildCodeStub()
|
D | messages.js | 1325 var boilerplate = MakeRangeError('stack_overflow', []); 1327 var error_string = boilerplate.name + ": " + boilerplate.message; 1359 boilerplate, 'stack', getter, setter, DONT_ENUM); 1361 return boilerplate;
|
D | runtime.cc | 262 Handle<JSObject> boilerplate = in CreateObjectLiteralBoilerplate() local 267 if (!should_have_fast_elements) JSObject::NormalizeElements(boilerplate); in CreateObjectLiteralBoilerplate() 272 !is_result_from_cache && boilerplate->HasFastProperties(); in CreateObjectLiteralBoilerplate() 278 boilerplate, KEEP_INOBJECT_PROPERTIES, length / 2); in CreateObjectLiteralBoilerplate() 299 boilerplate, element_index, value, kNonStrictMode); in CreateObjectLiteralBoilerplate() 304 boilerplate, name, value, NONE, in CreateObjectLiteralBoilerplate() 310 boilerplate, element_index, value, kNonStrictMode); in CreateObjectLiteralBoilerplate() 321 boilerplate, name, value, NONE, in CreateObjectLiteralBoilerplate() 337 boilerplate, boilerplate->map()->unused_property_fields()); in CreateObjectLiteralBoilerplate() 340 return boilerplate; in CreateObjectLiteralBoilerplate() [all …]
|
D | hydrogen.cc | 2452 HValue* HGraphBuilder::BuildCloneShallowArray(HValue* boilerplate, in BuildCloneShallowArray() argument 2476 Add<HLoadNamedField>(boilerplate, access)); in BuildCloneShallowArray() 2487 HValue* boilerplate_elements = AddLoadElements(boilerplate); in BuildCloneShallowArray() 4871 static bool IsFastLiteral(Handle<JSObject> boilerplate, in IsFastLiteral() argument 4874 if (boilerplate->map()->is_deprecated()) { in IsFastLiteral() 4875 Handle<Object> result = JSObject::TryMigrateInstance(boilerplate); in IsFastLiteral() 4882 Isolate* isolate = boilerplate->GetIsolate(); in IsFastLiteral() 4883 Handle<FixedArrayBase> elements(boilerplate->elements()); in IsFastLiteral() 4886 if (boilerplate->HasFastObjectElements()) { in IsFastLiteral() 4901 } else if (!boilerplate->HasFastDoubleElements()) { in IsFastLiteral() [all …]
|
/external/libmtp/ |
D | ChangeLog | 1657 * examples/newplaylist.c: LGPL boilerplate, crediting Robert. 1658 * examples/playlists.c: LGPL boilerplate. 1659 * examples/sendfile.c: LGPL boilerplate, crediting me and Chris. 1660 * examples/sendtr.c: LGPL boilerplate, crediting me, Chris, 1662 * examples/thumb.c: LGPL boilerplate, crediting Robert. 1663 * examples/tracks.c: LGPL boilerplate. 1664 * examples/trexist.c: LGPL boilerplate, crediting noone. 1699 * src/libmtp.h.in: LGPL boilerplate. 1700 * src/libusb-glue.h: LGPL boilerplate. 1701 * src/unicode.h: LGPL boilerplate. [all …]
|
/external/v8/src/ |
D | runtime.cc | 140 JSObject* boilerplate) { in DeepCopyBoilerplate() argument 146 { MaybeObject* maybe_result = heap->CopyJSObject(boilerplate); in DeepCopyBoilerplate() 362 Handle<JSObject> boilerplate = isolate->factory()->NewJSObjectFromMap(map); in CreateObjectLiteralBoilerplate() local 365 if (!should_have_fast_elements) JSObject::NormalizeElements(boilerplate); in CreateObjectLiteralBoilerplate() 370 !is_result_from_cache && boilerplate->HasFastProperties(); in CreateObjectLiteralBoilerplate() 376 boilerplate, KEEP_INOBJECT_PROPERTIES, length / 2); in CreateObjectLiteralBoilerplate() 395 boilerplate, element_index, value, kNonStrictMode); in CreateObjectLiteralBoilerplate() 400 boilerplate, name, value, NONE); in CreateObjectLiteralBoilerplate() 405 boilerplate, element_index, value, kNonStrictMode); in CreateObjectLiteralBoilerplate() 416 boilerplate, name, value, NONE); in CreateObjectLiteralBoilerplate() [all …]
|
D | hydrogen.cc | 3672 static bool IsFastLiteral(Handle<JSObject> boilerplate, in IsFastLiteral() argument 3679 Handle<FixedArrayBase> elements(boilerplate->elements()); in IsFastLiteral() 3681 elements->map() != boilerplate->GetHeap()->fixed_cow_array_map()) { in IsFastLiteral() 3682 if (boilerplate->HasFastDoubleElements()) { in IsFastLiteral() 3684 } else if (boilerplate->HasFastElements()) { in IsFastLiteral() 3688 Handle<Object> value = JSObject::GetElement(boilerplate, i); in IsFastLiteral() 3705 Handle<FixedArray> properties(boilerplate->properties()); in IsFastLiteral() 3709 int nof = boilerplate->map()->inobject_properties(); in IsFastLiteral() 3712 Handle<Object> value(boilerplate->InObjectPropertyAt(i)); in IsFastLiteral() 3725 *total_size += boilerplate->map()->instance_size(); in IsFastLiteral() [all …]
|
D | isolate.cc | 900 Handle<JSObject> boilerplate = in StackOverflow() local 902 Handle<Object> exception = Copy(boilerplate); in StackOverflow()
|
/external/llvm/docs/ |
D | ReleaseNotes.rst | 77 subsection about it right here. You can copy the following boilerplate
|
/external/bison/data/m4sugar/ |
D | foreach.m4 | 66 # using m4_for to generate a boilerplate into _m4_f then passing $@ to 88 # Use m4_for to create a temporary macro in terms of a boilerplate
|
/external/chromium_org/third_party/harfbuzz-ng/ |
D | NEWS | 53 - gtk-doc boilerplate integrated. Docs are built now, but 61 - Added gobject-introspection boilerplate. Nothing useful
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | eqp.test | 500 set boilerplate { 515 puts $fd [string map [list %SQL% $sql] $::boilerplate]
|
/external/littlemock/ |
D | NOTICE | 182 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/guava/ |
D | COPYING | 182 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/srec/EventLog/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/zxing/core/ |
D | NOTICE | 181 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/audio/AudioIn/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/audio/test/AudioHardwareRecordLoop/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/chromium_org/third_party/accessibility-audit/ |
D | LICENSE | 182 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/smack/asmack-master/patch/beem/ |
D | COPYING | 182 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/tools/test_swiarb/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/config/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|
/external/srec/tools/make_ve_grammar/ |
D | NOTICE | 184 boilerplate notice, with the fields enclosed by brackets "[]"
|