HomeSort by relevance Sort by last modified time
    Searched refs:getEntry (Results 1 - 25 of 487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DirectoryCategory.java 36 public DirectoryEntry getEntry(int i) {
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
BaseRecipientChip.java 70 RecipientEntry getEntry();
InvisibleRecipientChip.java 80 public RecipientEntry getEntry() {
81 return mDelegate.getEntry();
VisibleRecipientChip.java 78 public RecipientEntry getEntry() {
79 return mDelegate.getEntry();
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 51 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
56 zentry = zfile.getEntry("testdir1");
84 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
85 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
108 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
113 zfile.getEntry("File2.txt");
129 zentry = zfile.getEntry("File2.txt");
ZipEntryTest.java 70 assertNotNull(filename, zipFile.getEntry(filename));
116 assertNotNull(zipFile.getEntry(maxLengthName));
144 assertEquals(maxLengthExtra.length, zipFile.getEntry("x").getExtra().length);
195 assertEquals(maxLengthComment, zipFile.getEntry("x").getComment());
225 assertEquals(comment, zipFile.getEntry("x").getComment());
226 assertTrue(Arrays.equals(extra, zipFile.getEntry("x").getExtra()));
228 assertEquals(comment, zipFile.getEntry("y").getComment());
229 assertTrue(Arrays.equals(extra, zipFile.getEntry("y").getExtra()));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipFileTest.java 85 return zip.getEntry("File1.txt");
108 * zip.getEntry("File1.txt"); assertNotNull("Did not find entry",
126 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
127 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
184 * java.util.zip.ZipFile#getEntry(java.lang.String)
188 // java.util.zip.ZipFile.getEntry(java.lang.String)
189 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
194 zentry = zfile.getEntry("testdir1/File1.txt");
196 zentry = zfile.getEntry("testdir1/");
204 zentry = zfile.getEntry("testdir1/testdir1")
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexSolver.java 65 if (MathUtils.compareTo(tableau.getEntry(0, i), minValue, epsilon) < 0) {
66 minValue = tableau.getEntry(0, i);
84 final double rhs = tableau.getEntry(i, tableau.getWidth() - 1);
85 final double entry = tableau.getEntry(i, col);
106 if (MathUtils.equals(tableau.getEntry(row, column), 1, epsilon) &&
134 double pivotVal = tableau.getEntry(pivotRow, pivotCol);
140 double multiplier = tableau.getEntry(i, pivotCol);
165 if (!MathUtils.equals(tableau.getEntry(0, tableau.getRhsOffset()), 0, epsilon)) {
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
AbstractStoreFileCommandHandlerTestCase.groovy 46 fileSystem.getEntry(FILE).permissions = Permissions.NONE
52 fileSystem.getEntry(DIR).permissions = new Permissions('r-xr-xr-x')
59 fileSystem.getEntry(DIR).permissions = new Permissions('rw-rw-rw-')
94 FileSystemEntry fileEntry = fileSystem.getEntry(outputFile)
MkdCommandHandlerTest.groovy 46 def dirEntry = fileSystem.getEntry(DIR)
55 def dirEntry = fileSystem.getEntry(DIR)
76 fileSystem.getEntry(PARENT).permissions = new Permissions('r-xr-xr-x')
82 fileSystem.getEntry(PARENT).permissions = new Permissions('rw-rw-rw-')
  /frameworks/av/include/media/
StringArray.h 65 const char* getEntry(int idx) const {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectory.java 48 public FsDirectoryEntry getEntry(String name) throws IOException;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractFieldMatrix.java 31 * <p>All the methods implemented here use {@link #getEntry(int, int)} to access
180 out.setEntry(row, col, getEntry(row, col).add(m.getEntry(row, col)));
199 out.setEntry(row, col, getEntry(row, col).subtract(m.getEntry(row, col)));
215 out.setEntry(row, col, getEntry(row, col).add(d));
231 out.setEntry(row, col, getEntry(row, col).multiply(d));
254 sum = sum.add(getEntry(row, i).multiply(m.getEntry(i, col)));
278 dataI[j] = getEntry(i, j)
    [all...]
AbstractRealMatrix.java 28 * <p>All the methods implemented here use {@link #getEntry(int, int)} to access
88 out.setEntry(row, col, getEntry(row, col) + m.getEntry(row, col));
107 out.setEntry(row, col, getEntry(row, col) - m.getEntry(row, col));
123 out.setEntry(row, col, getEntry(row, col) + d);
139 out.setEntry(row, col, getEntry(row, col) * d);
162 sum += getEntry(row, i) * m.getEntry(i, col);
186 dataI[j] = getEntry(i, j)
    [all...]
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 61 *name = mNames.getEntry(index);
62 *value = mValues.getEntry(index);
80 ALOGV("%s: %s", mNames.getEntry(i), mValues.getEntry(i));
94 const char *name = mNames.getEntry(i);
95 const char *value = mValues.getEntry(i);
135 const char *name = mNames.getEntry(i);
136 const char *value = mValues.getEntry(i);
168 const char *name = mNames.getEntry(i);
169 uint8_t* src = (uint8_t *)mValues.getEntry(i)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
AbstractFakeFileSystemTestCase.groovy 117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
164 def fileEntry = fileSystem.getEntry(path)
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.h 46 EntryRef getEntry(AsmPrinter &Asm, StringRef Str);
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 97 BItor(BlockTraits::child_begin(node->getEntry())) {
101 while (BlockTraits::child_end(node->getEntry()) != BItor && isExit(*BItor))
111 BItor(BlockTraits::child_end(node->getEntry())) {}
137 while (BItor != BlockTraits::child_end(getNode()->getEntry())
177 Itor(BlockTraits::child_begin(node->getEntry())) {
183 while (BlockTraits::child_end(Node->getEntry()) != Itor
191 Itor(BlockTraits::child_end(node->getEntry())) {
222 while (Itor != succ_end(Node->getEntry())
281 return R->getNode(R->getEntry()); \
295 return R->getBBNode(R->getEntry()); \
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSortedMultiset.java 52 Entry<E> getEntry(int index) {
60 return getEntry(0);
65 return getEntry(length - 1);
RangeMap.java 52 Map.Entry<Range<K>, V> getEntry(K key);
  /external/skia/src/core/
SkBitmapHeap.h 123 SkBitmapHeapEntry* entry = getEntry(slot);
138 SkBitmapHeapEntry* entry = getEntry(slot);
163 SkBitmapHeapEntry* getEntry(int32_t slot) const {
  /hardware/libhardware/modules/camera/
VendorTags.cpp 109 const Entry* getEntry(uint32_t tag)
171 const Entry* entry = getEntry(tag);
181 const Entry* entry = getEntry(tag);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 145 public FileSystemEntry getEntry(String path);
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 122 if (iter.getEntry() == NULL)
144 m_pEntry = m_Iter.getEntry();
193 m_pEntry = m_Iter.getEntry();
214 m_pEntry = m_Iter.getEntry();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DreamTimePreference.java 48 return getEntry();

Completed in 894 milliseconds

1 2 3 4 5 6 7 8 91011>>