OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:titleLength
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DefaultAppSearchAlgorithm.java
74
int
titleLength
= title.length();
76
if (
titleLength
< queryLength || queryLength <= 0) {
84
int end =
titleLength
- queryLength;
88
nextType = i < (
titleLength
- 1) ?
/packages/apps/TV/src/com/android/tv/tuner/ts/
SectionParser.java
645
int
titleLength
= (data[pos + 9] & 0xff);
646
if (data.length <= pos + 10 +
titleLength
+ 1) {
651
if (
titleLength
> 0) {
654
if ((data[pos + 10 +
titleLength
] & 0xf0) != 0xf0) {
658
int descriptorsLength = ((data[pos + 10 +
titleLength
] & 0x0f) << 8)
659
| (data[pos + 10 +
titleLength
+ 1] & 0xff);
660
int descriptorsPos = pos + 10 +
titleLength
+ 2;
675
pos += 10 +
titleLength
+ 2 + descriptorsLength;
[
all
...]
Completed in 1104 milliseconds