/external/llvm/lib/MC/ |
StringTableBuilder.cpp | 51 StringRef Previous; 56 if (Previous.endswith(s)) { 64 Previous = s;
|
/external/skia/include/core/ |
SkPackBits.h | 48 written by a previous call to Pack16. 57 written by a previous call to Pack8. 66 dstWrite bytes into dst[]. The src[] data was written by a previous
|
/external/vixl/tools/ |
printer.py | 65 # In verbose mode we do not overwrite previous lines. 68 # Otherwise, overwrite the previous line. 73 # Append spaces to hide the previous line.
|
/external/vogar/src/vogar/ |
AnnotatedOutcome.java | 28 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run 41 /** a list of previous outcomes for the same action, sorted in chronological order */ 84 * Returns true if the outcome is noteworthy given the result value and previous history.
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
avcenc_int.h | 167 int prev_QP; /* quantization level for previous frame */ 168 int prev_prev_QP; /* quantization level for previous frame before last*/ 185 int framePos; /* specific position in previous multiple frames*/ 186 int frameRange; /* number of overall previous multiple frames */ 198 OsclFloat target_bits_per_frame_prev; /* previous C */ 200 OsclFloat aver_mad_prev; /* previous average mad */ 202 int encoded_frames_prev; /* previous encoded_frames */ 259 /*? is this the average one, or just the bits coded for the previous frame */ 270 int S; /*number of bits used for encoding the previous frame.*/ 272 int Hp; /*header and motion vector bits used in the previous frame. It includes all the information except to the residual information.* [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLockTest.java | 72 int previous = 0; local 77 previous = val - i; 79 assertTrue(previous == (val - i));
|
/frameworks/native/include/android/ |
multinetwork.h | 40 * For some functions (documented below), a previous binding may be cleared 58 * To clear a previous socket binding invoke with NETWORK_UNSPECIFIED. 77 * To clear a previous process binding invoke with NETWORK_UNSPECIFIED.
|
/libcore/luni/src/main/java/java/text/ |
CharacterIterator.java | 98 * @return the character at the previous index, or {@code DONE} if the 99 * previous index would be past the beginning. 101 public char previous(); method in interface:CharacterIterator
|
/libcore/luni/src/main/java/libcore/util/ |
BasicLruCache.java | 67 * @return the previous value mapped by {@code key}. Although that entry is 77 V previous = map.put(key, value); local 79 return previous;
|
/packages/apps/Dialer/tests/src/com/android/dialer/util/ |
LocaleTestUtils.java | 76 * Set the locale to the given value and saves the previous value. 106 * Sets the locale for the given resources and returns the previous locale. 110 * @return the previous value of the locale for the resources
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 43 private int previous = 0; field in class:EOLConvertingInputStream 129 } else if ((flags & CONVERT_LF) != 0 && b == '\n' && previous != '\r') { 134 previous = b;
|
/packages/services/Telephony/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 43 private int previous = 0; field in class:EOLConvertingInputStream 129 } else if ((flags & CONVERT_LF) != 0 && b == '\n' && previous != '\r') { 134 previous = b;
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/docs/source.android.com/src/devices/tech/ota/ |
tools.jd | 76 <li>Files that have changed are often very similar to their previous versions, 81 incremental update, you need the target_files .zip from the previous build 87 -i PREVIOUS-tardis-target_files.zip \ </b># make incremental from this older version<b> 97 <p>This build is very similar to the previous build, and the incremental 105 previous build used as the incremental package's starting point. Attempting to 108 to the old system; the package verifies the previous state of all the files it
|
/external/aac/libSBRdec/src/ |
env_calc.h | 98 FIXP_DBL filtBuffer[MAX_FREQ_COEFFS]; /*!< previous gains (required for smoothing) */ 99 FIXP_DBL filtBufferNoise[MAX_FREQ_COEFFS]; /*!< previous noise levels (required for smoothing) */ 100 SCHAR filtBuffer_e[MAX_FREQ_COEFFS]; /*!< Exponents of previous gains */ 101 SCHAR filtBufferNoise_e; /*!< Common exponent of previous noise levels */ 105 int prevTranEnv; /*!< The transient envelope of the previous frame. */ 108 /*!< Words with 16 flags each indicating where a sine was added in the previous frame.*/
|
/external/apache-http/src/org/apache/http/impl/io/ |
AbstractMessageParser.java | 120 CharArrayBuffer previous = null; local 135 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) { 147 && previous.length() + 1 + current.length() - i > maxLineLen) { 150 previous.append(' '); 151 previous.append(current, i, current.length() - i); 154 previous = current;
|
/external/clang/include/clang/Basic/ |
DiagnosticCommonKinds.td | 22 def note_previous_definition : Note<"previous definition is here">; 23 def note_previous_declaration : Note<"previous declaration is here">; 25 "previous implicit declaration is here">; 26 def note_previous_use : Note<"previous use is here">; 27 def note_duplicate_case_prev : Note<"previous case defined here">; 31 /// note_matching - this is used as a continuation of a previous diagnostic,
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/ |
GenericLoaderFactory.java | 61 * Registers the given {@link ModelLoaderFactory} for the given model and resource classes and returns the previous 81 ModelLoaderFactory/*T, Y*/ previous = resourceToFactories.put(resourceClass, factory); local 83 if (previous != null) { 87 if (factories.containsValue(previous)) { 88 previous = null; 94 return previous;
|
/frameworks/base/docs/html/training/design-navigation/ |
ancestral-temporal.jd | 6 previous.title=Providing Descendant and Lateral Navigation 7 previous.link=descendant-lateral.html 46 system. All Android users expect the <em>Back</em> button to take them to the previous screen, 62 the <em>back stack</em></a>, or the list of previous screens, automatically. The <em>Back</em> 87 be taken to the parent screen in the hierarchy. This navigation step is usually the previous screen 99 <p>In some cases, it's appropriate for <em>Up</em> to perform an action rather than navigating to a parent screen. Take for example, the Gmail application for Android 3.0-based tablets. When viewing a mail conversation while holding the device in landscape, the conversation list, as well as the conversation details are presented side-by-side. This is a form of parent-child screen grouping, as discussed in a <a href="multiple-sizes.html">previous lesson</a>. However, when viewing a mail conversation in the portrait orientation, only the conversation details are shown. The <em>Up</em> button is used to temporarily show the parent pane, which slides in from the left of the screen. Pressing the <em>Up</em> button again while the left pane is visible exits the context of the individual conversation, up to a full-screen list of conversations.</p>
|
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/9/platforms/android-13/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|
/prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/asm/ |
uaccess_32.h | 61 #define __put_user_u64(x, addr, err) __asm__ __volatile__( "1: movl %%eax,0(%2)\n" "2: movl %%edx,4(%2)\n" "3:\n" ".section .fixup,\"ax\"\n" "4: movl %3,%0\n" " jmp 3b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,4b\n" " .long 2b,4b\n" ".previous" : "=r"(err) : "A" (x), "r" (addr), "i"(-EFAULT), "0"(err)) 66 #define __put_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %"rtype"1,%2\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err) : ltype (x), "m"(__m(addr)), "i"(errret), "0"(err)) 70 #define __get_user_asm(x, addr, err, itype, rtype, ltype, errret) __asm__ __volatile__( "1: mov"itype" %2,%"rtype"1\n" "2:\n" ".section .fixup,\"ax\"\n" "3: movl %3,%0\n" " xor"itype" %"rtype"1,%"rtype"1\n" " jmp 2b\n" ".previous\n" ".section __ex_table,\"a\"\n" " .align 4\n" " .long 1b,3b\n" ".previous" : "=r"(err), ltype (x) : "m"(__m(addr)), "i"(errret), "0"(err))
|