Searched refs:mapping (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/Target/
H A DKeyEntryMap.h35 /// EntryOrPair - A key may mapping to a signal entry or a pair of entries,
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
90 const_iterator mapping, mEnd = m_Pool.end(); local
91 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping) {
92 if (mapping->key == &pKey) {
93 return mapping
102 iterator mapping, mEnd = m_Pool.end(); local
115 const_iterator mapping, mEnd = m_Pool.end(); local
128 const_iterator mapping, mEnd = m_Pool.end(); local
141 const_iterator mapping, mEnd = m_Pool.end(); local
154 const_iterator mapping, mEnd = m_Pool.end(); local
167 Mapping mapping; local
177 Mapping mapping; local
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DKeySetManagerServiceTest.java128 ArraySet<Long> mapping = ksMapping.get(1);
129 assertEquals(1, mapping.size());
130 assertTrue(mapping.contains(new Long(1)));
158 ArraySet<Long> mapping = ksMapping.get(1);
159 assertEquals(1, mapping.size());
160 assertTrue(mapping.contains(new Long(1)));
193 ArraySet<Long> mapping = ksMapping.get(2);
194 assertEquals(1, mapping.size());
195 assertTrue(mapping.contains(new Long(2)));
232 ArraySet<Long> mapping
[all...]
H A DPackageManagerSettingsTests.java207 /* verify mapping is correct (ks -> pub keys) */
209 ArraySet<Long> mapping = ksMapping.get(1);
210 assertEquals(1, mapping.size());
211 assertTrue(mapping.contains(new Long(1)));
212 mapping = ksMapping.get(2);
213 assertEquals(1, mapping.size());
214 assertTrue(mapping.contains(new Long(2)));
215 mapping = ksMapping.get(3);
216 assertEquals(1, mapping.size());
217 assertTrue(mapping
[all...]
/frameworks/rs/
H A DrsClosure.cpp86 auto mapping = mArgDeps[dep]; local
87 if (mapping == nullptr) {
88 mapping = new Map<int, ObjectBaseRef<ScriptFieldID>>();
89 mArgDeps[dep] = mapping;
91 (*mapping)[i].set(const_cast<ScriptFieldID*>(depFieldIDs[i]));
98 auto mapping = mGlobalDeps[dep]; local
99 if (mapping == nullptr) {
100 mapping = new Map<const ScriptFieldID*,
102 mGlobalDeps[dep] = mapping;
105 (*mapping)[fieldID
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
H A Dext.kt26 private val mapping = hashMapOf<K, T>()
28 val t = mapping.get(thisRef)
33 mapping.put(thisRef, result)
39 private val mapping = hashMapOf<K, VersionedResult<T>>()
41 val t = mapping.get(thisRef)
47 mapping.put(thisRef, VersionedResult(version, result))
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h146 typedef std::pair<Output*, Input*> mapping; typedef in class:mcld::SectionMap
162 mapping find(const std::string& pInputFile, const std::string& pInputSection);
167 std::pair<mapping, bool> insert(
171 std::pair<mapping, bool> insert(const InputSectDesc& pInputDesc,
/frameworks/rs/api/
H A Drs_allocation_data.spec39 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
43 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
65 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
72 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp77 std::pair<SectionMap::mapping, bool> res =
H A DGNULDBackend.cpp149 LinkerScript::AddressMap::const_iterator mapping = local
151 if (pScript.addressMap().end() != mapping)
152 return mapping.getEntry()->value();
2146 // use address mapping in script options
/frameworks/base/core/java/android/view/
H A DViewDebug.java98 * A mapping can be defined to map int values to specific strings. For
100 * actually mean VISIBLE, INVISIBLE and GONE. A mapping can be used to see
104 * @ViewDebug.ExportedProperty(mapping = {
116 IntToString[] mapping() default { };
119 * A mapping can be defined to map array indices to specific strings.
120 * A mapping can be used to see human readable values for the indices
135 * @see #mapping()
140 * A flags mapping can be defined to map flags encoded in an integer to
141 * specific strings. A mapping can be used to see human readable values
204 * Defines a mapping fro
1350 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
[all...]
H A DWindowManager.java190 @ViewDebug.ExportedProperty(mapping = {
H A DView.java1944 * Array of horizontal layout direction flags for mapping attribute "layoutDirection" to correct
2039 * Array of text direction flags for mapping attribute "textDirection" to correct
2169 * Array of text direction flags for mapping attribute "textAlignment" to correct
3683 @ViewDebug.ExportedProperty(category = "drawing", mapping = {
7407 @ViewDebug.ExportedProperty(mapping = {
7576 @ViewDebug.ExportedProperty(category = "layout", mapping = {
7631 @ViewDebug.ExportedProperty(category = "layout", mapping = {
8527 @ViewDebug.ExportedProperty(category = "accessibility", mapping = {
13588 @ViewDebug.ExportedProperty(mapping = {
20261 @ViewDebug.ExportedProperty(category = "text", mapping
[all...]
H A DViewGroup.java674 @ViewDebug.ExportedProperty(category = "focus", mapping = {
5674 @ViewDebug.ExportedProperty(category = "drawing", mapping = {
6800 @ViewDebug.ExportedProperty(category = "layout", mapping = {
6811 @ViewDebug.ExportedProperty(category = "layout", mapping = {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DResourceExpr.java100 final Map<String, ModelClass> mapping = getResourceToTypeMapping(
102 final ModelClass modelClass = mapping.get(mResourceType);
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp680 mcld::StringEntry<uint64_t>* mapping = local
682 mapping->setValue(addr);
695 mcld::StringEntry<uint64_t>* mapping = local
697 mapping->setValue(addr);
710 mcld::StringEntry<uint64_t>* mapping = local
712 mapping->setValue(addr);
725 mcld::StringEntry<uint64_t>* mapping = local
727 mapping->setValue(addr);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp186 SectionMap::mapping SectionMap::find(const std::string& pInputFile,
219 std::pair<SectionMap::mapping, bool> SectionMap::insert(
252 std::pair<SectionMap::mapping, bool> SectionMap::insert(
H A DObjectBuilder.cpp57 SectionMap::mapping pair = m_Module.getScript().sectionMap().find(
/frameworks/base/core/java/android/app/
H A DActionBar.java1320 @ViewDebug.ExportedProperty(category = "layout", mapping = {
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
H A DExprModelTest.java82 final String[] mapping = mExprModel.getFlagMapping();
83 for (int i = 0; i < mapping.length; i++) {
84 L.d("flag %d: %s", i, mapping[i]);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt692 fun flagMapping() = kcode("/* flag mapping") {
694 val mapping = model.getFlagMapping()
695 for (i in mapping.indices) {
696 tab("flag $i: ${mapping[i]}")
699 nl("flag mapping end*/")
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java800 @ViewDebug.ExportedProperty(category = "layout", mapping = {
/frameworks/av/services/audioflinger/
H A DThreads.cpp356 static const struct mapping { struct
411 const mapping *entry;
441 static const struct mapping { struct
451 const mapping *entry;
475 static const struct mapping { struct
490 const mapping *entry;
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs801 description="How to add maps and mapping information to your app.">
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java1889 @ViewDebug.ExportedProperty(category = "layout", mapping = {
H A DRelativeLayout.java1219 }, mapping = {

Completed in 741 milliseconds

12