Searched defs:entry (Results 51 - 75 of 246) sorted by last modified time

12345678910

/frameworks/ex/framesequence/jni/
H A DRegistry.cpp24 Registry::Registry(const RegistryEntry& entry) { argument
25 mImpl = entry;
30 if (gHeaderBytesRequired < entry.requiredHeaderBytes) {
31 gHeaderBytesRequired = entry.requiredHeaderBytes;
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp55 static uint32_t codepoint(uint32_t entry) { return entry >> 11; } argument
56 static uint32_t value(uint32_t entry) { return entry & 0x7ff; } argument
77 static uint32_t len(uint32_t entry) { return entry >> 26; } argument
78 static uint32_t shift(uint32_t entry) { return (entry >> 20) & 0x3f; } argument
79 const uint8_t* buf(uint32_t entry) const {
80 return reinterpret_cast<const uint8_t*>(this) + pattern_offset + (entry
364 uint32_t entry = *p; local
402 uint32_t entry = trie->data[node + c]; local
[all...]
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScope.java50 ScopeEntry entry = new ScopeEntry(scopeProvider, peek);
51 sScopeItems.set(entry);
55 ScopeEntry entry = sScopeItems.get();
56 Preconditions.checkNotNull(entry, "Inconsistent scope exit");
57 sScopeItems.set(entry.mParent);
159 private static List<Location> findAbsoluteLocationFrom(ScopeEntry entry, argument
172 if (validatedContained(entry.mParent, absLocation)) {
/frameworks/data-binding/developmentPlugins/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/extensions/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/integration-tests/App With Spaces/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/integration-tests/TestApp/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/data-binding/samples/BindingDemo/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.IOException java.util.zip.ZipEntry entry java.io.OutputStream outputStream java.io. ...
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h44 /// entry - the symbol name of the entry point
45 virtual const char* entry() const { return "_start"; } function in class:mcld::GNUInfo
H A DKeyEntryMap.h35 /// EntryOrPair - A key may mapping to a signal entry or a pair of entries,
36 /// user is responsible for the type of Mapping.entry
44 EntryOrPair entry; member in struct:mcld::KeyEntryMap::Mapping
55 /// lookUp - look up the entry mapping to pKey
59 /// lookUpFirstEntry - look up the first entry mapping to pKey
63 /// lookUpSecondEntry - look up the second entry mapping to pKey
93 return mapping->entry.entry_ptr;
105 return mapping->entry.entry_ptr;
118 return mapping->entry.pair_ptr->entry1;
131 return mapping->entry
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinkerScript.cpp34 const std::string& LinkerScript::entry() const { function in class:mcld::LinkerScript
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp82 ObjectMemberEntryType* entry = m_ObjectMemberMap.insert(pFileOffset, exist); local
84 entry->setValue(pIter);
114 ArchiveMemberEntryType* entry = m_ArchiveMemberMap.insert(pName, exist); local
116 ArchiveMember& ar = entry->value();
166 /// addSymbol - add a symtab entry to symtab
172 Symbol* entry = m_SymbolFactory.allocate(); local
173 new (entry) Symbol(pName, pFileOffset, pStatus);
174 m_SymTab.push_back(entry);
H A DBranchIsland.cpp102 StubEntryType* entry = m_StubMap.insert(key, exist); local
104 entry->setValue(&pStub);
H A DELFReader.cpp442 const llvm::ELF::Elf32_Sym* entry = local
449 st_info = entry->st_info;
450 st_other = entry->st_other;
452 st_name = entry->st_name;
453 st_shndx = entry->st_shndx;
455 st_name = mcld::bswap32(entry->st_name);
456 st_shndx = mcld::bswap16(entry->st_shndx);
936 const llvm::ELF::Elf64_Sym* entry = local
943 st_info = entry->st_info;
944 st_other = entry
[all...]
H A DEhFrameHdr.cpp102 SearchTableType::const_iterator entry, entry_end = search_table.end(); local
104 for (entry = search_table.begin(); entry != entry_end; ++entry) {
105 bst[id++] = (*entry).first - m_EhFrameHdr.addr();
106 bst[id++] = (*entry).second - m_EhFrameHdr.addr();
H A DEhFrameReader.cpp136 llvm::StringRef entry = local
139 if (!transition[cur_state][token.kind](pEhFrame, entry, token)) {
322 // create and push back the CIE entry
348 // create and push back the FDE entry
H A DGarbageCollection.cpp113 // 2. get all sections defined the entry point
114 SectionVecTy entry; local
115 getEntrySections(entry);
117 // 3. find all the referenced sections those can be reached by entry
118 findReferencedSections(entry);
168 // of this section, create an entry in ReachedSections map
231 // 1. the entry symbol is the entry
291 // start from each entry, resolve the transitive closure
294 // add entry poin
[all...]
H A DGroupReader.cpp79 ArchiveListEntry* entry = new ArchiveListEntry(*ar, input); local
80 ar_list.push_back(entry);
H A DSectionSymbolSet.cpp53 SectHashTableType::entry_type* entry = local
56 entry->setValue(sym);
97 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); local
98 return entry.getEntry()->value();
102 SectHashTableType::iterator entry = m_pSectionSymbolMap->find(&pOutSect); local
103 return entry.getEntry()->value();

Completed in 1703 milliseconds

12345678910