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

1 2 3 4 5 6 7 8 91011>>

  /external/fio/lib/
seqlock.h 7 volatile int sequence; member in struct:seqlock
12 s->sequence = 0;
20 seq = s->sequence;
33 return s->sequence != seq;
38 s->sequence++;
45 s->sequence++;
  /frameworks/base/core/java/android/print/
ILayoutResultCallback.aidl 28 void onLayoutStarted(ICancellationSignal cancellation, int sequence);
29 void onLayoutFinished(in PrintDocumentInfo info, boolean changed, int sequence);
30 void onLayoutFailed(CharSequence error, int sequence);
31 void onLayoutCanceled(int sequence);
IWriteResultCallback.aidl 28 void onWriteStarted(ICancellationSignal cancellation, int sequence);
29 void onWriteFinished(in PageRange[] pages, int sequence);
30 void onWriteFailed(CharSequence error, int sequence);
31 void onWriteCanceled(int sequence);
IPrintSpoolerCallbacks.aidl 32 void onGetPrintJobInfosResult(in List<PrintJobInfo> printJob, int sequence);
33 void onCancelPrintJobResult(boolean canceled, int sequence);
34 void onSetPrintJobStateResult(boolean success, int sequence);
35 void onSetPrintJobTagResult(boolean success, int sequence);
36 void onGetPrintJobInfoResult(in PrintJobInfo printJob, int sequence);
43 * @param sequence the sequence number of the call to get the icon
45 void onGetCustomPrinterIconResult(in Icon icon, int sequence);
50 * @param sequence the sequence number of the call to cache the ico
    [all...]
  /external/libchrome/base/task_scheduler/
