HomeSort by relevance Sort by last modified time
    Searched defs:setEntry (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
KeyStoreProxyImpl.java 55 public void setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)
57 mKeyStore.setEntry(alias, entry, protParam);
KeyStoreProxy.java 40 /** @see KeyStore#setEntry(String, KeyStore.Entry, KeyStore.ProtectionParameter) */
41 void setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 163 cachedL.setEntry(i, j, luI[j]);
165 cachedL.setEntry(i, i, field.getOne());
179 cachedU.setEntry(i, j, luI[j]);
192 cachedP.setEntry(i, pivot[i], field.getOne());
427 identity.setEntry(i, i, one);
BiDiagonalTransformer.java 101 cachedU.setEntry(k, k, 1);
107 cachedU.setEntry(k, k, 1);
123 cachedU.setEntry(0, 0, 1);
145 cachedB.setEntry(i, i, main[i]);
148 cachedB.setEntry(i, i - 1, secondary[i - 1]);
152 cachedB.setEntry(i, i + 1, secondary[i]);
182 cachedV.setEntry(k, k, 1);
188 cachedV.setEntry(k, k, 1);
204 cachedV.setEntry(0, 0, 1);
LUDecompositionImpl.java 172 cachedL.setEntry(i, j, luI[j]);
174 cachedL.setEntry(i, i, 1.0);
188 cachedU.setEntry(i, j, luI[j]);
201 cachedP.setEntry(i, pivot[i], 1.0);
QRDecompositionImpl.java 160 cachedR.setEntry(row, row, rDiag[row]);
162 cachedR.setEntry(row, col, qrt[col][row]);
197 cachedQT.setEntry(minor, minor, 1.0);
202 cachedQT.setEntry(minor, minor, 1.0);
235 cachedH.setEntry(i, j, qrt[j][i] / -rDiag[j]);
ArrayFieldVector.java 621 out.setEntry(i, j, data[i].multiply(v.getEntry(j)));
647 out.setEntry(i, j, data[i].multiply(v[j]));
707 public void setEntry(int index, T value) {
OpenMapRealMatrix.java 113 out.setEntry(row, col, getEntry(row, col) + iterator.value());
148 out.setEntry(row, col, getEntry(row, col) - iterator.value());
240 public void setEntry(int row, int column, double value)
TriDiagonalTransformer.java 114 cachedQt.setEntry(k, k, 1);
117 cachedQt.setEntry(k, k, 1 + beta * hK[k]);
119 cachedQt.setEntry(k, i, beta * hK[i]);
127 cachedQt.setEntry(j, k, beta * hK[k]);
134 cachedQt.setEntry(0, 0, 1);
154 cachedT.setEntry(i, i, main[i]);
156 cachedT.setEntry(i, i - 1, secondary[i - 1]);
159 cachedT.setEntry(i, i + 1, secondary[i]);
FieldVector.java 268 * @see #setEntry(int, FieldElement)
281 void setEntry(int index, T value)
OpenMapRealVector.java 238 res.setEntry(key, randomAccess.get(key) + iter.value());
240 res.setEntry(key, iter.value());
256 res.setEntry(iter.key() + virtualSize, iter.value());
272 res.setEntry(virtualSize, d);
280 res.setEntry(i + virtualSize, a[i]);
331 res.setEntry(iter.key(), iter.value() / v.getEntry(iter.key()));
344 res.setEntry(iter.key(), iter.value() / v[iter.key()]);
356 res.setEntry(iter.key(), iter.value() * v.getEntry(iter.key()));
369 res.setEntry(iter.key(), iter.value() * v[iter.key()]);
385 res.setEntry(key - index, iter.value())
    [all...]
SparseFieldMatrix.java 97 setEntry(i, j, other.getEntry(i, j));
169 public void setEntry(int row, int column, T value)
  /frameworks/av/media/libmedia/
StringArray.cpp 103 void StringArray::setEntry(int idx, const char* str) {
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 38 void LinkerScript::setEntry(const std::string& pEntry) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
AppActionPreference.java 42 public void setEntry(@NonNull ApplicationsState.AppEntry entry) {
NotificationsPreference.java 49 public void setEntry(@NonNull ApplicationsState.AppEntry entry) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 163 matrix.setEntry(0, 0, -1);
166 matrix.setEntry(zIndex, zIndex, maximize ? 1 : -1);
170 matrix.setEntry(zIndex, width - 1,
174 matrix.setEntry(zIndex, getSlackVariableOffset() - 1,
190 matrix.setEntry(row, getSlackVariableOffset() - 1,
195 matrix.setEntry(row, width - 1, constraint.getValue());
199 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, 1); // slack
201 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, -1); // excess
207 matrix.setEntry(0, getArtificialVariableOffset() + artificialVar, 1);
208 matrix.setEntry(row, getArtificialVariableOffset() + artificialVar++, 1)
    [all...]
  /cts/tests/tests/location/src/android/location/cts/psedorange/
UserPositionVelocityWeightedLeastSquare.java 279 rangeRateMps.setEntry(measurementCount, 0, -1 * (
287 deltaPseudoRangeRateMps.setEntry(measurementCount, 0,
294 pseudorangeRateWeight.setEntry(measurementCount, measurementCount,
364 rotationMatrix.setEntry(3, 3, 1);
595 covarianceMatrixMetersSquare.setEntry(satsCounter, satsCounter,
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
GaussNewtonEstimator.java 196 wGradGradT.setEntry(k, l, weight * gk * grad[l]);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 167 outMatrix.setEntry(i, j, cov);
168 outMatrix.setEntry(j, i, cov);
170 outMatrix.setEntry(i, i, variance.evaluate(matrix.getColumn(i)));
PearsonsCorrelation.java 196 outMatrix.setEntry(i, j, corr);
197 outMatrix.setEntry(j, i, corr);
199 outMatrix.setEntry(i, i, 1d);
259 outMatrix.setEntry(i, i, 1d);
263 outMatrix.setEntry(i, j, entry);
264 outMatrix.setEntry(j, i, entry);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
VectorialCovariance.java 94 result.setEntry(i, j, e);
95 result.setEntry(j, i, e);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
EnumDeclaration.java 104 public EnumDeclaration setEntry(int i, EnumConstantDeclaration element) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
SwitchStmt.java 120 public SwitchStmt setEntry(int i, SwitchEntryStmt entry) {
  /frameworks/base/services/core/java/com/android/server/locksettings/
SyntheticPasswordCrypto.java 164 keyStore.setEntry(keyAlias,

Completed in 959 milliseconds

1 2 3 4 5 6