/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
dma-mapping.h | 36 #include <asm/dma-mapping.h>
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
dma-mapping.h | 36 #include <asm/dma-mapping.h>
|
/external/apache-http/src/org/apache/commons/codec/language/ |
RefinedSoundex.java | 34 * the US_ENGLISH mapping. 54 * English mapping. 61 * Creates a refined soundex instance using a custom mapping. This 62 * constructor can be used to customize the mapping, and/or possibly 63 * provide an internationalized mapping for a non-Western character set. 65 * @param mapping 66 * Mapping array to use when finding the corresponding code for 69 public RefinedSoundex(char[] mapping) { 70 this.soundexMapping = mapping; 134 * Returns the mapping code for a given character. The mapping codes ar [all...] |
/external/chromium/base/ |
global_descriptors_posix.cc | 31 for (Mapping::const_iterator 37 // In order to make unittests pass, we define a default mapping from keys to 43 for (Mapping::iterator 54 void GlobalDescriptors::Reset(const Mapping& mapping) { 55 descriptors_ = mapping;
|
/external/chromium_org/chrome/browser/extensions/api/signedin_devices/ |
id_mapping_helper.cc | 50 const DictionaryValue& mapping,
61 } while (mapping.Get(string_value, &out_value));
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
persistent_object_store.py | 28 def SetMulti(self, mapping): 30 for key, value in mapping.items():
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
nptrans.cpp | 50 mapping = NULL; 63 // create the mapping transliterator 71 mapping = Transliterator::createFromRules(UnicodeString("NamePrepTransform", ""), rule, 113 (mapping == NULL) 116 delete mapping; 118 mapping = NULL; 130 delete mapping; 131 mapping = NULL; 157 mapping->transliterate(rsource);
|
/external/icu4c/test/intltest/ |
nptrans.cpp | 50 mapping = NULL; 63 // create the mapping transliterator 71 mapping = Transliterator::createFromRules(UnicodeString("NamePrepTransform", ""), rule, 113 (mapping == NULL) 116 delete mapping; 118 mapping = NULL; 130 delete mapping; 131 mapping = NULL; 157 mapping->transliterate(rsource);
|
/external/kernel-headers/original/asm-x86/ |
cacheflush.h | 14 #define flush_dcache_mmap_lock(mapping) do { } while (0) 15 #define flush_dcache_mmap_unlock(mapping) do { } while (0)
|
/external/llvm/test/MC/ARM/ |
relocated-mapping.s | 4 @ go via MCStreamer::EmitBytes; make sure they still emit a mapping symbol.
|
/external/llvm/include/llvm/Object/ |
ELFYAML.h | 137 static void mapping(IO &IO, ELFYAML::FileHeader &FileHdr); 142 static void mapping(IO &IO, ELFYAML::Symbol &Symbol); 147 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols); 152 static void mapping(IO &IO, ELFYAML::Section &Section); 157 static void mapping(IO &IO, ELFYAML::Object &Object);
|
/art/test/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 76 @ExportedProperty(mapping = { 122 final IntToString[] mapping; local 131 mapping = property.mapping(); 133 System.out.println("mapping is " + mapping.getClass() + 134 "\n 0='" + mapping[0] + "'\n 1='" + mapping[1] + "'");
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 76 @ExportedProperty(mapping = { 122 final IntToString[] mapping; local 131 mapping = property.mapping(); 133 System.out.println("mapping is " + mapping.getClass() + 134 "\n 0='" + mapping[0] + "'\n 1='" + mapping[1] + "'");
|
/external/chromium_org/third_party/mesa/src/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/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() {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pep292.py | 12 class Mapping: 92 m = Mapping() 108 m = Mapping() 141 s = Template('the mapping is $mapping') 142 eq(s.substitute(dict(foo='none'), mapping='bozo'), 143 'the mapping is bozo') 144 eq(s.substitute(dict(mapping='one'), mapping='two'), 145 'the mapping is two' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pep292.py | 12 class Mapping: 92 m = Mapping() 108 m = Mapping() 141 s = Template('the mapping is $mapping') 142 eq(s.substitute(dict(foo='none'), mapping='bozo'), 143 'the mapping is bozo') 144 eq(s.substitute(dict(mapping='one'), mapping='two'), 145 'the mapping is two' [all...] |
/external/chromium_org/third_party/icu/source/tools/gensprep/ |
store.c | 37 * The file format prepared and written here contains a 16-bit trie and a mapping table. 70 * indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] -- The starting index of 1 UChar mapping index in the mapping table 71 * indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START] -- The starting index of 2 UChars mapping index in the mapping table 72 * indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START] -- The starting index of 3 UChars mapping index in the mapping table 73 * indexes[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START] -- The starting index of 4 UChars mapping index in the mapping table 98 * 1 - ON : The value in the next 14 bits is an index into the mapping tabl 213 UChar* mapping; member in struct:ValueStruct [all...] |
/external/chromium_org/third_party/jinja2/ |
loaders.py | 271 def __init__(self, mapping): 272 self.mapping = mapping 275 if template in self.mapping: 276 source = self.mapping[template] 277 return source, None, lambda: source != self.mapping.get(template) 281 return sorted(self.mapping) 329 def __init__(self, mapping, delimiter='/'): 330 self.mapping = mapping [all...] |
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_api.c | 329 unsigned char mapping[256]; local 341 mapping[0]=0; 342 mapping[1]=1; 343 for(i=2;i<256;i++)VG_UNDEF(&mapping[i],sizeof(unsigned char)); 376 dec = opus_multistream_decoder_create(fs, c, 1, c-1, mapping, &err); 379 dec = opus_multistream_decoder_create(fs, c, 1, c-1, mapping, 0); 384 err = opus_multistream_decoder_init(dec,fs,c,1,c-1, mapping); 396 mapping[0]=0; 397 mapping[1]=1; 398 for(i=2;i<256;i++)VG_UNDEF(&mapping[i],sizeof(unsigned char)) 1587 unsigned char mapping[256] = {0,1}; local [all...] |
/bionic/libc/kernel/arch-arm/asm/ |
cacheflush.h | 85 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 86 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
/external/chromium_org/chrome/common/metrics/ |
entropy_provider.h | 34 // Fills |mapping| to create a bijection of values in the range of 35 // [0, |mapping.size()|), permuted based on |randomization_seed|. 37 std::vector<uint16>* mapping); 65 // permutation of a mapping array from an initial entropy value to a new value.
|
/external/chromium_org/chrome_frame/ |
dll_redirector.h | 89 // Attempts to change the permissions on the given file mapping to read only. 91 virtual bool SetFileMappingToReadOnly(base::SharedMemoryHandle mapping);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ScriptFormatter.js | 116 var mapping = event.data["mapping"]; 117 var sourceMapping = new WebInspector.FormatterSourceMappingImpl(originalContent.lineEndings(), formattedContent.lineEndings(), mapping); 222 * @param {WebInspector.FormatterMappingPayload} mapping 224 WebInspector.FormatterSourceMappingImpl = function(originalLineEndings, formattedLineEndings, mapping) 228 this._mapping = mapping;
|