Searched refs:getEntry (Results 76 - 100 of 392) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
H A DPearsonsCorrelation.java130 * <code>getCorrelationStandardErrors().getEntry(i,j)</code> is the standard
131 * error associated with <code>getCorrelationMatrix.getEntry(i,j)</code>
144 double r = correlationMatrix.getEntry(i, j);
154 * <p><code>getCorrelationPValues().getEntry(i,j)</code> is the probability
173 double r = correlationMatrix.getEntry(i, j);
258 double sigma = FastMath.sqrt(covarianceMatrix.getEntry(i, i));
261 double entry = covarianceMatrix.getEntry(i, j) /
262 (sigma * FastMath.sqrt(covarianceMatrix.getEntry(j, j)));
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
H A DRetrCommandHandlerTest.groovy75 fileSystem.getEntry(FILE).permissions = Permissions.NONE
81 fileSystem.getEntry(DIR).permissions = Permissions.NONE
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
H A DRetrCommandHandlerTest.groovy75 fileSystem.getEntry(FILE).permissions = Permissions.NONE
81 fileSystem.getEntry(DIR).permissions = Permissions.NONE
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
H A DRetrCommandHandlerTest.groovy75 fileSystem.getEntry(FILE).permissions = Permissions.NONE
81 fileSystem.getEntry(DIR).permissions = Permissions.NONE
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
H A DCdupCommandHandlerTest.groovy53 def dir = fileSystem.getEntry(DIR)
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DRegionInfo.cpp88 BasicBlock *entry = getEntry(), *exit = getExit();
137 BasicBlock *entry = getEntry();
185 if (getEntry()->getName().empty()) {
188 WriteAsOperand(OS, getEntry(), false);
191 entryName = getEntry()->getNameStr();
211 BasicBlock *entry = getEntry(), *exit = getExit();
241 verifyWalk(getEntry(), &visited);
295 if (R->getEntry() != BB)
391 if (!DT->dominates(getEntry(), *PI))
396 if (R->getEntry() !
[all...]
/external/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h66 BlockT *OldEntry = getEntry();
76 if ((*RI)->getEntry() == OldEntry)
108 BlockT *entry = getEntry(), *exit = getExit();
162 BlockT *entry = getEntry();
215 if (getEntry()->getName().empty()) {
218 getEntry()->printAsOperand(OS, false);
220 entryName = getEntry()->getName();
240 BlockT *entry = getEntry(), *exit = getExit();
286 verifyWalk(getEntry(), &visited);
336 if (R->getEntry() !
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DBigMatrix.java26 * Matrix element indexing is 0-based -- e.g., <code>getEntry(0, 0)</code>
237 BigDecimal getEntry(int row, int column) throws MatrixIndexException; method in interface:BigMatrix
H A DOpenMapRealMatrix.java113 out.setEntry(row, col, getEntry(row, col) + iterator.value());
148 out.setEntry(row, col, getEntry(row, col) - iterator.value());
175 out.addToEntry(i, j, value * m.getEntry(k, j));
226 public double getEntry(int row, int column) throws MatrixIndexException { method in class:OpenMapRealMatrix
/external/guava/guava/src/com/google/common/collect/
H A DDescendingImmutableSortedMultiset.java58 Entry<E> getEntry(int index) { method in class:DescendingImmutableSortedMultiset
H A DEmptyImmutableSortedMultiset.java68 Entry<E> getEntry(int index) { method in class:EmptyImmutableSortedMultiset
H A DRegularImmutableMultiset.java70 Entry<E> getEntry(int index) { method in class:RegularImmutableMultiset
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DWindowsFakeFileSystemTest.groovy148 def fileEntry = fileSystem.getEntry(EXISTING_FILE)
150 assert fileEntry == fileSystem.getEntry(EXISTING_FILE.toLowerCase())
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/
H A DWindowsFakeFileSystemTest.groovy146 def fileEntry = fileSystem.getEntry(EXISTING_FILE)
148 assert fileEntry == fileSystem.getEntry(EXISTING_FILE.toLowerCase())

Completed in 1975 milliseconds

1234567891011>>