Lines Matching defs:cnt

398     int cnt = 0; // 0 = first element
411 obj->Set(info->GetVM(), GetSymbolRef(info->GetVM())[cnt], arg);
418 int cnt = 1; // 1 = second element
426 obj->Set(info->GetVM(), GetSymbolRef(info->GetVM())[cnt], arg);
433 int cnt = 2; // 2 = third element
441 obj->Set(info->GetVM(), GetSymbolRef(info->GetVM())[cnt], arg);
448 int cnt = 0; // 0 = first element
451 Local<JSValueRef> temp = obj->Get(info->GetVM(), GetSymbolRef(info->GetVM())[cnt]);
458 int cnt = 1; // 1 = second element
461 Local<JSValueRef> temp = obj->Get(info->GetVM(), GetSymbolRef(info->GetVM())[cnt]);
468 int cnt = 2; // 2 = third element
471 Local<JSValueRef> temp = obj->Get(info->GetVM(), GetSymbolRef(info->GetVM())[cnt]);
482 int cnt = 1; // 1 = key
483 bool b = object->Set(vm, cnt, StringRef::NewFromUtf8(vm, "TestValue1"));
524 int cnt = names->Length(vm);
525 GTEST_LOG_(INFO) << "GetOwnPropertyNames cnt: " << cnt;
526 for (int i = 0; i < cnt; i++) {
540 int cnt = 1; // 1 = key
541 Local<JSValueRef> value = object->Get(vm, cnt);
576 int cnt = 1; // 1 = key
577 bool b = object->Set(vm, cnt, StringRef::NewFromUtf8(vm, "TestValueAgain1"));
598 int cnt = names->Length(vm);
599 GTEST_LOG_(INFO) << "GetOwnEnumerablePropertyNames cnt: " << cnt;
600 for (int i = 0; i < cnt; i++) {
614 int cnt = names->Length(vm);
617 GTEST_LOG_(INFO) << "GetOwnPropertyNames NATIVE_DEFAULT: " << cnt;
620 GTEST_LOG_(INFO) << "GetOwnPropertyNames NATIVE_WRITABLE: " << cnt;
623 GTEST_LOG_(INFO) << "GetOwnPropertyNames NATIVE_ENUMERABLE: " << cnt;
626 GTEST_LOG_(INFO) << "GetOwnPropertyNames NATIVE_CONFIGURABLE: " << cnt;
631 for (int i = 0; i < cnt; i++) {
719 int cnt = 10; // 10 = accommodate quantity
720 object->SetNativePointerFieldCount(vm, cnt);
721 ASSERT_EQ(cnt, object->GetNativePointerFieldCount(vm));
745 int cnt = 111; // 111 = random Numbers
746 Local<NumberRef> obj = NumberRef::New(vm, cnt);