Searched defs:it (Results 1 - 25 of 93) sorted by last modified time

1234

/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.cpp112 // An invoke should be in a batch by itself, so it conflicts with any other
125 const auto& it = argDeps.find(batched); local
126 if (it != argDeps.end()) {
127 const auto& args = (*it).second;
140 const auto& it = argDeps.find(lastBatched); local
142 if (it == argDeps.end()) {
146 const auto& args = (*it).second;
304 // The output filename has to be the last, in case we need to pop it out and
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/cmds/installd/
H A Dsystem_properties.h36 // Did not find equals sign, or it's the first character - isn't a valid line.
52 auto it = properties_.find(key); local
53 if (it != properties_.end()) {
54 return &it->second;
/frameworks/native/libs/binder/
H A DPersistableBundle.cpp59 const auto& it = map.find(key); local
60 if (it == map.end()) return false;
61 *out = it->second;
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp31 int32_t* it, int32_t c0, int32_t c1, int32_t c2);
280 // can't handle it.
303 int compute_iterators_t::iteratorsScale(GGLfixed* it, argument
325 it[0] = c;
326 it[1] = dcdx;
327 it[2] = dcdy;
331 void compute_iterators_t::iterators1616(GGLfixed* it, argument
342 it[0] = c;
343 it[1] = dcdx;
344 it[
347 iterators0032(int64_t* it, int32_t c0, int32_t c1, int32_t c2) const argument
362 iterators0032(int32_t* it, int32_t c0, int32_t c1, int32_t c2) const argument
368 iterators0032(int32_t* it, int32_t c0, int32_t c1, int32_t c2) const argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp225 Region::const_iterator it = reg.begin(); local
227 while (it != end) {
228 out.orSelf(transform(*it++));
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp42 // TODO(jessehall): This file currently builds up global data structures as it
371 // Check whether it *may* be possible to load the library directly from
409 auto it = std::find_if(extensions.cbegin(), extensions.cend(), local
413 return (it != extensions.cend()) ? &*it : nullptr;
/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/minikin/libs/minikin/
H A DFontLanguageListCache.cpp116 std::unordered_map<std::string, uint32_t>::const_iterator it = local
118 if (it != inst->mLanguageListLookupTable.end()) {
119 return it->second;
122 // Given language list is not in cache. Insert it and return newly assigned ID.
148 // The default language list has only one FontLanguage and it is the unsupported language.
/frameworks/compile/mclinker/unittests/
H A DStringTableTest.cpp18 // create testee. modify it if need
56 StringTable::iterator it = m_pTestee->begin(); local
57 ASSERT_STREQ(*it, "Hello");
58 ++it;
59 ASSERT_STREQ(*it, "World");
60 ++it;
61 ASSERT_STREQ(*it, "Media");
62 ++it;
63 ASSERT_STREQ(*it, "Tek");
64 ++it;
[all...]
H A DSymbolTableTest.cpp17 // create testee. modify it if need
37 mcld::SymbolTable<>::iterator it; local
38 it = m_pTestee->begin();
39 ASSERT_EQ(it, m_pTestee->end());
/frameworks/compile/slang/
H A Dslang_rs_context.cpp101 auto it = mExportForEachMap.find(funcName); local
102 if (it == mExportForEachMap.end()) {
105 return it->second;
344 // unused (in the case where it is only referenced by #pragma rs
348 // Each constituent function "f" of a reduction kernel gets a dummy variable generated for it:
/frameworks/data-binding/internal-prebuilts/com/android/databinding/localizemaven/1.1/
H A Dlocalizemaven-1.1.jar ... lang.Object doCall (java.lang.Object) Object it public java.lang.Object getLicense () public java. ...
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h100 bfs_iterator it = bfs_iterator(BinaryTreeBase<Input>::m_Root.node.left); local
101 if (it.isGroup())
102 ++it;
103 return it;
111 const_bfs_iterator it = local
113 if (it.isGroup())
114 ++it;
115 return it;
123 dfs_iterator it = dfs_iterator(BinaryTreeBase<Input>::m_Root.node.left); local
124 if (it
134 const_dfs_iterator it = local
155 iterator it = iterator(BinaryTreeBase<Input>::m_Root.node.left); local
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DArchive.cpp135 ArchiveMemberMapType::iterator it = m_ArchiveMemberMap.find(pName); local
136 if (it != m_ArchiveMemberMap.end())
137 return &(it.getEntry()->value());
H A DBranchIsland.cpp88 StubMapType::iterator it = m_StubMap.find(key); local
89 if (it != m_StubMap.end()) {
90 assert(it.getEntry()->value() != NULL);
91 return it.getEntry()->value();
H A DDebugString.cpp43 SectionData::iterator it, end = pSection.getSectionData()->end(); local
44 for (it = pSection.getSectionData()->begin(); it != end; ++it) {
45 if ((*it).getKind() == Fragment::Region) {
46 RegionFragment* frag = llvm::cast<RegionFragment>(&(*it));
H A DGarbageCollection.cpp89 ReachedSectionsTy::iterator it = m_ReachedSections.find(&pSection); local
90 if (it == m_ReachedSections.end())
92 return &it->second;
134 // 2. it has no reloc data. (All symbols in the input relocs are in the
308 // means no referenced between it and other sections, then skip it
316 SectionListTy::iterator it, end = reach_list->end(); local
317 for (it = reach_list->begin(); it != end; ++it) {
[all...]
H A DGroupReader.cpp113 ArchiveListType::iterator it = ar_list.begin(); local
118 for (it = ar_list.begin(); it != end; ++it) {
119 Archive& ar = (*it)->archive;
120 // if --whole-archive is given to this archive, no need to read it again
130 for (it = ar_list.begin(); it != end; ++it) {
131 Archive& ar = (*it)
[all...]
H A DIdenticalCodeFolding.cpp89 KeptSections::iterator it = m_KeptSections.begin() + kept_index; local
90 LDSection* kept_sect = (*it).first;
91 Input* kept_obj = (*it).second.first;
199 for (ChecksumMap::iterator it = ret.first; it != ret.second; ++it) {
200 size_t kept_index = (*it).second;
288 KeptSections::const_iterator it = pKeptSections.find(def); local
289 llvm::format_object<size_t> kept_info("%x", (*it).second.second);
H A DMergedStringTable.cpp19 string_map_iterator it, end = m_StringMap.end(); local
21 for (it = m_StringMap.begin(); it != end; ++it) {
22 it->setValue(offset);
23 offset += it->getKey().size() + 1;
30 string_map_iterator it, end = m_StringMap.end(); local
31 for (it = m_StringMap.begin(); it != end; ++it) {
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp137 // create the output symbol if it dose not have one
455 // shrad/executable objects, so it's fine to do so.
522 LinkerScript::Assignments::iterator it, ie = script.assignments().end(); local
524 for (it = script.assignments().begin(); it != ie; ++it) {
526 assert((*it).second.symbol().type() == Operand::SYMBOL);
527 const llvm::StringRef symName = (*it).second.symbol().name();
544 switch ((*it).second.type()) {
576 (*it)
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64CA53ErratumStub.cpp57 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it) {
58 addFixup(**it);
103 fixup_iterator it = fixup_begin(); local
106 Relocation::Create((*it)->type(),
107 *(FragmentRef::Create(*this, (*it)->offset())),
108 (*it)->addend());
118 ++it;
119 reloc = Relocation::Create((*it)
[all...]
H A DAArch64GOT.cpp67 entry_iterator it, end = m_GOTPLT.end(); local
68 for (it = m_GOTPLT.begin(); it != end; ++it) {
69 AArch64GOTEntry* entry = *it;
81 entry_iterator it, end = m_GOT.end(); local
82 for (it = m_GOT.begin(); it != end; ++it) {
83 AArch64GOTEntry* entry = *it;
[all...]

Completed in 1478 milliseconds

1234