HomeSort by relevance Sort by last modified time
    Searched refs:mapped (Results 1 - 25 of 52) sorted by null

1 2 3

  /dalvik/dx/src/com/android/dx/io/instructions/
BaseCodeCursor.java 46 int mapped = baseAddressMap.get(cursor); local
47 return (mapped >= 0) ? mapped : cursor;
  /external/apache-http/src/org/apache/commons/codec/language/
Soundex.java 92 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
93 * letter is mapped. This implementation contains a default map for US_ENGLISH
111 * Every letter of the alphabet is "mapped" to a numerical value. This char array holds the values to which each
112 * letter is mapped. This implementation contains a default map for US_ENGLISH
132 * if a character is not mapped
148 * if a character is not mapped
165 * if the character is not mapped
209 * Thrown if <code>ch</code> is not mapped.
214 throw new IllegalArgumentException("The character is not mapped: " + ch);
247 * if a character is not mapped
258 char last, mapped; local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitAllocator.java 43 /** indexed by old reg; the set of old regs we've mapped */
44 private final BitSet mapped; field in class:FirstFitAllocator
51 mapped = new BitSet(ssaMeth.getRegCount());
81 if (mapped.get(i)) {
109 if (mapped.get(j) || isDefinitionMoveParam(j)) {
128 mapped.set(j);
132 mapped.set(i);
  /external/skia/gpu/src/
GrGLIndexBuffer.cpp 89 GrGLint mapped; local
91 GR_GL_BUFFER_MAPPED, &mapped));
92 GrAssert(!!mapped == !!fLockPtr);
GrGLVertexBuffer.cpp 88 GrGLint mapped; local
90 GR_GL(GetBufferParameteriv(GR_GL_ARRAY_BUFFER, GR_GL_BUFFER_MAPPED, &mapped));
91 GrAssert(!!mapped == !!fLockPtr);
  /external/webkit/Source/JavaScriptCore/wtf/
RefPtrHashMap.h 40 static void translate(ValueType& location, RawKeyType key, const MappedType& mapped)
43 location.second = mapped;
209 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped)
212 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
217 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, const MappedType& mapped)
219 return m_impl.template add<RawKeyType, MappedType, RawKeyTranslator>(key, mapped);
224 HashMap<RefPtr<T>, U, V, W, X>::set(const KeyType& key, const MappedType& mapped)
226 pair<iterator, bool> result = inlineAdd(key, mapped);
228 // add call above didn't change anything, so set the mapped value
229 result.first->second = mapped;
    [all...]
HashMap.h 123 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped)
126 location.second = mapped;
137 static void translate(ValueType& location, const T& key, const MappedType& mapped, unsigned hashCode)
140 location.second = mapped;
239 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped)
242 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
247 HashMap<T, U, V, W, X>::set(const KeyType& key, const MappedType& mapped)
249 pair<iterator, bool> result = inlineAdd(key, mapped);
251 // add call above didn't change anything, so set the mapped value
252 result.first->second = mapped;
    [all...]
  /external/valgrind/main/memcheck/tests/
supp_unknown.stderr.exp 3 Access not within mapped region at address 0x........
badjump.stderr.exp 9 Access not within mapped region at address 0x........
  /external/valgrind/main/none/tests/linux/
blockfault.stderr.exp 4 Access not within mapped region at address 0x........
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 1723 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_ONLY, local
1734 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0, local
1746 MappedByteBuffer mapped = null; local
1778 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, local
1790 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0, local
1814 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 10, local
1825 MappedByteBuffer mapped = null; local
1854 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_WRITE, local
1893 MappedByteBuffer mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, local
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv6.js 35 // Only mapped and compat addresses can have IPv4 syntax embedded.
62 // Too many components means not an IP address. Similarly with too few if using IPv4 compat or mapped addresses.
  /dalvik/dexlist/
DexList.cpp 204 bool mapped = false; local
218 mapped = true;
236 if (mapped)
  /external/icu4c/test/intltest/
testidn.cpp 286 int32_t mapped = 0; local
305 mapped++;
317 test.logln("Number of Mapped code points : %i \n",mapped);
318 test.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm);
  /frameworks/base/core/java/android/view/
ViewDebug.java 1567 final IntToString mapped = mapping[j]; local
1657 final IntToString mapped = indexMapping[k]; local
1668 final IntToString mapped = mapping[k]; local
    [all...]
  /frameworks/base/cmds/servicemanager/
binder.c 90 void *mapped; member in struct:binder_state
112 bs->mapped = mmap(NULL, mapsize, PROT_READ, MAP_PRIVATE, bs->fd, 0);
113 if (bs->mapped == MAP_FAILED) {
132 munmap(bs->mapped, bs->mapsize);
  /external/chromium/base/
process_util.h 489 // priv: Pages mapped only by this process
506 // mapped: These pages are mapped into the view of a section (backed by
508 // image: These pages are mapped into the view of an image section (backed by
511 CommittedKBytes() : priv(0), mapped(0), image(0) {}
513 size_t mapped; member in struct:base::CommittedKBytes
process_util_win.cc 657 usage->mapped = 0;
664 usage->mapped = committed_mapped / 1024;
  /external/chromium/chrome/browser/
process_info_snapshot_mac.cc 432 usage->mapped = 0;
438 usage->mapped = 0;
  /external/javasqlite/src/main/java/SQLite/
Database.java 956 String mapped = (String) mapLibraryName.invoke(null, args); typedefs
957 System.load(path + java.io.File.separator + mapped);
  /external/v8/src/
unicode.cc 175 uchar mapped = mapping.chars[length]; local
176 if (mapped == MultiCharacterSpecialCase<kW>::kEndOfEncoding) break;
178 result[length] = mapped + (key - entry);
180 result[length] = mapped;
    [all...]
  /frameworks/base/include/binder/
Parcel.h 246 void init(bool mapped, void* data, size_t size);
  /external/doclava/src/com/google/doclava/
Doclava.java 406 String mapped = escapeChars.get(c); local
407 if (mapped != null) {
409 b = new StringBuffer(s.length() + mapped.length());
414 b.append(mapped);
    [all...]
  /external/skia/src/effects/
SkGradientShader.cpp 600 uint16_t* mapped = fCache16Storage; // storage for mapped data
604 mapped[i] = linear[index];
605 mapped[i + kCache16Count] = linear[index + kCache16Count];
648 SkPMColor* mapped = (SkPMColor*)newPR->getAddr(); // storage for mapped data
652 mapped[i] = linear[index];
653 mapped[i + kCache32Count] = linear[index + kCache32Count];
    [all...]
  /dalvik/dexdump/
DexDump.cpp 1780 bool mapped = false; local
    [all...]

Completed in 1000 milliseconds

1 2 3