OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:startInt
(Results
1 - 4
of
4
) sorted by null
/external/autotest/frontend/client/src/autotest/common/table/
ArrayDataSource.java
31
int
startInt
= start != null ? start.intValue() : 0;
33
int size = Math.min(maxCountInt, data.size() -
startInt
);
35
new UnmodifiableSublistView<JSONObject>(sortedData,
startInt
, size);
/developers/build/prebuilts/gradle/Flashlight/Wearable/src/main/java/com/example/android/wearable/flashlight/
PartyLightView.java
103
int
startInt
= colorStart;
104
int startA = (
startInt
>> 24) & 0xff;
105
int startR = (
startInt
>> 16) & 0xff;
106
int startG = (
startInt
>> 8) & 0xff;
107
int startB =
startInt
& 0xff;
/developers/samples/android/deprecated/wearable/wear/Flashlight/Wearable/src/main/java/com/example/android/wearable/flashlight/
PartyLightView.java
103
int
startInt
= colorStart;
104
int startA = (
startInt
>> 24) & 0xff;
105
int startR = (
startInt
>> 16) & 0xff;
106
int startG = (
startInt
>> 8) & 0xff;
107
int startB =
startInt
& 0xff;
/development/samples/browseable/Flashlight/src/com.example.android.wearable.flashlight/
PartyLightView.java
103
int
startInt
= colorStart;
104
int startA = (
startInt
>> 24) & 0xff;
105
int startR = (
startInt
>> 16) & 0xff;
106
int startG = (
startInt
>> 8) & 0xff;
107
int startB =
startInt
& 0xff;
Completed in 744 milliseconds