HomeSort by relevance Sort by last modified time
    Searched full:sequences (Results 51 - 75 of 2298) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/ui/compositor/test/
layer_animator_test_controller.h 12 // Allows tests to access sequences owned by the animator.
  /external/clang/test/PCH/
modified-header-crash.c 9 // REQUIRES: ansi-escape-sequences
  /external/chromium_org/third_party/icu/source/i18n/
csr2022.h 39 * Counts up the number of legal an unrecognized escape sequences in
46 * @param escapeSequences the byte escape sequences to test for.
csrutf8.cpp 40 // Scan for multi-byte sequences
89 // and the existence of valid and/or invalid multi-byte sequences.
103 // Probably corruput utf-8 data. Valid sequences aren't likely by chance.
  /external/icu/icu4c/source/i18n/
csr2022.h 41 * Counts up the number of legal an unrecognized escape sequences in
48 * @param escapeSequences the byte escape sequences to test for.
csrutf8.cpp 41 // Scan for multi-byte sequences
85 // and the existence of valid and/or invalid multi-byte sequences.
100 // Probably corruput utf-8 data. Valid sequences aren't likely by chance.
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcoll.cpp 38 sequences(status)
41 sequences.setDeleter(deleteSeqElement);
268 sequences.removeAllElements();
273 sequences.addElement(target, status);
279 for(j = sequences.size(); j > 0; j--) {
280 source = (SeqElement *)sequences.elementAt(j-1);
286 sequences.addElement(target, status);
  /external/chromium_org/base/json/
string_escape.h 23 // Non-printing control characters will be escaped as \uXXXX sequences for
45 // as \uXXXX escape sequences. This function is *NOT* meant to be used with
49 // JSON requires escape sequences to be valid UTF-16 code units. This output
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
ThreadSafe.java 13 * no sequences of accesses (reads and writes to public fields, calls to public
  /external/llvm/test/CodeGen/X86/
neg-shl-add.ll 3 ; These sequences don't need neg instructions; they can be done with
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequencesReplacer.java 29 * This InstructionVisitor replaces multiple instruction sequences at once.
46 * @param instructionSequences the instruction sequences to be replaced,
73 * @param instructionSequences the instruction sequences to be replaced,
103 * @param instructionSequences the instruction sequences to be replaced,
  /packages/apps/OMA-DM/DMService/src/net/jcip/annotations/
ThreadSafe.java 18 * no sequences of accesses (reads and writes to public fields, calls to public methods)
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
my_corr.c 22 * compute cross correlation between sequences
34 /* Calculate correlation between the two sequences. Scale the
  /external/chromium_org/third_party/WebKit/Source/platform/text/
DecodeEscapeSequences.h 60 // For 16-bit escape sequences, we know that findEndOfRun() has given us a contiguous run of sequences
80 // in the range 0x40 - 0x7F as the trailing bytes of their sequences which need to be passed into the
105 // For URL escape sequences, we know that findEndOfRun() has given us a run where every %-sign introduces
106 // a valid escape sequence, but there may be characters between the sequences.
108 buffer.resize(runLength); // Unescaping hex sequences only makes the length smaller.
  /external/chromium_org/ui/compositor/
layer_animator.cc 146 // TODO(vollick) Add support for blended sequences and use them here.
197 // will prevent any of the sequences from animating until there are no
236 // will prevent any of the sequences from animating until there are no
299 // Remove the observer from all sequences as well.
333 // number of sequences in the group that have threaded first elements.
481 // The removed sequence may have been responsible for making other sequences
482 // wait for a group start. If no other sequences in the group have a
600 std::vector<base::WeakPtr<LayerAnimationSequence> > sequences; local
603 sequences.push_back((*queue_iter)->AsWeakPtr());
605 for (size_t i = 0; i < sequences.size(); ++i)
720 std::vector<base::WeakPtr<LayerAnimationSequence> > sequences; local
    [all...]
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 1 //===-- SequenceToOffsetTable.h - Compress similar sequences ----*- C++ -*-===//
11 // sequences as one big array. Use the same memory when a sequence is a suffix
29 /// SequenceToOffsetTable - Collect a number of terminated sequences of T.
30 /// Compute the layout of a table that contains all the sequences, possibly by
49 // Keep sequences ordered according to SeqLess so suffixes are easy to find.
53 // Sequences added so far, with suffixes removed.
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
plotBenchmark.m 212 sequences = {};
216 [cases, hLine, codec, sequences] = plotOneCodec(cases, 'bitrate', 'psnr', i, sequences, 1);
280 sequences = {};
284 [cases, hLine, codec, sequences] = plotOneCodec(cases, 'bitrate', 'ssim', i, sequences, 1);
349 sequences = {};
353 [cases, hLine, codec, sequences] = plotOneCodec(cases, 'psnr', 'speed', i, sequences, 0);
376 function [casesOut, hLine, codec, sequences] = plotOneCodec(cases, xfield, yfield, num, sequences, annotatePlot
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h.pump 182 // Range() returns generators providing sequences of values in a range.
192 // * The generated sequences never include end. For example, Range(1, 5)
201 // Elements in the resulting sequences will also have that type.
202 // * Condition start < end must be satisfied in order for resulting sequences
221 // - returns a generator producing sequences with elements from
224 // - returns a generator producing sequences with elements from
227 // - returns a generator producing sequences with elements from
298 // - returns a generator producing sequences with elements v1, v2, ..., vN.
327 // - returns a generator producing sequences with elements {false, true}.
348 // Combine() allows the user to combine two or more sequences to produc
    [all...]
  /libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 26 * line terminator sequences are {@code '\r'}, {@code '\n'} and {@code "\r\n"}.
27 * When using {@code read}, line terminator sequences are always translated into
108 * Recognized line terminator sequences are {@code '\r'}, {@code '\n'} and
109 * {@code "\r\n"}. Line terminator sequences are always translated into
147 * Recognized line terminator sequences are {@code '\r'}, {@code '\n'} and
148 * {@code "\r\n"}. Line terminator sequences are always translated into
216 * terminator sequences are skipped.
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 163 // 1-byte sequences
171 // 2-byte sequences
190 // 3-byte sequences
218 // 4-byte sequences
397 // Start bytes of 2-byte sequences (0xc0--0xdf).
434 // Start bytes of 3-byte sequences (0xe0--0xef).
456 // Start bytes of 4-byte sequences (0xf0--0xf7).
471 // Start bytes of 5-byte sequences (0xf8--0xfb).
483 // Start bytes of 6-byte sequences (0xfc--0xfd).
533 // Sequences with one continuation byte missin
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
multiway_merge.h 215 * that makes this fast is that the order of the sequences is stored
218 * This works well for merging up to 4 sequences.
334 * that makes this fast is that the order of the sequences is stored
337 * This works well for merging up to 4 sequences.
911 * @param __sentinel The sequences have __a __sentinel element.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
multiway_merge.h 215 * that makes this fast is that the order of the sequences is stored
218 * This works well for merging up to 4 sequences.
334 * that makes this fast is that the order of the sequences is stored
337 * This works well for merging up to 4 sequences.
911 * @param __sentinel The sequences have __a __sentinel element.
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
multiway_merge.h 215 * that makes this fast is that the order of the sequences is stored
218 * This works well for merging up to 4 sequences.
334 * that makes this fast is that the order of the sequences is stored
337 * This works well for merging up to 4 sequences.
911 * @param __sentinel The sequences have __a __sentinel element.
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
multiway_merge.h 215 * that makes this fast is that the order of the sequences is stored
218 * This works well for merging up to 4 sequences.
334 * that makes this fast is that the order of the sequences is stored
337 * This works well for merging up to 4 sequences.
911 * @param __sentinel The sequences have __a __sentinel element.
    [all...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]

Completed in 455 milliseconds

1 23 4 5 6 7 8 91011>>