HomeSort by relevance Sort by last modified time
    Searched refs:sequences (Results 1 - 25 of 49) sorted by null

1 2

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 369 // error code, marks sequences as throwing exceptions
371 // test sequences
372 int[][] sequences = { local
410 // Tests CRL generation on the base of sequences of heterogeneous
412 for (int i=0; i<sequences.length; i++) { // for each of the sequences..
414 int expected_size = (sequences[i][0] < 0)
415 ? -sequences[i][0]
416 : sequences[i].length;
420 for (int j=0; j<sequences[i].length; j++)
471 int[][] sequences = { local
    [all...]
  /external/chromium_org/third_party/jinja2/_markupsafe/
_native.py 16 sequences. Use this if you need to display text that might contain
  /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);
dadrcoll.h 53 UVector sequences; member in class:DataDrivenCollatorTest
  /external/icu4c/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);
dadrcoll.h 53 UVector sequences; member in class:DataDrivenCollatorTest
  /external/chromium_org/ui/compositor/
layer_animator.cc 142 // TODO(vollick) Add support for blended sequences and use them here.
192 // will prevent any of the sequences from animating until there are no
231 // will prevent any of the sequences from animating until there are no
305 // Remove the observer from all sequences as well.
340 // number of sequences in the group that have threaded first elements.
478 // The removed sequence may have been responsible for making other sequences
479 // wait for a group start. If no other sequences in the group have a
598 std::vector<base::WeakPtr<LayerAnimationSequence> > sequences; local
601 sequences.push_back((*queue_iter)->AsWeakPtr());
603 for (size_t i = 0; i < sequences.size(); ++i)
717 std::vector<base::WeakPtr<LayerAnimationSequence> > sequences; local
    [all...]
layer_animator_unittest.cc 617 std::vector<LayerAnimationSequence*> sequences; local
618 sequences.push_back(new LayerAnimationSequence(
620 sequences.push_back(new LayerAnimationSequence(
623 animator->ScheduleTogether(sequences);
    [all...]
  /external/llvm/test/MC/X86/
x86_long_nop.s 6 # Ensure alignment directives also emit sequences of 15-byte NOPs on processors
  /libcore/json/src/main/java/org/json/
JSONTokener.java 186 * character escape sequences encountered along the way. The opening quote
191 * @throws NumberFormatException if any unicode escape sequences are
196 * For strings that are free of escape sequences, we can just extract
239 * @throws NumberFormatException if any unicode escape sequences are
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mhlib.py 29 path = f.getsequencesfilename() # full pathname of folder's sequences file
39 dict = f.getsequences() # dictionary of sequences in folder {name: list}
40 f.putsequences(dict) # write sequences back to folder
265 """Return the full pathname of the folder's sequences file."""
298 """Return the set of sequences for the folder."""
299 sequences = {}
304 return sequences
314 sequences[key] = value
315 return sequences
317 def putsequences(self, sequences)
    [all...]
mailbox.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 29 path = f.getsequencesfilename() # full pathname of folder's sequences file
39 dict = f.getsequences() # dictionary of sequences in folder {name: list}
40 f.putsequences(dict) # write sequences back to folder
265 """Return the full pathname of the folder's sequences file."""
298 """Return the set of sequences for the folder."""
299 sequences = {}
304 return sequences
314 sequences[key] = value
315 return sequences
317 def putsequences(self, sequences)
    [all...]
mailbox.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
MultiCall.py 6 MultiCall recognizes only a subset of legal event sequences. Sequences which
10 The recognized sequences are complete one-event sequences (no emacs-style
319 # 1. a list of triplets - the sequences it is binded to
352 def event_add(self, virtual, *sequences):
353 #print "event_add(%s,%s) was called"%(repr(virtual),repr(sequences))
358 for seq in sequences:
368 def event_delete(self, virtual, *sequences):
372 for seq in sequences
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
MultiCall.py 6 MultiCall recognizes only a subset of legal event sequences. Sequences which
10 The recognized sequences are complete one-event sequences (no emacs-style
319 # 1. a list of triplets - the sequences it is binded to
352 def event_add(self, virtual, *sequences):
353 #print "event_add(%s,%s) was called"%(repr(virtual),repr(sequences))
358 for seq in sequences:
368 def event_delete(self, virtual, *sequences):
372 for seq in sequences
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals.js 52 // Octal literals may be 1-3 digits long. In strict more all multi-digit sequences are illegal.
  /external/chromium_org/v8/test/webkit/fast/regex/
malformed-escapes.js 25 "This page tests handling of malformed escape sequences."
  /external/guava/guava-tests/test/com/google/common/collect/
IterablesTest.java     [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-219.js 143 // Unicode escape sequences are not interpreted.
  /external/v8/test/mjsunit/regress/
regress-219.js 143 // Unicode escape sequences are not interpreted.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 133 output are escaped with ``\uXXXX`` sequences, and the result is a ``str``
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 133 output are escaped with ``\uXXXX`` sequences, and the result is a ``str``
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicode.py     [all...]

Completed in 1054 milliseconds

1 2