Home
last modified time | relevance | path

Searched refs:descs (Results 1 – 13 of 13) sorted by relevance

/external/opencv3/samples/python2/
Dplane_tracker.py72 points, descs = [], []
77 descs.append(desc)
78 descs = np.uint8(descs)
79 self.matcher.add([descs])
80 target = PlanarTarget(image = image, rect=rect, keypoints = points, descrs=descs, data=data)
/external/v8/src/
Dproperty-descriptor.cc56 Handle<DescriptorArray> descs = in ToPropertyDescriptorFastPath() local
59 PropertyDetails details = descs->GetDetails(i); in ToPropertyDescriptorFastPath()
60 Name* key = descs->GetKey(i); in ToPropertyDescriptorFastPath()
69 value = handle(descs->GetConstant(i), isolate); in ToPropertyDescriptorFastPath()
Dstring-stream.cc348 DescriptorArray* descs = map->instance_descriptors(); in PrintUsingMap() local
350 PropertyDetails details = descs->GetDetails(i); in PrintUsingMap()
352 Object* key = descs->GetKey(i); in PrintUsingMap()
Dobjects-printer.cc276 DescriptorArray* descs = map()->instance_descriptors(); in PrintProperties() local
279 descs->GetKey(i)->NamePrint(os); in PrintProperties()
281 switch (descs->GetType(i)) { in PrintProperties()
298 os << Brief(descs->GetConstant(i)) << " (data constant)"; in PrintProperties()
301 os << Brief(descs->GetCallbacksObject(i)) << " (accessor constant)"; in PrintProperties()
Dbootstrapper.cc3220 Handle<DescriptorArray> descs = in TransferNamedProperties() local
3223 PropertyDetails details = descs->GetDetails(i); in TransferNamedProperties()
3227 Handle<Name> key = Handle<Name>(descs->GetKey(i)); in TransferNamedProperties()
3229 DCHECK(!descs->GetDetails(i).representation().IsDouble()); in TransferNamedProperties()
3237 Handle<Name> key = Handle<Name>(descs->GetKey(i)); in TransferNamedProperties()
3238 Handle<Object> constant(descs->GetConstant(i), isolate()); in TransferNamedProperties()
3245 Handle<Name> key(descs->GetKey(i)); in TransferNamedProperties()
3253 Handle<Object> callbacks(descs->GetCallbacksObject(i), isolate()); in TransferNamedProperties()
Dfactory.cc1553 Handle<DescriptorArray> descs(map->instance_descriptors()); in NewJSGlobalObject() local
1555 PropertyDetails details = descs->GetDetails(i); in NewJSGlobalObject()
1560 Handle<Name> name(descs->GetKey(i)); in NewJSGlobalObject()
1562 cell->set_value(descs->GetCallbacksObject(i)); in NewJSGlobalObject()
Dobjects.cc5557 Handle<DescriptorArray> descs(map->instance_descriptors()); in MigrateFastToSlow() local
5559 PropertyDetails details = descs->GetDetails(i); in MigrateFastToSlow()
5560 Handle<Name> key(descs->GetKey(i)); in MigrateFastToSlow()
5563 Handle<Object> value(descs->GetConstant(i), isolate); in MigrateFastToSlow()
5597 Handle<Object> value(descs->GetCallbacksObject(i), isolate); in MigrateFastToSlow()
8406 DescriptorArray* descs = instance_descriptors(); in NumberOfDescribedProperties() local
8408 ? descs->number_of_descriptors() in NumberOfDescribedProperties()
8411 if ((descs->GetDetails(i).attributes() & filter) == 0 && in NumberOfDescribedProperties()
8412 !descs->GetKey(i)->FilterKey(filter)) { in NumberOfDescribedProperties()
8423 DescriptorArray* descs = instance_descriptors(); in NextFreePropertyIndex() local
[all …]
Dobjects.h2987 inline explicit Entry(DescriptorArray* descs, int index) : in Entry() argument
2988 descs_(descs), index_(index) { } in Entry()
/external/v8/test/mjsunit/harmony/
Dproxies.js707 var descs = [
714 for (var i = 0; i < descs.length; ++i) {
715 assertEquals(p, Object.defineProperty(p, i, descs[i]))
717 for (prop in descs[i]) {
720 if (prop != "mine") assertEquals(descs[i][prop], desc[prop])
/external/opencv3/modules/features2d/test/
Dtest_descriptors_regression.cpp293 virtual bool writeDescriptors( Mat& descs ) in writeDescriptors() argument
295 writeMatInBin( descs, string(ts->get_data_path()) + DESCRIPTOR_DIR + "/" + string(name) ); in writeDescriptors()
/external/deqp/modules/internal/
DditFrameworkTests.cpp62 static const char* descs[] = in getMatchCaseExpectedDesc() local
68 return de::getSizedArrayElement<MatchCase::EXPECTED_LAST>(descs, expected); in getMatchCaseExpectedDesc()
/external/llvm/cmake/modules/
DLLVM-Config.cmake166 # Link all the descs from all the targets
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1592 DescriptorArray* descs = js_obj->map()->instance_descriptors(); in ExtractPropertyReferences() local
1595 PropertyDetails details = descs->GetDetails(i); in ExtractPropertyReferences()
1601 Name* k = descs->GetKey(i); in ExtractPropertyReferences()
1619 descs->GetKey(i), in ExtractPropertyReferences()
1620 descs->GetValue(i)); in ExtractPropertyReferences()