Home
last modified time | relevance | path

Searched refs:newPass (Results 1 – 25 of 197) sorted by relevance

12345678

/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/
H A DTechnique.cpp305 newPass->SetVertexShader(globalVS); in BeginLoad()
315 newPass->SetPixelShader(globalPS); in BeginLoad()
345 newPass->SetDepthTestMode(CMP_ALWAYS); in BeginLoad()
394 newPass->SetBlendMode(srcPass->GetBlendMode()); in Clone()
397 newPass->SetDepthWrite(srcPass->GetDepthWrite()); in Clone()
399 newPass->SetIsDesktop(srcPass->IsDesktop()); in Clone()
401 newPass->SetPixelShader(srcPass->GetPixelShader()); in Clone()
417 SharedPtr<Pass> newPass(new Pass(name)); in CreatePass() local
418 unsigned passIndex = newPass->GetIndex(); in CreatePass()
421 passes_[passIndex] = newPass; in CreatePass()
[all …]
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/src/
H A DOgreTechnique.cpp315 mPasses.push_back(newPass); in createPass()
316 return newPass; in createPass()
988 …for(it = newPass->getTextureUnitStates().begin(); it != newPass->getTextureUnitStates().end(); ++i… in _compileIlluminationPasses()
1005newPass->setDiffuse(0, 0, 0, newPass->getDiffuse().a); // Preserving alpha in _compileIlluminationPasses()
1011 newPass->_recalculateHash(); in _compileIlluminationPasses()
1016 iPass->pass = newPass; in _compileIlluminationPasses()
1039 iPass->pass = newPass; in _compileIlluminationPasses()
1074 …for(it = newPass->getTextureUnitStates().begin(); it != newPass->getTextureUnitStates().end(); ++i… in _compileIlluminationPasses()
1103 iPass->pass = newPass; in _compileIlluminationPasses()
1132newPass->setDiffuse(0, 0, 0, newPass->getDiffuse().a); // Preserving alpha in _compileIlluminationPasses()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgreTechnique.cpp410 mPasses.push_back(newPass); in createPass()
411 return newPass; in createPass()
1090 newPass->setDiffuse(0, 0, 0, newPass->getDiffuse().a); // Preserving alpha in _compileIlluminationPasses()
1096 newPass->_recalculateHash(); in _compileIlluminationPasses()
1101 iPass->pass = newPass; in _compileIlluminationPasses()
1119 newPass->_recalculateHash(); in _compileIlluminationPasses()
1124 iPass->pass = newPass; in _compileIlluminationPasses()
1183 newPass->_recalculateHash(); in _compileIlluminationPasses()
1188 iPass->pass = newPass; in _compileIlluminationPasses()
1217 newPass->setDiffuse(0, 0, 0, newPass->getDiffuse().a); // Preserving alpha in _compileIlluminationPasses()
[all …]
/dports/deskutils/itinerary/itinerary-21.12.3/src/app/
H A Dpkpassmanager.cpp124 std::unique_ptr<KPkPass::Pass> newPass; in doImportPass() local
126 newPass.reset(KPkPass::Pass::fromFile(fileName)); in doImportPass()
128 newPass.reset(KPkPass::Pass::fromData(data)); in doImportPass()
131 if (!newPass) { in doImportPass()
135 if (newPass->passTypeIdentifier().isEmpty() || newPass->serialNumber().isEmpty()) { in doImportPass()
141 dir.mkdir(newPass->passTypeIdentifier()); in doImportPass()
142 dir.cd(newPass->passTypeIdentifier()); in doImportPass()
146 …const auto serNum = QString::fromUtf8(newPass->serialNumber().toUtf8().toBase64(QByteArray::Base64… in doImportPass()
176 for (const auto &f : newPass->fields()) { in doImportPass()
/dports/www/groupoffice/groupoffice-6.4.231-php-71/modules/postfixadmin/model/
H A DDomainExport.php71 $newPass = '';
75 $newPass = \GO\Base\Util\StringHelper::randomPassword(8);
76 $mailbox->password = $newPass;
78 $newPass = 'Error while creating new password';
85 $frecord[$key] = $newPass; // Apply new password
/dports/security/p5-Apache-Htpasswd/Apache-Htpasswd-1.9/
H A DHtpasswd.pm109 my $newPass = shift;
126 $newPass = $Id unless $newPass;
127 my $newEncrypted = $self->CryptPasswd($newPass);
138 my $passwordCrypted = $self->CryptPasswd($newPass);
170 my ($newCrypted) = $self->CryptPasswd($newPass);
267 my $newPass = shift;
282 push ( @cache, "$Id\:$newPass\:$info\n" );
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/felogin/Classes/Controller/
H A DPasswordRecoveryController.php202 * @param string $newPass
210 public function changePasswordAction(string $newPass, string $hash): void argument
214 ->getHashedPassword($newPass);
216 $hashedPassword = $this->notifyPasswordChange($newPass, $hashedPassword, $hash);
231 $newPass = $this->request->getArgument('newPass');
234 if ($newPass !== $this->request->getArgument('newPassRepeat')) {
244 $result = $validator->validate($newPass);
/dports/www/twiki/twiki/lib/TWiki/Configure/
H A DUI.pm216 my $newPass = $TWiki::query->param('newCfgP');
221 if (defined ($newPass)) {
222 $pass = $newPass;
249 if ($newPass) {
251 if ($newPass ne $confPass) {
256 $TWiki::cfg{Password} = _encode($newPass);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/felogin/Classes/Controller/
H A DPasswordRecoveryController.php206 * @param string $newPass
215 public function changePasswordAction(string $newPass, string $hash) argument
223 ->getHashedPassword($newPass);
226 $newPass,
247 $newPass = $this->request->getArgument('newPass');
250 if ($newPass !== $this->request->getArgument('newPassRepeat')) {
260 $result = $validator->validate($newPass);
/dports/net-im/qTox/qTox-1.17.4/src/widget/
H A Dloginscreen.cpp51 connect(ui->newPass, &QLineEdit::returnPressed, this, &LoginScreen::onCreateNewProfile);
57 connect(ui->newPass, &QLineEdit::textChanged, this, &LoginScreen::onPasswordEdited);
81 ui->newPass->clear(); in reset()
148 QString pass = ui->newPass->text(); in onCreateNewProfile()
224 ui->passStrengthMeter->setValue(SetPasswordDialog::getPasswordStrength(ui->newPass->text())); in onPasswordEdited()
/dports/games/xblast/xblast-2.10.4/
H A Dmenu_player.c97 static char newPass[16]; variable
658 strncpy (newPass, playerID.pass, 16); in PollForPID()
661 newPass[0] = 0; in PollForPID()
663 playerID.pass = (0 != newPass[0]) ? newPass : NULL; in PollForPID()
684 playerID.pass = (0 != newPass[0]) ? newPass : NULL; in ButtonRegisterPlayer()
738 strncpy (newPass, playerID.pass, 16); in CreateRegisterPlayerMenu()
741 newPass[0] = 0; in CreateRegisterPlayerMenu()
748 MenuAddString (DLG_LEFT, DLG_TOP, DLG_WIDTH, "Password:", 3 * CELL_W, newPass, in CreateRegisterPlayerMenu()
749 sizeof (newPass)); in CreateRegisterPlayerMenu()
826 strncpy (newPass, playerID.pass, 16); in CreateUnregisterPlayerMenu()
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/auth/
H A DLocalPasswordPrimaryAuthenticationProviderTest.php285 AuthenticationResponse::newPass( $userName ),
295 AuthenticationResponse::newPass( $userName ),
306 AuthenticationResponse::newPass( $userName ),
340 AuthenticationResponse::newPass( $userName ),
361 AuthenticationResponse::newPass( $userName ),
470 AuthenticationResponse::newPass( $cuser ),
503 AuthenticationResponse::newPass( $cuser ),
524 AuthenticationResponse::newPass( $cuser ),
627 $provider->finishAccountCreation( $user, $user, AuthenticationResponse::newPass() );
659 $expect = AuthenticationResponse::newPass( 'Foo' );
[all …]
/dports/www/tikiwiki/tiki-21.2/
H A Dtiki-adminusers.php273 $newPass = $_POST['pass'] ? $_POST['pass'] : $_POST['genepass']; variable
291 $polerr = $userlib->check_password_policy($newPass);
310 $newPass,
312 $pass_first_login ? $newPass : '',
324 $realpass = $pass_first_login ? '' : $newPass;
488 $newPass = $_POST['pass'] ? $_POST['pass'] : $_POST['genepass']; variable
489 $polerr = $userlib->check_password_policy($newPass);
493 if ($userlib->change_user_password($userinfo['login'], $newPass, $pass_first_login)) {
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/includes/auth/
H A DLocalPasswordPrimaryAuthenticationProviderTest.php289 AuthenticationResponse::newPass( $userName ),
299 AuthenticationResponse::newPass( $userName ),
310 AuthenticationResponse::newPass( $userName ),
344 AuthenticationResponse::newPass( $userName ),
365 AuthenticationResponse::newPass( $userName ),
474 AuthenticationResponse::newPass( $cuser ),
507 AuthenticationResponse::newPass( $cuser ),
528 AuthenticationResponse::newPass( $cuser ),
631 $provider->finishAccountCreation( $user, $user, AuthenticationResponse::newPass() );
663 $expect = AuthenticationResponse::newPass( 'Foo' );
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/includes/auth/
H A DLocalPasswordPrimaryAuthenticationProviderTest.php300 AuthenticationResponse::newPass( $userName ),
310 AuthenticationResponse::newPass( $userName ),
321 AuthenticationResponse::newPass( $userName ),
355 AuthenticationResponse::newPass( $userName ),
376 AuthenticationResponse::newPass( $userName ),
485 AuthenticationResponse::newPass( $cuser ),
518 AuthenticationResponse::newPass( $cuser ),
539 AuthenticationResponse::newPass( $cuser ),
642 $provider->finishAccountCreation( $user, $user, AuthenticationResponse::newPass() );
674 $expect = AuthenticationResponse::newPass( 'Foo' );
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/Database/
H A DFsck.hs22 newPass,
62 newPass :: UUID -> Annex Bool
63 newPass u = isJust <$> tryExclusiveLock (gitAnnexFsckDbLock u) go function
/dports/graphics/f3d/f3d-1.2.1/src/
H A DvtkF3DRenderer.cxx237 vtkNew<vtkF3DRenderPass> newPass; in SetupRenderPasses() local
238 newPass->SetUseRaytracing(F3D_MODULE_RAYTRACING && this->UseRaytracing); in SetupRenderPasses()
239 newPass->SetUseSSAOPass(this->UseSSAOPass); in SetupRenderPasses()
240 newPass->SetUseDepthPeelingPass(this->UseDepthPeelingPass); in SetupRenderPasses()
241 newPass->SetUseBlurBackground(this->UseBlurBackground); in SetupRenderPasses()
242 newPass->SetForceOpaqueBackground(!this->Options.HDRIFile.empty()); in SetupRenderPasses()
246 newPass->SetBounds(bounds); in SetupRenderPasses()
249 vtkSmartPointer<vtkRenderPass> renderingPass = newPass; in SetupRenderPasses()
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/protocol/http/
H A DnsHttpAuthCache.cpp206 char16_t *newUser, *newPass, *newDomain; in Set() local
219 newPass = &newUser[userLen + 1]; in Set()
220 if (pass) memcpy(newPass, pass, passLen * sizeof(char16_t)); in Set()
221 newPass[passLen] = 0; in Set()
223 newDomain = &newPass[passLen + 1]; in Set()
231 mPass = newPass; in Set()
/dports/www/firefox-esr/firefox-91.8.0/netwerk/protocol/http/
H A DnsHttpAuthCache.cpp220 char16_t *newUser, *newPass, *newDomain;
233 newPass = &newUser[userLen + 1];
234 if (pass) memcpy(newPass, pass, passLen * sizeof(char16_t));
235 newPass[passLen] = 0;
237 newDomain = &newPass[passLen + 1];
245 mPass = newPass;
/dports/devel/apitrace/apitrace-9.0/retrace/
H A Dmetric_backend_amd_perfmon.cpp255 std::vector<Metric_AMD_perfmon> newPass; in generatePassesBoundary() local
259 newPass.push_back(*it); in generatePassesBoundary()
260 if (!testMetrics(&newPass)) { in generatePassesBoundary()
261 newPass.pop_back(); in generatePassesBoundary()
266 passes.push_back(newPass); in generatePassesBoundary()
267 newPass.clear(); in generatePassesBoundary()
/dports/mail/thunderbird/thunderbird-91.8.0/netwerk/protocol/http/
H A DnsHttpAuthCache.cpp220 char16_t *newUser, *newPass, *newDomain; in Set() local
233 newPass = &newUser[userLen + 1]; in Set()
234 if (pass) memcpy(newPass, pass, passLen * sizeof(char16_t)); in Set()
235 newPass[passLen] = 0; in Set()
237 newDomain = &newPass[passLen + 1]; in Set()
245 mPass = newPass; in Set()
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/protocol/http/
H A DnsHttpAuthCache.cpp215 char16_t *newUser, *newPass, *newDomain; in Set() local
228 newPass = &newUser[userLen + 1]; in Set()
229 if (pass) memcpy(newPass, pass, passLen * sizeof(char16_t)); in Set()
230 newPass[passLen] = 0; in Set()
232 newDomain = &newPass[passLen + 1]; in Set()
240 mPass = newPass; in Set()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.releng/bundles/org.eclipse.test/src/org/eclipse/test/
H A DRegressionTest.java62 String newPass = ""; in testRegressions() local
65 newPass = readFile(newFilename); in testRegressions()
84 StringTokenizer newst = new StringTokenizer(newPass); in testRegressions()
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/protocol/http/
H A DnsHttpAuthCache.cpp326 char16_t *newUser, *newPass, *newDomain; in Set() local
341 newPass = &newUser[userLen + 1]; in Set()
343 memcpy(newPass, pass, passLen * sizeof(char16_t)); in Set()
344 newPass[passLen] = 0; in Set()
346 newDomain = &newPass[passLen + 1]; in Set()
356 mPass = newPass; in Set()
/dports/www/twiki/twiki/bin/
H A Dconfigure447 my $newPass = $query->param('newCfgP');
448 if ( !defined($newPass) ) {
451 else { $cfgAccess = $newPass; }
622 my $newPass = $query->param('newCfgP');
623 if ($newPass) {

12345678