/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/ |
inftrees.c | 32 uInt, /* number of codes */ 33 uInt, /* number of "simple" codes */ 34 const uIntf *, /* list of base values for non-simple codes */ 35 const uIntf *, /* list of extra bits for non-simple codes */ 43 local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */ 47 local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */ 50 local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */ 54 local const uInt cpdext[30] = { /* Extra bits for distance codes */ 64 is not very long. The most common codes are necessarily the 65 shortest codes, so those codes dominate the decoding time, and henc [all...] |
infutil.h | 1 /* infutil.h -- types and macros common to blocks and codes 21 CODES, /* processing fixed or dynamic block */ 39 uIntf *blens; /* bit lengths of codes */ 45 *codes; member in struct:inflate_blocks_state::__anon16401::__anon16403 46 } decode; /* if CODES, current state */
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationSettings.java | 136 int[] codes; local 138 codes = codesAndRanges; 140 // TODO: Java 6: Arrays.copyOf(codes, codesLength); 141 codes = new int[codesLength]; 142 System.arraycopy(codesAndRanges, 0, codes, 0, codesLength); 155 reorderCodes = codes; 177 setReordering(data, codes); 180 public void setReordering(CollationData data, int[] codes) { 181 if(codes.length == 0 || (codes.length == 1 && codes[0] == Collator.ReorderCodes.NONE)) [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationSettings.java | 134 int[] codes; local 136 codes = codesAndRanges; 138 // TODO: Java 6: Arrays.copyOf(codes, codesLength); 139 codes = new int[codesLength]; 140 System.arraycopy(codesAndRanges, 0, codes, 0, codesLength); 153 reorderCodes = codes; 175 setReordering(data, codes); 178 public void setReordering(CollationData data, int[] codes) { 179 if(codes.length == 0 || (codes.length == 1 && codes[0] == Collator.ReorderCodes.NONE)) [all...] |
/external/opencv3/3rdparty/libwebp/utils/ |
huffman.c | 178 // Get Huffman codes from the code lengths. 179 int* const codes = local 180 (int*)WebPSafeMalloc((uint64_t)code_lengths_size, sizeof(*codes)); 181 if (codes == NULL) goto End; 183 if (!HuffmanCodeLengthsToCodes(code_lengths, code_lengths_size, codes)) { 190 if (!TreeAddSymbol(tree, symbol, codes[symbol], code_lengths[symbol])) { 197 free(codes); 206 const int* const codes, 214 assert(codes != NULL); 222 if (codes[i] != NON_EXISTENT_SYMBOL) [all...] |
/cts/tests/tests/view/res/xml/ |
keyboard.xml | 29 <Key android:codes="-1" android:keyLabel="Sticky!" 31 <Key android:codes="120" android:keyLabel="x" />
|
/development/samples/BluetoothHDP/ |
_index.jd | 9 specialization codes, refer to <strong>Bluetooth Assigned Numbers</strong> at <a 12 MDC_DEV_SPEC_PROFILE_* in the Nomenclature Codes Annex.</p>
|
/external/pdfium/core/src/fxcodec/jbig2/ |
JBig2_HuffmanTable.h | 29 const std::vector<int>& GetCODES() const { return CODES; } 44 std::vector<int> CODES;
|
/frameworks/av/camera/aidl/android/hardware/camera2/ |
ICameraDeviceCallbacks.aidl | 25 // Error codes for onDeviceError 26 const int ERROR_CAMERA_INVALID_ERROR = -1; // To indicate all invalid error codes
|
/frameworks/base/core/jni/ |
android_media_AudioErrors.h | 23 // status codes used by JAVA APIs. Translation from native error codes is done by
|
/packages/inputmethods/OpenWnn/res/xml/ |
default_en_switch_key.xml | 23 <Key android:codes="-113" android:keyLabel="@string/key_12key_switch_half_alphabet" 25 <Key android:codes="-112" android:keyLabel="@string/key_12key_switch_half_number"
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
dbeproto.h | 91 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 121 CARD8 reqType; /* major-opcode: codes->major_opcode */ 135 CARD8 reqType; /* major-opcode: codes->major_opcode */ 145 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 155 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 164 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 173 CARD8 reqType; /* always codes->major_opcode */ 199 CARD8 reqType; /* always codes->major_opcode */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/ |
dbeproto.h | 91 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 121 CARD8 reqType; /* major-opcode: codes->major_opcode */ 135 CARD8 reqType; /* major-opcode: codes->major_opcode */ 145 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 155 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 164 CARD8 reqType; /* major-opcode: always codes->major_opcode */ 173 CARD8 reqType; /* always codes->major_opcode */ 199 CARD8 reqType; /* always codes->major_opcode */
|
/external/freetype/src/gzip/ |
infutil.h | 1 /* infutil.h -- types and macros common to blocks and codes 21 CODES, /* processing fixed or dynamic block */ 39 uIntf *blens; /* bit lengths of codes */ 45 *codes; member in struct:inflate_blocks_state::__anon12724::__anon12726 46 } decode; /* if CODES, current state */
|
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractNonStreamingHashFunctionTest.java | 49 HashCode[] codes = new HashCode[hashers.size()]; local 51 codes[i] = hashers.get(i).hash(); 53 for (int i = 1; i < codes.length; i++) { 54 assertEquals(codes[i - 1], codes[i]);
|
/frameworks/base/core/res/res/xml/ |
password_kbd_qwerty.xml | 68 <Key android:codes="-1" android:keyIcon="@drawable/sym_keyboard_shift" 79 <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" 86 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_symbol_key" 90 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 96 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
password_kbd_qwerty_shifted.xml | 68 <Key android:codes="-1" android:keyIcon="@drawable/sym_keyboard_shift" 79 <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" 86 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_symbol_key" 90 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 95 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
password_kbd_symbols.xml | 61 <Key android:codes="-1" android:keyLabel="@string/password_keyboard_label_alt_key" 71 <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" 78 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_alpha_key" 81 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 85 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
password_kbd_symbols_shift.xml | 55 <Key android:codes="-1" android:keyLabel="@string/password_keyboard_label_alt_key" 65 <Key android:codes="-5" 74 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_alpha_key" 77 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 81 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
sms_short_codes.xml | 20 <!-- Regex patterns for SMS short codes by country. --> 24 The pattern attribute is a regex that matches all SMS short codes for the country. 25 The premium attribute is a regex that matches premium rate SMS short codes. 26 The free attribute matches short codes that we know will not cost the user, such as 27 emergency numbers. The standard attribute matches short codes that are billed at the 31 <!-- Harmonised European Short Codes are 6 digit numbers starting with 116 (free helplines). 32 Premium patterns include short codes from: http://aonebill.com/coverage&tariffs 39 <!-- Albania: 5 digits, known short codes listed --> 51 <!-- Azerbaijan: 4-5 digits, known premium codes listed --> 73 <!-- Cyprus: 4-6 digits (not confirmed), known premium codes listed, plus EU -- [all...] |
/frameworks/base/core/res/res/xml-land/ |
password_kbd_qwerty.xml | 54 <Key android:codes="-1" android:keyIcon="@drawable/sym_keyboard_shift" 65 <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" 72 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_symbol_key" 76 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 81 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
password_kbd_qwerty_shifted.xml | 55 <Key android:codes="-1" android:keyIcon="@drawable/sym_keyboard_shift" 66 <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" 73 <Key android:codes="-2" android:keyLabel="@string/password_keyboard_label_symbol_key" 77 <Key android:codes="32" android:keyIcon="@drawable/sym_keyboard_space" 82 <Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"
|
/external/regex-re2/re2/testing/ |
unicode_test.py | 87 def DoLine(codes, fields): 92 self.assertEquals([0x0041], codes) 96 self.assertEquals(range(0x0061, 0x007A + 1), codes) 100 self.assertEquals(range(0x1F00, 0x1FFE + 1), codes) 104 self.assertEquals([0x10FFFF], codes) 108 self.assertEquals([0x0000], codes) 158 for script, codes in self.scripts.items(): 159 for code in codes: 178 for category, codes in self.categories.items(): 179 for code in codes [all...] |
/frameworks/base/docs/html/google/play/billing/ |
billing_promotions.jd | 4 page.metaDescription=Support promo codes in your app, which lets you give content or features away to a limited number of users free of charge. 6 page.tags="promotions, billing, promo codes" 15 <li><a href="#workflow">Creating and Redeeming Promo Codes</a></li> 16 <li><a href="#supporting">Supporting Promo Codes in Your App</a></li> 29 Promo codes let you give content or features away to a limited number of 34 and receives the item at no cost. You can use promo codes in many ways to 41 distribute cards with promo codes at the event, and users would enter their 42 promo codes to unlock the item. 45 <li>An app developer might distribute promo codes at local businesses to 49 <li>An app developer might give <em>friends and family codes</em> to its employees t [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
region.h | 31 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different 32 * types of region codes that are important to distinguish. 37 * These are typically 3-digit codes, but contain some 2-letter codes, such as the LDML code QO 38 * added for Outlying Oceania. Not all UNM.49 codes are defined in LDML, but most of them are. 43 * TERRITORY - A Region that is not a Macroregion. These are typically codes for countries, but also 46 * codes. The codes are typically 2-letter codes aligned with the ISO 3166 standard, but BCP47 allows 47 * for the use of 3-digit codes in the future [all...] |