HomeSort by relevance Sort by last modified time
    Searched full:mapping (Results 251 - 275 of 4834) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
cacheflush.h 25 #define flush_dcache_mmap_lock(mapping) do { } while (0)
26 #define flush_dcache_mmap_unlock(mapping) do { } while (0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_nis.py 26 mapping = nis.cat(nismap)
27 for k, v in mapping.items():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/components/tests/
test_strongly_connected.py 94 mapping={}
97 mapping[n] = i
98 edge=(mapping[2],mapping[3])
100 edge=(mapping[2],mapping[5])
102 edge=(mapping[3],mapping[5])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_nis.py 26 mapping = nis.cat(nismap)
27 for k, v in mapping.items():
  /external/guava/guava/src/com/google/common/collect/
Table.java 64 * Returns {@code true} if the table contains a mapping with the specified
73 * Returns {@code true} if the table contains a mapping with the specified
81 * Returns {@code true} if the table contains a mapping with the specified
89 * Returns {@code true} if the table contains a mapping with the specified
98 * {@code null} if no such mapping exists.
134 * already contained a mapping for those keys, the old value is replaced with
141 * no mapping existed for the keys
148 * mapping in {@code table}.
155 * Removes the mapping, if any, associated with the given keys.
157 * @param rowKey row key of mapping to be remove
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
TypeTokenResolutionTest.java 188 private static class Mapping<F, T> {
201 Mapping<T, F> flip() {
202 return new Mapping<T, F>() {};
205 Mapping<F, T> selfMapping() {
206 return new Mapping<F, T>() {};
211 Mapping<Integer, String> mapping = new Mapping<Integer, String>();
212 assertEquals(mapping.f, mapping.getFromType())
    [all...]
  /external/parameter-framework/parameter/
TypeElement.h 47 // Mapping info
52 * Returns the mapping associated to the current TypeElement instance
54 * @return A std::string containing the mapping as a comma separated key value pairs
91 // Mapping data creation and access
97 // Mapping info
  /external/compiler-rt/lib/asan/
asan_mapping.h 12 // Defines ASan memory mapping.
19 // The full explanation of the memory mapping could be found here:
22 // Typical shadow mapping on Linux/x86_64 with SHADOW_OFFSET == 0x00007fff8000:
46 // Default Linux/i386 mapping on x86_64 machine:
53 // Default Linux/i386 mapping on i386 machine
62 // Default Linux/MIPS32 mapping:
69 // Default Linux/MIPS64 mapping:
76 // Shadow mapping on FreeBSD/x86-64 with SHADOW_OFFSET == 0x400000000000:
83 // Shadow mapping on FreeBSD/i386 with SHADOW_OFFSET == 0x40000000:
90 // Default Windows/i386 mapping
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ucm.h 37 * Per-mapping data structure
47 * f flag for roundtrip (0), fallback (1), sub mapping (2), reverse fallback (3)
48 * or "good one-way" mapping (4).
78 /* index map for mapping by bytes first */
136 /* add a mapping to the base or extension table as appropriate */
202 * For separate files, the extension file can use a complete mapping table (.ucm file),
206 * Sort both tables, and then for each mapping direction:
208 * If intersectBase is TRUE and the base table contains a mapping
209 * that does not exist in the extension table, then this mapping is moved
214 * If the base table contains a mapping for which the input sequence i
    [all...]
  /libcore/json/src/main/java/org/json/
JSONObject.java 200 * mapping with the same name.
211 * mapping with the same name.
224 * mapping with the same name.
235 * mapping with the same name.
246 * mapping with the same name. If the value is {@code null}, any existing
247 * mapping for {@code name} is removed.
281 * this object has no mapping for {@code name}, this inserts a new mapping.
282 * If the mapping exists but its value is not an array, the existing
285 * mapping one at a time
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlet/
FilterHolder.java 195 FilterMapping mapping = new FilterMapping(); local
196 mapping.setFilterHolder(FilterHolder.this);
197 mapping.setServletNames(servletNames);
198 mapping.setDispatcherTypes(dispatcherTypes);
200 _servletHandler.addFilterMapping(mapping);
202 _servletHandler.prependFilterMapping(mapping);
208 FilterMapping mapping = new FilterMapping(); local
209 mapping.setFilterHolder(FilterHolder.this);
210 mapping.setPathSpecs(urlPatterns);
211 mapping.setDispatcherTypes(dispatcherTypes)
    [all...]
  /external/google-breakpad/src/common/windows/
omap_internal.h 113 typedef std::vector<MappedRange> Mapping;
115 // Used as a secondary search structure accompanying a Mapping.
126 // This is a description of the mapping between original and transformed
128 Mapping mapping; member in struct:google_breakpad::ImageMap
129 // For all interval endpoints in |mapping| this stores the minimum index of
130 // an interval in |mapping| that contains the endpoint. Useful for doing
  /external/libselinux/src/
mapping.c 11 #include "mapping.h"
27 * Mapping setting function
44 /* Find number of classes in the input mapping */
84 /* Set the mapping size here so the above lookups are "raw" */
105 /* If here no mapping set or the class requested is not valid. */
129 /* If here no mapping set or the perm requested is not valid. */
151 /* If here no mapping set or the class requested is not valid. */
  /external/llvm/include/llvm/CodeGen/
VirtRegMap.h 47 /// mapping. Each virtual register is required to have an entry in
54 /// mapping. Each spilled virtual register has an entry in it
60 /// mapping.
103 /// @brief creates a mapping for the specified virtual register to
115 /// register mapping
173 /// @brief create a mapping for the specifed virtual register to
176 /// @brief create a mapping for the specified virtual register to
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 1 //=-- CoverageMappingReader.h - Code coverage mapping reader ------*- C++ -*-=//
10 // This file contains support for reading coverage mapping data for
33 /// \brief Coverage mapping information for a single function.
42 /// \brief A file format agnostic iterator over coverage mapping data.
78 /// \brief Base class for the raw coverage mapping and filenames data readers.
112 /// \brief Reader for the raw coverage mapping data.
144 /// \brief Reader for the coverage mapping data that is emitted by the
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.cpp 171 mapping::mapping(command_queue &q, resource &r, function in class:mapping
192 mapping::mapping(mapping &&m) : function in class:mapping
198 mapping::~mapping() {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 104 * Store the value for the specified key. If this object already contained a mapping
119 * Returns <code>true</code> if this object contains a mapping for the specified key.
122 * @return <code>true</code> if there is a mapping for the key
143 * no mapping for this key. A return value of null does not necessarily indicate that
144 * this object contains no mapping for the key; it's also possible that the value was
160 * no mapping for this key. A return value of null does not necessarily indicate that
161 * this object contains no mapping for the key; it's also possible that the value was
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
InvocationRecord.java 103 * Store the value for the specified key. If this object already contained a mapping
119 * Returns <code>true</code> if this object contains a mapping for the specified key.
122 * @return <code>true</code> if there is a mapping for the key
143 * no mapping for this key. A return value of null does not necessarily indicate that
144 * this object contains no mapping for the key; it's also possible that the value was
161 * no mapping for this key. A return value of null does not necessarily indicate that
162 * this object contains no mapping for the key; it's also possible that the value was
  /external/selinux/libselinux/src/
mapping.c 11 #include "mapping.h"
27 * Mapping setting function
44 /* Find number of classes in the input mapping */
84 /* Set the mapping size here so the above lookups are "raw" */
105 /* If here no mapping set or the class requested is not valid. */
129 /* If here no mapping set or the perm requested is not valid. */
151 /* If here no mapping set or the class requested is not valid. */
  /external/v8/src/
splay-tree.h 56 // Checks if there is a mapping for the key.
61 // is enabled and provides access to the mapping for the key.
66 // provides access to the mapping for the key.
69 // Finds the mapping with the greatest key less than or equal to the
73 // Find the mapping with the greatest key in this tree.
76 // Finds the mapping with the least key greater than or equal to the
80 // Find the mapping with the least key in this tree.
  /libcore/luni/src/main/java/java/sql/
SQLData.java 21 * An interface for the custom mapping of an SQL <i>User Defined Type</i> (UDT)
30 * mapping. The application can use this object just like any other Java object
32 * {@link PreparedStatement#setObject} method which performs the reverse mapping
35 * Normally the implementation of a custom mapping is generated by
55 * @return a string with UDT type name for this object mapping, passed to
83 * read for the custom mapping.
108 * the custom mapping.
  /frameworks/base/core/java/android/util/
LongSparseLongArray.java 29 * for each mapping.
92 * if no such mapping has been made.
100 * if no such mapping has been made.
113 * Removes the mapping from the specified key, if there was any.
124 * Removes the mapping at the given index.
133 * Adds a mapping from the specified key to the specified value,
134 * replacing the previous mapping from the specified key if there
161 * the key from the <code>index</code>th key-value mapping that this
175 * the value from the <code>index</code>th key-value mapping that this
SparseIntArray.java 29 * for each mapping.
90 * if no such mapping has been made.
98 * if no such mapping has been made.
111 * Removes the mapping from the specified key, if there was any.
122 * Removes the mapping at the given index.
131 * Adds a mapping from the specified key to the specified value,
132 * replacing the previous mapping from the specified key if there
159 * the key from the <code>index</code>th key-value mapping that this
173 * the value from the <code>index</code>th key-value mapping that this
SparseLongArray.java 29 * for each mapping.
90 * if no such mapping has been made.
98 * if no such mapping has been made.
111 * Removes the mapping from the specified key, if there was any.
122 * Removes the mapping at the given index.
131 * Adds a mapping from the specified key to the specified value,
132 * replacing the previous mapping from the specified key if there
159 * the key from the <code>index</code>th key-value mapping that this
173 * the value from the <code>index</code>th key-value mapping that this
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 70 * if no such mapping has been made.
78 * if no such mapping has been made.
91 * Removes the mapping from the specified key, if there was any.
112 * Removes the mapping at the specified index.
147 * Adds a mapping from the specified key to the specified value,
148 * replacing the previous mapping from the specified key if there
192 * the key from the <code>index</code>th key-value mapping that this
205 * the value from the <code>index</code>th key-value mapping that this
218 * value for the <code>index</code>th key-value mapping that this

Completed in 465 milliseconds

<<11121314151617181920>>