Home
last modified time | relevance | path

Searched refs:mapped (Results 1 – 25 of 105) sorted by relevance

12345

/external/apache-http/src/org/apache/commons/codec/language/
DSoundex.java258 char last, mapped; in soundex() local
263 mapped = getMappingCode(str, incount++); in soundex()
264 if (mapped != 0) { in soundex()
265 if ((mapped != '0') && (mapped != last)) { in soundex()
266 out[count++] = mapped; in soundex()
268 last = mapped; in soundex()
/external/webkit/Source/JavaScriptCore/wtf/
DRefPtrHashMap.h40 static void translate(ValueType& location, RawKeyType key, const MappedType& mapped) in translate()
43 location.second = mapped; in translate()
209 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) in inlineAdd() argument
212 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped); in inlineAdd()
217 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, const MappedType& mapped) in inlineAdd() argument
219 return m_impl.template add<RawKeyType, MappedType, RawKeyTranslator>(key, mapped); in inlineAdd()
224 HashMap<RefPtr<T>, U, V, W, X>::set(const KeyType& key, const MappedType& mapped) in set() argument
226 pair<iterator, bool> result = inlineAdd(key, mapped); in set()
229 result.first->second = mapped; in set()
236 HashMap<RefPtr<T>, U, V, W, X>::set(RawKeyType key, const MappedType& mapped) in set() argument
[all …]
DHashMap.h123 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped) in translate()
126 location.second = mapped; in translate()
137 …static void translate(ValueType& location, const T& key, const MappedType& mapped, unsigned hashCo… in translate()
140 location.second = mapped; in translate()
239 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) in inlineAdd() argument
242 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped); in inlineAdd()
247 HashMap<T, U, V, W, X>::set(const KeyType& key, const MappedType& mapped) in set() argument
249 pair<iterator, bool> result = inlineAdd(key, mapped); in set()
252 result.first->second = mapped; in set()
268 HashMap<T, U, V, W, X>::add(const KeyType& key, const MappedType& mapped) in add() argument
[all …]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
DFileChannelTest.java1723 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.READ_ONLY, in test_map_ReadOnly_CloseChannel() local
1727 assertEquals(CONTENT_LENGTH, mapped.limit()); in test_map_ReadOnly_CloseChannel()
1734 MappedByteBuffer mapped = readWriteFileChannel.map(MapMode.PRIVATE, 0, in test_map_Private_CloseChannel() local
1737 mapped.put(TEST_BYTES); in test_map_Private_CloseChannel()
1738 assertEquals(CONTENT_LENGTH, mapped.limit()); in test_map_Private_CloseChannel()
1739 assertEquals("test".length(), mapped.position()); in test_map_Private_CloseChannel()
1746 MappedByteBuffer mapped = null; in test_map_ReadOnly() local
1749 mapped = readOnlyFileChannel.map(MapMode.READ_ONLY, 0, CONTENT_LENGTH); in test_map_ReadOnly()
1751 mapped.put(TEST_BYTES); in test_map_ReadOnly()
1756 assertEquals(CONTENT_LENGTH, mapped.limit()); in test_map_ReadOnly()
[all …]
/external/skia/gpu/src/
DGrGLIndexBuffer.cpp89 GrGLint mapped; in isLocked() local
91 GR_GL_BUFFER_MAPPED, &mapped)); in isLocked()
92 GrAssert(!!mapped == !!fLockPtr); in isLocked()
DGrGLVertexBuffer.cpp88 GrGLint mapped; in isLocked() local
90 GR_GL(GetBufferParameteriv(GR_GL_ARRAY_BUFFER, GR_GL_BUFFER_MAPPED, &mapped)); in isLocked()
91 GrAssert(!!mapped == !!fLockPtr); in isLocked()
/external/iptables/extensions/
Dlibipt_SNAT.man18 mapped to other ports below 512: those between 512 and 1023 inclusive
19 will be mapped to ports below 1024, and other ports will be mapped to
Dlibipt_REDIRECT.man10 (locally-generated packets are mapped to the 127.0.0.1 address).
/external/icu4c/test/intltest/
Dtestidn.cpp286 int32_t mapped = 0; in testAllCodepoints() local
305 mapped++; in testAllCodepoints()
317 test.logln("Number of Mapped code points : %i \n",mapped); in testAllCodepoints()
/external/valgrind/main/none/tests/linux/
Dblockfault.stderr.exp4 Access not within mapped region at address 0x........
/external/valgrind/main/memcheck/tests/
Dsupp_unknown.stderr.exp3 Access not within mapped region at address 0x........
Dbadjump.stderr.exp9 Access not within mapped region at address 0x........
/external/llvm/include/llvm/CodeGen/
DValueTypes.td65 // Pseudo valuetype mapped to the current pointer size to any address space.
78 // Pseudo valuetype mapped to the current pointer size.
/external/chromium/chrome/browser/
Dprocess_info_snapshot_mac.cc432 usage->mapped = 0; in GetCommittedKBytesOfPID()
438 usage->mapped = 0; in GetCommittedKBytesOfPID()
/external/chromium/base/
Dprocess_util.h511 CommittedKBytes() : priv(0), mapped(0), image(0) {} in CommittedKBytes()
513 size_t mapped; member
Dprocess_util_win.cc657 usage->mapped = 0; in GetCommittedKBytes()
664 usage->mapped = committed_mapped / 1024; in GetCommittedKBytes()
/external/fdlibm/
Dreadme94 All exception cases in the FDLIBM functions will be mapped
100 For example, ieee_log(0) is a singularity and is thus mapped to
107 Similarly, ieee_exp(-huge) will be mapped to tiny*tiny to generate
/external/v8/src/
Dunicode.cc175 uchar mapped = mapping.chars[length]; in LookupMapping() local
176 if (mapped == MultiCharacterSpecialCase<kW>::kEndOfEncoding) break; in LookupMapping()
178 result[length] = mapped + (key - entry); in LookupMapping()
180 result[length] = mapped; in LookupMapping()
/external/javasqlite/src/main/java/SQLite/
DDatabase.java956 String mapped = (String) mapLibraryName.invoke(null, args);
957 System.load(path + java.io.File.separator + mapped);
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/
Den-US_phones.utf104 ! this symbol is mapped to the sequence [hw] by FST rules
/external/doclava/src/com/google/doclava/
DDoclava.java406 String mapped = escapeChars.get(c); in escape() local
407 if (mapped != null) { in escape()
409 b = new StringBuffer(s.length() + mapped.length()); in escape()
414 b.append(mapped); in escape()
/external/skia/src/effects/
DSkGradientShader.cpp600 uint16_t* mapped = fCache16Storage; // storage for mapped data in getCache16() local
604 mapped[i] = linear[index]; in getCache16()
605 mapped[i + kCache16Count] = linear[index + kCache16Count]; in getCache16()
648 SkPMColor* mapped = (SkPMColor*)newPR->getAddr(); // storage for mapped data in getCache32() local
652 mapped[i] = linear[index]; in getCache32()
653 mapped[i + kCache32Count] = linear[index + kCache32Count]; in getCache32()
/external/valgrind/main/auxprogs/
Dposixtestsuite-1.5.1-diff.txt140 + echo "Executing mapped, process and shared memory tests"
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp563 bool mapped = !LiveInts->isNotInMIMap(MI); in visitMachineInstrBefore() local
565 if (mapped) in visitMachineInstrBefore()
568 if (!mapped) in visitMachineInstrBefore()
/external/e2fsprogs/lib/ext2fs/
Dextent.c1146 int mapped = 1; /* logical is mapped? */ in ext2fs_extent_set_bmap() local
1213 mapped = 0; in ext2fs_extent_set_bmap()
1268 if (mapped && (new_uninit == extent_uninit) && in ext2fs_extent_set_bmap()
1276 if (!mapped) { in ext2fs_extent_set_bmap()

12345