Lines Matching refs:argsHashRef
39 my $argsHashRef;
40 my ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
49 $argsHashRef = {options => $options};
50 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
58 $argsHashRef = {options => ["--force"]};
59 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
67 $argsHashRef = {ensureForce => 1};
68 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
76 $argsHashRef = {shouldReverse => 1};
77 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);
84 $argsHashRef = {options => ["--fuzz=3", "--force"]};
85 ($patchCommand, $isForcing) = VCSUtils::generatePatchCommand($argsHashRef);