HomeSort by relevance Sort by last modified time
    Searched full:currententry (Results 1 - 25 of 43) sorted by null

1 2

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
ZipMultiReportOutput.java 27 private OutputStream currentEntry;
50 if (currentEntry != null) {
51 currentEntry.close();
55 currentEntry = new EntryOutput();
56 return currentEntry;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SampleToChunkBox.java 100 SampleToChunkBox.Entry currentEntry = iterator.next();
103 numberOfSamples[i - 1] = currentEntry.getSamplesPerChunk();
104 if (i == currentEntry.getFirstChunk()) {
105 currentEntry = iterator.next();
108 numberOfSamples[0] = currentEntry.getSamplesPerChunk();
  /external/skia/src/sfnt/
SkOTUtils.cpp 100 SkSFNTHeader::TableDirectoryEntry* currentEntry = reinterpret_cast<SkSFNTHeader::TableDirectoryEntry*>(data + sizeof(SkSFNTHeader));
101 SkSFNTHeader::TableDirectoryEntry* endEntry = currentEntry + numTables;
103 for (; currentEntry < endEntry; ++currentEntry) {
104 uint32_t oldOffset = SkEndian_SwapBE32(currentEntry->offset);
106 currentEntry->offset = SkEndian_SwapBE32(SkToU32(oldOffset - oldNameTablePhysicalSize));
108 if (SkOTTableHead::TAG == currentEntry->tag) {
109 headTableEntry = currentEntry;
  /external/llvm/include/llvm/Support/
YAMLParser.h 304 /// BaseT must have a ValueT* member named CurrentEntry and a member function
305 /// increment() which must set CurrentEntry to 0 to create an end iterator.
314 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
315 return Base->CurrentEntry;
319 assert(Base && Base->CurrentEntry &&
321 return *Base->CurrentEntry;
325 assert(Base && Base->CurrentEntry && "Attempted to access end iterator!");
326 return Base->CurrentEntry;
333 Base->CurrentEntry != Other.Base->CurrentEntry;
    [all...]
FileSystem.h 740 directory_entry CurrentEntry;
772 const directory_entry &operator*() const { return State->CurrentEntry; }
773 const directory_entry *operator->() const { return &State->CurrentEntry; }
779 return State->CurrentEntry == directory_entry();
781 return RHS.State->CurrentEntry == directory_entry();
782 return State->CurrentEntry == RHS.State->CurrentEntry;
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 161 Map.Entry<E, Count> currentEntry;
177 currentEntry = entryIterator.next();
178 occurrencesLeft = currentEntry.getValue().get();
182 return currentEntry.getKey();
188 int frequency = currentEntry.getValue().get();
192 if (currentEntry.getValue().addAndGet(-1) == 0) {
Multisets.java     [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 158 Map.Entry<E, Count> currentEntry;
174 currentEntry = entryIterator.next();
175 occurrencesLeft = currentEntry.getValue().get();
179 return currentEntry.getKey();
185 int frequency = currentEntry.getValue().get();
189 if (currentEntry.getValue().addAndGet(-1) == 0) {
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 106 /// \brief Sets \c CurrentEntry to the next entry in the directory on success,
109 Status CurrentEntry;
121 if (!Impl->CurrentEntry.isStatusKnown())
132 if (EC || !Impl->CurrentEntry.isStatusKnown())
137 const Status &operator*() const { return Impl->CurrentEntry; }
138 const Status *operator->() const { return &Impl->CurrentEntry; }
142 return Impl->CurrentEntry.equivalent(RHS.Impl->CurrentEntry);
  /external/skia/src/pdf/
SkPDFDevice.cpp 258 GraphicStateEntry* currentEntry() { return &fEntries[fStackDepth]; }
429 if (clipStack == currentEntry()->fClipStack) {
435 if (clipStack == currentEntry()->fClipStack) {
441 currentEntry()->fClipStack = clipStack;
442 currentEntry()->fClipRegion = clipRegion;
506 if (matrix == currentEntry()->fMatrix) {
510 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) {
516 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask);
524 currentEntry()->fMatrix = matrix;
530 if (state.fShaderIndex != currentEntry()->fShaderIndex)
    [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /external/llvm/lib/Support/
YAMLParser.cpp     [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
Cache.java 299 CacheEntry<K,V> currentEntry = cacheMap.remove(key);
302 if ((currentEntry != null) && (entry != currentEntry)) {
303 cacheMap.put(key, currentEntry);
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 244 CurrentEntry = Status::copyWithNewName(S, Iter->path());
254 CurrentEntry = Status();
258 CurrentEntry = Status::copyWithNewName(S, Iter->path());
357 CurrentEntry = Status();
360 CurrentEntry = *CurrentDirIter;
361 StringRef Name = llvm::sys::path::filename(CurrentEntry.getName());
634 CurrentEntry = I->second->getStatus();
639 // When we're at the end, make CurrentEntry invalid and DirIterImpl will do
641 CurrentEntry = I != E ? I->second->getStatus() : Status();
    [all...]
  /frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp 374 inline const char* currentEntry() const {
414 const char* fileName = it->currentEntry();
464 const char* fileName = it->currentEntry();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectory.java 285 for (FatLfnDirectoryEntry currentEntry : shortNameIndex.values()) {
286 FatDirectoryEntry[] encoded = currentEntry.compactForm();
  /external/llvm/lib/Support/Unix/
Path.inc 480 it.CurrentEntry = directory_entry(path_null.str());
488 it.CurrentEntry = directory_entry();
502 it.CurrentEntry.replace_filename(name);
  /external/llvm/lib/Support/Windows/
Path.inc 625 it.CurrentEntry = directory_entry(directory_entry_path);
635 it.CurrentEntry = directory_entry();
661 it.CurrentEntry.replace_filename(Twine(directory_entry_path_utf8));
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 87 CurrentEntry = I->second;
96 CurrentEntry = I->second;
101 CurrentEntry = vfs::Status();
    [all...]
  /external/pcre/dist/
pcre_jit_compile.c 401 recurse_entry *currententry; member in struct:compiler_common
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 

Completed in 2050 milliseconds

1 2