Home
last modified time | relevance | path

Searched refs:sequence (Results 1 – 25 of 77) sorted by relevance

1234

/packages/apps/Launcher3/src/com/android/launcher3/testing/
DTestLogging.java33 private static void recordEventSlow(String sequence, String event) { in recordEventSlow() argument
34 Log.d(TestProtocol.TAPL_EVENTS_TAG, sequence + " / " + event); in recordEventSlow()
37 eventConsumer.accept(sequence, event); in recordEventSlow()
41 public static void recordEvent(String sequence, String event) { in recordEvent() argument
43 recordEventSlow(sequence, event); in recordEvent()
47 public static void recordEvent(String sequence, String message, Object parameter) { in recordEvent() argument
49 recordEventSlow(sequence, message + ": " + parameter); in recordEvent()
60 public static void recordKeyEvent(String sequence, String message, KeyEvent event) { in recordKeyEvent() argument
62 recordEventSlow(sequence, message + ": " + event); in recordKeyEvent()
67 public static void recordMotionEvent(String sequence, String message, MotionEvent event) { in recordMotionEvent() argument
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DSentenceLevelAdapter.java91 public int getEndOfWord(final CharSequence sequence, final int fromIndex) { in getEndOfWord() argument
92 final int length = sequence.length(); in getEndOfWord()
93 int index = fromIndex < 0 ? 0 : Character.offsetByCodePoints(sequence, fromIndex, 1); in getEndOfWord()
95 final int codePoint = Character.codePointAt(sequence, index); in getEndOfWord()
104 Character.codePointAt(sequence, indexOfNextCodePoint))) { in getEndOfWord()
116 public int getBeginningOfNextWord(final CharSequence sequence, final int fromIndex) {
117 final int length = sequence.length();
121 int index = fromIndex < 0 ? 0 : Character.offsetByCodePoints(sequence, fromIndex, 1);
123 final int codePoint = Character.codePointAt(sequence, index);
/packages/modules/Bluetooth/tools/rootcanal/lmp/src/test/
Dmod.rs2 mod sequence; module
5 pub(crate) use sequence::{sequence, sequence_body};
Dsequence.rs103 macro_rules! sequence { macro
125 pub(crate) use sequence;
/packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
DGpsCoordinatesTextClassifier.java68 CharSequence sequence = text.subSequence(start, end); in classifyText() local
69 if (isGeoSequence(sequence)) { in classifyText()
72 .setData(Uri.parse(String.format("geo:0,0?q=%s", sequence))); in classifyText()
78 .setText(sequence.toString()) in classifyText()
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DLogEventChecker.java51 void expectPattern(String sequence, Pattern pattern) { in expectPattern() argument
52 mExpectedEvents.add(sequence, pattern); in expectPattern()
115 String sequence = expectedEvents.getKey(); in lowLevelMismatchDiagnostics() local
117 List<String> actual = new ArrayList<>(actualEvents.getNonNull(sequence)); in lowLevelMismatchDiagnostics()
122 sequence, in lowLevelMismatchDiagnostics()
/packages/apps/Settings/src/com/android/settings/applications/
DAppStorageSizesController.java164 public Builder setComputingString(@StringRes int sequence) { in setComputingString() argument
165 mComputing = sequence; in setComputingString()
169 public Builder setErrorString(@StringRes int sequence) { in setErrorString() argument
170 mError = sequence; in setErrorString()
/packages/modules/Connectivity/tests/unit/java/android/net/
DKeepalivePacketDataUtilTest.java140 final int sequence = 0x11111111; in testToTcpKeepaliveStableParcelable() local
151 testInfo.seq = sequence; in testToTcpKeepaliveStableParcelable()
165 assertEquals(resultData.seq, sequence); in testToTcpKeepaliveStableParcelable()
183 final int sequence = 0x11111111; in testParseTcpKeepalivePacketData() local
194 testParcel.seq = sequence; in testParseTcpKeepalivePacketData()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dencoding.md5 > (in Introduction) JSON text is a sequence of Unicode code points.
34 …r transferred over network, we need to state the byte order of the byte sequence, either little-en…
94 …andle UTF-8. Since any JSON can represent unicode characters in escaped sequence `\uXXXX`, JSON ca…
114 When RapidJSON parses a JSON, it can validate the input JSON, whether it is a valid sequence of a s…
116 …teEncodingFlag` is not necessary, as it must decode the input sequence. And if the sequence was un…
/packages/providers/MediaProvider/tests/src/com/android/providers/media/scan/
DDrmTest.java177 List<InputStream> sequence = new ArrayList<>(); in createDmStream() local
182 sequence.add(new ByteArrayInputStream(dmHeader.getBytes(StandardCharsets.UTF_8))); in createDmStream()
186 sequence.add(body); in createDmStream()
189 sequence.add(new ByteArrayInputStream(dmFooter.getBytes(StandardCharsets.UTF_8))); in createDmStream()
191 return new SequenceInputStream(new EnumerationAdapter<InputStream>(sequence.iterator())); in createDmStream()
/packages/services/Car/cpp/evs/manager/1.1/emul/
DVideoCapture.cpp341 static uint64_t sequence = 0; // counting frames in collectFrames() local
385 mBufferInfo.sequence = sequence++; in collectFrames()
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/
DRaceConditionReproducer.java496 ArrayList<String> sequence = new ArrayList<>(); in generateSequenceToFollowLocked() local
497 mRoot.populatePathToGrowthPoint(sequence); in generateSequenceToFollowLocked()
498 return sequence; in generateSequenceToFollowLocked()
/packages/modules/NeuralNetworks/tools/api/
DREADME.md95 A *null region* is a sequence of lines that is not part of any other region.
104 A *conditional region* is a sequence of lines immediately preceded by the `%kind
116 A *section region* is a sequence of lines immediately preceded by the `%section
118 line in the sequence that doesn't begin with `%` undergoes macro substitution,
/packages/apps/Launcher3/ext_tests/src/com/android/launcher3/testing/
DDebugTestInformationHandler.java177 (sequence, event) -> { in call() argument
181 events.add(sequence + '/' + event); in call()
/packages/modules/Bluetooth/system/gd/packet/parser/doc/
Dreference.md135 A *packet* is a declaration of a sequence of [fields](#fields).
177 A *group* is a sequence of [fields](#fields) that expand in a
365 An *array* field defines a sequence of `N` elements of type `T`.
555 A string is sequence of character. It can be multi-line.
568 An identifier is a sequence of alphanumeric or `_` characters
/packages/modules/Bluetooth/tools/rootcanal/lmp/test/SP/
DBV-04-C.in1 sequence! { procedure, context,
DBV-03-C.in1 sequence! { procedure, context,
DBV-30-C.in1 sequence! { procedure, context,
/packages/apps/Contacts/src/com/android/contacts/vcard/
DVCardImportExportListener.java25 Notification onImportProcessed(ImportRequest request, int jobId, int sequence); in onImportProcessed() argument
DNotificationImportExportListener.java73 public Notification onImportProcessed(ImportRequest request, int jobId, int sequence) { in onImportProcessed() argument
87 if (sequence == 0) { in onImportProcessed()
/packages/modules/Bluetooth/tools/rootcanal/lmp/test/ENC/
DBV-26-C.in1 sequence! { procedure, context,
DBV-01-C.in1 sequence! { procedure, context,
DBV-05-C.in1 sequence! { procedure, context,
DBV-34-C.in1 sequence! { procedure, context,
/packages/services/Car/car-lib/src/android/car/navigation/
Dnavigation_state.proto493 // a sequence of graphic elements (e.g. text, images) to be displayed
496 // Each sequence will have a plain text representation in `alternate_text`
498 // the sequence of elements in `elements` may be left empty.
502 // One item in the sequence that makes up a Cue,
503 // a sequence of graphic elements that can be displayed one after another.
512 // If rendering fails and the text is empty, then no elements in the sequence
534 // The sequence of graphic elements.
578 // described as a Cue object containing a sequence of texts
580 // Separators, such as spaces, should be provided in the sequence.

1234