Home
last modified time | relevance | path

Searched refs:details (Results 1 - 25 of 386) sorted by relevance

12345678910>>...16

/third_party/typescript/tests/baselines/reference/
H A DunusedLocalsAndParametersOverloadSignatures.js2 export function func(details: number, message: string, ...args: any[]): void;
3 export function func(details: number, message: string): any {
4 return details + message;
8 constructor(details: number, message: string, ...args: any[]);
9 constructor(details: number, message: string) {
10 details + message;
13 method(details: number, message: string, ...args: any[]): void;
14 method(details: number, message: string): any {
15 return details + message;
20 export function genericFunc<T>(details
[all...]
H A DcommentsOnPropertyOfObjectLiteral1.js3 id: /*! @ngInject */ (details: any) => details.id,
6 /*! @ngInject */ (details: any) => details.id,
9 (details: any) => details.id,
13 (details: any) => details.id,
18 id: /*! @ngInject */ function (details) { return details
[all...]
/third_party/ltp/testcases/kernel/power_management/lib/
H A Dpm_sched_mc.py64 except Exception as details:
65 print("INFO: Failed to get number of sockets in system", details)
170 except Exception as details:
200 except Exception as details:
201 print("Exception in generate_siblings_list", details)
218 except Exception as details:
219 print("Exception in get_siblings", details)
249 except Exception as details:
250 print("Could not read interrupt statistics", details)
311 except Exception as details
[all...]
/third_party/node/test/parallel/
H A Dtest-util-inspect-proxy.js49 let details = processUtil.getProxyDetails(proxyObj, true);
50 assert.strictEqual(target, details[0]);
51 assert.strictEqual(handler, details[1]);
53 details = processUtil.getProxyDetails(proxyObj);
54 assert.strictEqual(target, details[0]);
55 assert.strictEqual(handler, details[1]);
57 details = processUtil.getProxyDetails(proxyObj, false);
58 assert.strictEqual(target, details);
60 details = processUtil.getProxyDetails({}, true);
61 assert.strictEqual(details, undefine
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsLifetimeTests.hpp44 namespace details namespace
402 } // details
404 using details::BindFunc;
405 using details::GenFunc;
406 using details::DeleteFunc;
407 using details::ExistsFunc;
409 using details::Context;
410 using details::Binder;
411 using details::SimpleBinder;
412 using details
[all...]
H A DglsFboCompletenessTests.hpp42 namespace details namespace
137 } // details
139 using details::Context;
140 using details::TestBase;
141 using details::ParamTest;
142 using details::gl;
/third_party/node/deps/v8/src/objects/
H A Dliteral-objects.cc27 // The enumeration order index in the property details is unused if they are
98 Handle<Object> value, PropertyDetails details, in DictionaryAddNoUpdateNextEnumerationIndex()
101 isolate, dictionary, name, value, details, entry_out); in DictionaryAddNoUpdateNextEnumerationIndex()
107 Handle<Name> name, Handle<Object> value, PropertyDetails details, in DictionaryAddNoUpdateNextEnumerationIndex()
110 // details, so it's a normal Add(). in DictionaryAddNoUpdateNextEnumerationIndex()
111 return SwissNameDictionary::Add(isolate, dictionary, name, value, details); in DictionaryAddNoUpdateNextEnumerationIndex()
117 Handle<Object> value, PropertyDetails details, in DictionaryAddNoUpdateNextEnumerationIndex()
121 return NumberDictionary::Add(isolate, dictionary, element, value, details, in DictionaryAddNoUpdateNextEnumerationIndex()
174 PropertyDetails details( in AddToDictionaryTemplate()
188 isolate, dictionary, key, value_handle, details, in AddToDictionaryTemplate()
96 DictionaryAddNoUpdateNextEnumerationIndex( IsolateT* isolate, Handle<NameDictionary> dictionary, Handle<Name> name, Handle<Object> value, PropertyDetails details, InternalIndex* entry_out = nullptr) DictionaryAddNoUpdateNextEnumerationIndex() argument
105 DictionaryAddNoUpdateNextEnumerationIndex( IsolateT* isolate, Handle<SwissNameDictionary> dictionary, Handle<Name> name, Handle<Object> value, PropertyDetails details, InternalIndex* entry_out = nullptr) DictionaryAddNoUpdateNextEnumerationIndex() argument
115 DictionaryAddNoUpdateNextEnumerationIndex( IsolateT* isolate, Handle<NumberDictionary> dictionary, uint32_t element, Handle<Object> value, PropertyDetails details, InternalIndex* entry_out = nullptr) DictionaryAddNoUpdateNextEnumerationIndex() argument
[all...]
H A Dproperty-cell-inl.h40 PropertyDetails details) { in UpdatePropertyDetailsExceptCellType()
41 DCHECK(CheckDataIsCompatible(details, value())); in UpdatePropertyDetailsExceptCellType()
43 CHECK_EQ(old_details.cell_type(), details.cell_type()); in UpdatePropertyDetailsExceptCellType()
44 set_property_details_raw(details.AsSmi(), kReleaseStore); in UpdatePropertyDetailsExceptCellType()
49 if (!old_details.IsReadOnly() && details.IsReadOnly()) { in UpdatePropertyDetailsExceptCellType()
39 UpdatePropertyDetailsExceptCellType( PropertyDetails details) UpdatePropertyDetailsExceptCellType() argument
H A Dtransitions.cc104 PropertyDetails details = GetTargetDetails(*name, *target); in Insert() local
105 index = result->Search(details.kind(), *name, details.attributes(), in Insert()
136 PropertyDetails details = is_special_transition in Insert() local
148 : array.Search(details.kind(), *name, details.attributes(), in Insert()
195 : array.Search(details.kind(), *name, details.attributes(), in Insert()
271 PropertyDetails details = target.GetLastDescriptorDetails(isolate_); in FindTransitionToDataProperty()
272 DCHECK_EQ(attributes, details in FindTransitionToDataProperty()
627 PropertyDetails details = GetTargetDetails(key, target); CheckNewTransitionsAreConsistent() local
[all...]
H A Dproperty-details.h249 // A PropertyCell's property details contains a cell type that is meaningful if
267 // Property details for global dictionary properties.
281 // Property details for dictionary mode properties/elements.
292 // Property details for fast mode properties.
324 PropertyDetails details = *this; in set_cell_type() local
325 details.value_ = PropertyCellTypeField::update(details.value_, type); in set_cell_type()
326 return details; in set_cell_type()
330 PropertyDetails details = *this; in set_index() local
331 details in set_index()
[all...]
H A Dmap-updater.cc16 #include "src/objects/property-details.h"
696 PropertyDetails details = in FindTargetMap() local
698 DCHECK_EQ(new_kind_, details.kind()); in FindTargetMap()
700 details.attributes()); in FindTargetMap()
701 DCHECK(IsGeneralizableTo(new_constness_, details.constness())); in FindTargetMap()
702 DCHECK_EQ(new_location_, details.location()); in FindTargetMap()
703 DCHECK(new_representation_.fits_into(details.representation())); in FindTargetMap()
705 DCHECK_EQ(PropertyLocation::kField, details.location()); in FindTargetMap()
709 DCHECK(details.location() == PropertyLocation::kField || in FindTargetMap()
935 PropertyDetails details in FindSplitMap() local
1121 PropertyDetails details = UpdateFieldType() local
1207 PropertyDetails details = descriptors->GetDetails(modify_index); GeneralizeField() local
[all...]
H A Dproperty-cell.h24 // [property_details]: details of the global property.
29 inline void UpdatePropertyDetailsExceptCellType(PropertyDetails details);
38 // Changes the value and/or property details.
47 // without actually modifying the details.
49 Object value, PropertyDetails details);
56 InternalIndex entry, Handle<Object> value, PropertyDetails details);
64 // Whether or not the {details} and {value} fit together. This is an
66 static bool CheckDataIsCompatible(PropertyDetails details, Object value);
H A Ddescriptor-array-inl.h142 PropertyDetails details = GetDetails(InternalIndex(descriptor_number)); in SetSortedKey() local
143 SetDetails(InternalIndex(descriptor_number), details.set_pointer(pointer)); in SetSortedKey()
179 Smi details = EntryDetailsField::Relaxed_Load(*this, entry_offset); in GetDetails() local
180 return PropertyDetails(details); in GetDetails()
184 PropertyDetails details) { in SetDetails()
187 EntryDetailsField::Relaxed_Store(*this, entry_offset, details.AsSmi()); in SetDetails()
208 MaybeObject value, PropertyDetails details) { in Set()
210 SetDetails(descriptor_number, details); in Set()
183 SetDetails(InternalIndex descriptor_number, PropertyDetails details) SetDetails() argument
207 Set(InternalIndex descriptor_number, Name key, MaybeObject value, PropertyDetails details) Set() argument
H A Dproperty-descriptor.cc62 PropertyDetails details = descs->GetDetails(i); in ToPropertyDescriptorFastPath() local
64 if (details.location() == PropertyLocation::kField) { in ToPropertyDescriptorFastPath()
65 if (details.kind() == PropertyKind::kData) { in ToPropertyDescriptorFastPath()
67 details.representation(), in ToPropertyDescriptorFastPath()
70 DCHECK_EQ(PropertyKind::kAccessor, details.kind()); in ToPropertyDescriptorFastPath()
76 DCHECK_EQ(PropertyLocation::kDescriptor, details.location()); in ToPropertyDescriptorFastPath()
77 if (details.kind() == PropertyKind::kData) { in ToPropertyDescriptorFastPath()
80 DCHECK_EQ(PropertyKind::kAccessor, details.kind()); in ToPropertyDescriptorFastPath()
H A Dfield-index-inl.h71 PropertyDetails details = map.instance_descriptors(cage_base, kRelaxedLoad)
73 int field_index = details.field_index();
74 return ForPropertyIndex(map, field_index, details.representation());
H A Dswiss-name-dictionary.cc64 PropertyDetails details = table->DetailsAt(entry); in Rehash() local
66 int new_entry = new_table->AddInternal(Name::cast(key), value, details); in Rehash()
217 PropertyDetails details; in Rehash() member
241 int new_entry = AddInternal(e.key, e.value, e.details); in Rehash()
261 PropertyDetails details = this->DetailsAt(i); in NumberOfEnumerableProperties() local
262 PropertyAttributes attr = details.attributes(); in NumberOfEnumerableProperties()
/third_party/node/lib/internal/test_runner/reporter/
H A Dtap.js37 yield reportDetails(data.nesting, data.details, location);
41 yield reportDetails(data.nesting, data.details, null);
88 let details = `${_indent} ---\n`;
90 details += jsToYaml(_indent, 'duration_ms', duration_ms);
91 details += jsToYaml(_indent, 'type', data.type);
94 details += jsToYaml(_indent, 'location', location);
97 details += jsToYaml(_indent, null, error, new SafeSet());
98 details += `${_indent} ...\n`;
99 return details;
/third_party/selinux/libsepol/cil/test/unit/
H A DCuTest.c328 void CuSuiteDetails(CuSuite* testSuite, CuString* details) in CuSuiteDetails() argument
337 CuStringAppendFormat(details, "OK (%d %s)\n", passCount, testWord); in CuSuiteDetails()
342 CuStringAppend(details, "There was 1 failure:\n"); in CuSuiteDetails()
344 CuStringAppendFormat(details, "There were %d failures:\n", testSuite->failCount); in CuSuiteDetails()
352 CuStringAppendFormat(details, "%d) %s: %s\n", in CuSuiteDetails()
356 CuStringAppend(details, "\n!!!FAILURES!!!\n"); in CuSuiteDetails()
358 CuStringAppendFormat(details, "Runs: %d ", testSuite->count); in CuSuiteDetails()
359 CuStringAppendFormat(details, "Passes: %d ", testSuite->count - testSuite->failCount); in CuSuiteDetails()
360 CuStringAppendFormat(details, "Fails: %d\n", testSuite->failCount); in CuSuiteDetails()
/third_party/node/deps/v8/src/runtime/
H A Druntime-classes.cc300 PropertyDetails details = descriptors_template->GetDetails(i); in AddDescriptorsByTemplate() local
301 if (details.location() == PropertyLocation::kDescriptor && in AddDescriptorsByTemplate()
302 details.kind() == PropertyKind::kData) { in AddDescriptorsByTemplate()
322 PropertyDetails details = descriptors_template->GetDetails(i); in AddDescriptorsByTemplate() local
323 if (details.location() == PropertyLocation::kDescriptor) { in AddDescriptorsByTemplate()
324 if (details.kind() == PropertyKind::kData) { in AddDescriptorsByTemplate()
328 details = details.CopyWithRepresentation( in AddDescriptorsByTemplate()
331 DCHECK_EQ(PropertyKind::kAccessor, details.kind()); in AddDescriptorsByTemplate()
347 DCHECK(value.FitsRepresentation(details in AddDescriptorsByTemplate()
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dextern-const-struct.rs11 pub details: [f32; 400usize],
29 unsafe { ::std::ptr::addr_of!((*ptr).details) as usize - ptr as usize }, in bindgen_test_layout_nsFoo()
35 stringify!(details) in bindgen_test_layout_nsFoo()
/third_party/node/deps/v8/src/compiler/
H A Daccess-info.cc417 PropertyDetails const details = descriptors->GetDetails(descriptor); in ComputeDataFieldAccessInfo() local
419 Representation details_representation = details.representation(); in ComputeDataFieldAccessInfo()
492 if (details.IsReadOnly() && !details.IsConfigurable()) { in ComputeDataFieldAccessInfo()
644 PropertyDetails details) const { in ComputeDictionaryProtoAccessInfo()
650 if (details.constness() != PropertyConstness::kConst) { in ComputeDictionaryProtoAccessInfo()
654 if (details.kind() == PropertyKind::kData) { in ComputeDictionaryProtoAccessInfo()
682 // Without the holder, we can't get the property details. in TryLoadPropertyDetails()
756 PropertyDetails details = PropertyDetails::Empty(); in ComputePropertyAccessInfo() local
758 if (!TryLoadPropertyDetails(map, holder, name, &index, &details)) { in ComputePropertyAccessInfo()
1102 PropertyDetails const details = descriptors->GetDetails(number); LookupTransition() local
[all...]
/third_party/node/test/fixtures/test-runner/
H A Drun_inspect.js35 stream.on('test:fail', common.mustCall(({ details }) => {
36 assert.deepStrictEqual({ name: details.error.cause.name, code: details.error.cause.code }, expectedError);
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.cc1378 void ActionNode::GetQuickCheckDetails(QuickCheckDetails* details, in GetQuickCheckDetails() argument
1382 on_success()->GetQuickCheckDetailsFromLoopEntry(details, compiler, in GetQuickCheckDetails()
1385 on_success()->GetQuickCheckDetails(details, compiler, filled_in, in GetQuickCheckDetails()
1399 QuickCheckDetails* details, RegExpCompiler* compiler, int filled_in, in GetQuickCheckDetails()
1402 return node->GetQuickCheckDetails(details, compiler, filled_in, not_at_start); in GetQuickCheckDetails()
1451 void RegExpNode::GetQuickCheckDetailsFromLoopEntry(QuickCheckDetails* details, in GetQuickCheckDetailsFromLoopEntry() argument
1507 QuickCheckDetails* details, in EmitQuickCheck()
1511 if (details->characters() == 0) return false; in EmitQuickCheck()
1512 GetQuickCheckDetails(details, compiler, 0, in EmitQuickCheck()
1514 if (details in EmitQuickCheck()
1398 GetQuickCheckDetails( QuickCheckDetails* details, RegExpCompiler* compiler, int filled_in, bool not_at_start) GetQuickCheckDetails() argument
1503 EmitQuickCheck(RegExpCompiler* compiler, Trace* bounds_check_trace, Trace* trace, bool preload_has_checked_bounds, Label* on_possible_success, QuickCheckDetails* details, bool fall_through_on_failure, ChoiceNode* predecessor) EmitQuickCheck() argument
1584 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) GetQuickCheckDetails() argument
2010 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) GetQuickCheckDetails() argument
2037 GetQuickCheckDetailsFromLoopEntry( QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) GetQuickCheckDetailsFromLoopEntry() argument
2070 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int characters_filled_in, bool not_at_start) GetQuickCheckDetails() argument
2242 GetQuickCheckDetails(QuickCheckDetails* details, RegExpCompiler* compiler, int filled_in, bool not_at_start) GetQuickCheckDetails() argument
[all...]
/third_party/libwebsockets/include/
H A Dlibwebsockets.hxx45 std::string details; member in lssException
47 lssException(std::string _details) { details = _details; } in lssException()
49 virtual const char *what() const throw() { return details.c_str(); } in what()
/third_party/node/lib/internal/assert/
H A Dassertion_error.js332 details,
436 if (details) {
440 for (let i = 0; i < details.length; i++) {
441 this['message ' + i] = details[i].message;
442 this['actual ' + i] = details[i].actual;
443 this['expected ' + i] = details[i].expected;
444 this['operator ' + i] = details[i].operator;
445 this['stack trace ' + i] = details[i].stack;

Completed in 18 milliseconds

12345678910>>...16