sequence_unittest.cc 5 #include "base/task_scheduler/sequence.h"
58 // Tasks to be handed off to a Sequence for testing.
67 // moved into a Sequence.
81 scoped_refptr<Sequence> sequence(new Sequence);
83 // Push task A in the sequence. Its sequenced time should be updated and it
84 // should be in front of the sequence.
85 EXPECT_TRUE(sequence->PushTask(std::move(task_a_owned_)));
87 EXPECT_EQ(task_a_->traits.priority(), sequence->PeekTaskTraits().priority())
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetSpanner.java 111 * Returns the number of matching characters found in a character sequence,
114 * @param sequence
115 * the sequence to count characters in
118 public int countIn(CharSequence sequence) {
119 return countIn(sequence, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
123 * Returns the number of matching characters found in a character sequence, using SpanCondition.SIMPLE.
125 * @param sequence
126 * the sequence to count characters in
131 public int countIn(CharSequence sequence, CountMethod countMethod) {
132 return countIn(sequence, countMethod, SpanCondition.SIMPLE)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetSpanner.java 126 * Returns the number of matching characters found in a character sequence,
129 * @param sequence
130 * the sequence to count characters in
135 public int countIn(CharSequence sequence) {
136 return countIn(sequence, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
140 * Returns the number of matching characters found in a character sequence, using SpanCondition.SIMPLE.
142 * @param sequence
143 * the sequence to count characters in
150 public int countIn(CharSequence sequence, CountMethod countMethod) {
151 return countIn(sequence, countMethod, SpanCondition.SIMPLE)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
NodeId.java 19 * Enum for the three basic YAML types: scalar, sequence and mapping.
22 scalar, sequence, mapping, anchor; enum constant in enum:NodeId
  /frameworks/base/core/java/android/app/
IEphemeralResolver.aidl 24 int sequence);
27 int sequence);
  /system/chre/host/msm/daemon/idl/
chre_slpi.idl 33 long get_message_to_host(rout sequence<octet> buffer,
36 long deliver_message_from_host(in sequence<octet> message);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d10v/
instruction_packing-006.s 0 ;; sequence control operands need to be packed with nop's
  /external/google-breakpad/src/processor/
stackwalk_common.cc 290 int sequence = 0; local
296 sequence = PrintRegister("eip", frame_x86->context.eip, sequence);
298 sequence = PrintRegister("esp", frame_x86->context.esp, sequence);
300 sequence = PrintRegister("ebp", frame_x86->context.ebp, sequence);
302 sequence = PrintRegister("ebx", frame_x86->context.ebx, sequence);
304 sequence = PrintRegister("esi", frame_x86->context.esi, sequence)
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 247 @Override public int indexIn(CharSequence sequence) {
248 return (sequence.length() == 0) ? -1 : 0;
250 @Override public int indexIn(CharSequence sequence, int start) {
251 int length = sequence.length();
255 @Override public int lastIndexIn(CharSequence sequence) {
256 return sequence.length() - 1;
258 @Override public boolean matchesAllOf(CharSequence sequence) {
259 checkNotNull(sequence);
262 @Override public boolean matchesNoneOf(CharSequence sequence) {
263 return sequence.length() == 0
    [all...]
  /frameworks/base/core/java/android/util/
TimedRemoteCaller.java 28 * sequence number and a callback and then starting to wait for
30 * the sequence number. If the response comes within the timeout
31 * and its sequence number is the one sent in the method invocation,
44 * public void onCompleted(Object result, int sequence) {
45 * onRemoteMethodResult(result, sequence);
54 * final int sequence = onBeforeRemoteCall();
55 * mTarget.myMethod(arg, sequence);
56 * return getResultTimed(sequence);
73 /** The callbacks we are waiting for, key == sequence id, value == 1 */
97 * @return The sequence id for the cal
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
ConcreteSyntaxModel.java 76 return list(ObservableProperty.TYPE_PARAMETERS, CsmElement.sequence(CsmElement.comma(), CsmElement.space()), CsmElement.token(GeneratedJavaParserConstants.LT),
77 CsmElement.sequence(CsmElement.token(GeneratedJavaParserConstants.GT), CsmElement.space()));
81 return list(ObservableProperty.TYPE_ARGUMENTS, CsmElement.sequence(CsmElement.comma(), CsmElement.space()), CsmElement.token(GeneratedJavaParserConstants.LT),
82 CsmElement.sequence(CsmElement.token(GeneratedJavaParserConstants.GT)));
91 concreteSyntaxModelByClass.put(AnnotationDeclaration.class, CsmElement.sequence(
108 concreteSyntaxModelByClass.put(AnnotationMemberDeclaration.class, CsmElement.sequence(
117 CsmElement.conditional(ObservableProperty.DEFAULT_VALUE, IS_PRESENT, CsmElement.sequence(CsmElement.space(), CsmElement.token(GeneratedJavaParserConstants._DEFAULT), CsmElement.space(), CsmElement.child(DEFAULT_VALUE))),
121 concreteSyntaxModelByClass.put(ClassOrInterfaceDeclaration.class, sequence(
128 list(TYPE_PARAMETERS, sequence(comma(), space()), string(GeneratedJavaParserConstants.LT), string(GeneratedJavaParserConstants.GT)),
130 sequence(string(GeneratedJavaParserConstants.COMMA), space())
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 258 @Override public int indexIn(CharSequence sequence) {
259 return (sequence.length() == 0) ? -1 : 0;
262 @Override public int indexIn(CharSequence sequence, int start) {
263 int length = sequence.length();
268 @Override public int lastIndexIn(CharSequence sequence) {
269 return sequence.length() - 1;
272 @Override public boolean matchesAllOf(CharSequence sequence) {
273 checkNotNull(sequence);
277 @Override public boolean matchesNoneOf(CharSequence sequence) {
278 return sequence.length() == 0
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 256 @Override public int indexIn(CharSequence sequence) {
257 return (sequence.length() == 0) ? -1 : 0;
260 @Override public int indexIn(CharSequence sequence, int start) {
261 int length = sequence.length();
266 @Override public int lastIndexIn(CharSequence sequence) {
267 return sequence.length() - 1;
270 @Override public boolean matchesAllOf(CharSequence sequence) {
271 checkNotNull(sequence);
275 @Override public boolean matchesNoneOf(CharSequence sequence) {
276 return sequence.length() == 0
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
sequence_test.py 15 """Tests for sequence data preprocessing utils."""
33 b = keras.preprocessing.sequence.pad_sequences(a, maxlen=3, padding='pre')
35 b = keras.preprocessing.sequence.pad_sequences(a, maxlen=3, padding='post')
39 b = keras.preprocessing.sequence.pad_sequences(
42 b = keras.preprocessing.sequence.pad_sequences(
47 b = keras.preprocessing.sequence.pad_sequences(a, maxlen=3, value=1)
54 b = keras.preprocessing.sequence.pad_sequences(a, maxlen=3, padding='pre')
57 b = keras.preprocessing.sequence.pad_sequences(a, maxlen=3, padding='post')
62 b = keras.preprocessing.sequence.pad_sequences(
67 b = keras.preprocessing.sequence.pad_sequences
    [all...]
  /external/webrtc/tools/matlab/
maxUnwrap.m 1 function sequence = maxUnwrap(sequence, max)
3 % sequence = maxUnwrap(sequence, max)
8 % sequence: The vector to unwrap.
9 % max: The maximum value that the sequence can take,
14 % sequence: The unwrapped vector.
25 sequence = round((unwrap(2 * pi * sequence / max) * max) / (2 * pi));
  /frameworks/av/media/libmedia/include/media/
SingleStateQueue.h 65 // returns a sequence number which can be used with ack()
69 int32_t sequence = mSequence; local
70 sequence++;
71 android_atomic_acquire_store(sequence, &shared->mSequence);
73 sequence++;
74 android_atomic_release_store(sequence, &shared->mSequence);
75 mSequence = sequence;
77 return sequence;
95 // return true if a push with specified sequence number or later has been observed
96 bool ack(int32_t sequence) cons
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
PermutationChromosome.java 32 * Permutes the <code>sequence</code> of objects of type T according to the
34 * represents a permutation (3,0,1,2), and the unpermuted sequence is
37 * @param sequence
38 * the unpermuted (original) sequence of objects
39 * @return permutation of <code>sequence</code> represented by this
42 List<T> decode(List<T> sequence);
  /external/llvm/bindings/python/llvm/tests/
test_disassembler.py 10 sequence = '\x67\xe3\x81' # jcxz -127
15 count, s = disassembler.get_instruction(sequence)
24 sequence = '\x67\xe3\x81\x01\xc7' # jcxz -127; addl %eax, %edi
28 instructions = list(disassembler.get_instructions(sequence))
35 sequence = '\x10\x40\x2d\xe9'
40 count, s = disassembler.get_instruction(sequence)
  /external/tensorflow/tensorflow/contrib/keras/api/keras/preprocessing/sequence/
__init__.py 15 """Keras data preprocessing utils for sequence data."""
21 from tensorflow.python.keras._impl.keras.preprocessing.sequence import make_sampling_table
22 from tensorflow.python.keras._impl.keras.preprocessing.sequence import pad_sequences
23 from tensorflow.python.keras._impl.keras.preprocessing.sequence import skipgrams
  /external/tensorflow/tensorflow/python/keras/preprocessing/sequence/
__init__.py 15 """Keras data preprocessing utils for sequence data."""
21 from tensorflow.python.keras._impl.keras.preprocessing.sequence import make_sampling_table
22 from tensorflow.python.keras._impl.keras.preprocessing.sequence import pad_sequences
23 from tensorflow.python.keras._impl.keras.preprocessing.sequence import skipgrams
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug024.go 18 bug.go:5: unknown escape sequence: '
19 bug.go:6: unknown escape sequence: \
20 bug.go:8: unknown escape sequence: "

Completed in 1422 milliseconds

1 2 3 4 5 6 7 8 91011>>