/external/apache-http/src/org/apache/commons/codec/language/ |
D | Soundex.java | 258 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/ |
D | RefPtrHashMap.h | 40 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 …]
|
D | HashMap.h | 123 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/ |
D | FileChannelTest.java | 1723 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/ |
D | GrGLIndexBuffer.cpp | 89 GrGLint mapped; in isLocked() local 91 GR_GL_BUFFER_MAPPED, &mapped)); in isLocked() 92 GrAssert(!!mapped == !!fLockPtr); in isLocked()
|
D | GrGLVertexBuffer.cpp | 88 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/ |
D | libipt_SNAT.man | 18 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
|
D | libipt_REDIRECT.man | 10 (locally-generated packets are mapped to the 127.0.0.1 address).
|
/external/icu4c/test/intltest/ |
D | testidn.cpp | 286 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/ |
D | blockfault.stderr.exp | 4 Access not within mapped region at address 0x........
|
/external/valgrind/main/memcheck/tests/ |
D | supp_unknown.stderr.exp | 3 Access not within mapped region at address 0x........
|
D | badjump.stderr.exp | 9 Access not within mapped region at address 0x........
|
/external/llvm/include/llvm/CodeGen/ |
D | ValueTypes.td | 65 // 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/ |
D | process_info_snapshot_mac.cc | 432 usage->mapped = 0; in GetCommittedKBytesOfPID() 438 usage->mapped = 0; in GetCommittedKBytesOfPID()
|
/external/chromium/base/ |
D | process_util.h | 511 CommittedKBytes() : priv(0), mapped(0), image(0) {} in CommittedKBytes() 513 size_t mapped; member
|
D | process_util_win.cc | 657 usage->mapped = 0; in GetCommittedKBytes() 664 usage->mapped = committed_mapped / 1024; in GetCommittedKBytes()
|
/external/fdlibm/ |
D | readme | 94 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/ |
D | unicode.cc | 175 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/ |
D | Database.java | 956 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/ |
D | en-US_phones.utf | 104 ! this symbol is mapped to the sequence [hw] by FST rules
|
/external/doclava/src/com/google/doclava/ |
D | Doclava.java | 406 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/ |
D | SkGradientShader.cpp | 600 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/ |
D | posixtestsuite-1.5.1-diff.txt | 140 + echo "Executing mapped, process and shared memory tests"
|
/external/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 563 bool mapped = !LiveInts->isNotInMIMap(MI); in visitMachineInstrBefore() local 565 if (mapped) in visitMachineInstrBefore() 568 if (!mapped) in visitMachineInstrBefore()
|
/external/e2fsprogs/lib/ext2fs/ |
D | extent.c | 1146 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()
|