OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fromInt
(Results
1 - 25
of
40
) sorted by null
1
2
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
FontSize.java
42
public static FontSize
fromInt
(int value) {
TextAlignment.java
44
public static TextAlignment
fromInt
(int value) {
TextColor.java
55
public static TextColor
fromInt
(int value) {
AppInterface.java
88
public static CommandType
fromInt
(int value) {
ComprehensionTlvTag.java
66
public static ComprehensionTlvTag
fromInt
(int value) {
ResultCode.java
178
public static ResultCode
fromInt
(int value) {
Tone.java
160
public static Tone
fromInt
(int value) {
ValueParser.java
236
TextAlignment align = TextAlignment.
fromInt
(alignValue);
239
FontSize size = FontSize.
fromInt
(sizeValue);
250
TextColor color = TextColor.
fromInt
(colorValue);
CatCmdMessage.java
172
return AppInterface.CommandType.
fromInt
(mCmdDet.typeOfCommand);
CommandParams.java
33
return AppInterface.CommandType.
fromInt
(mCmdDet.typeOfCommand);
RilMessageDecoder.java
123
mCurrentRilMessage.mResCode = ResultCode.
fromInt
(msg.arg1);
CatService.java
434
CommandType cmdType = AppInterface.CommandType.
fromInt
(cmdDet.typeOfCommand);
680
AppInterface.CommandType type = AppInterface.CommandType.
fromInt
(cmdDet.typeOfCommand);
/external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java
36
assertEquals(0x0000000011111111L, Hashing.padToLong(HashCodes.
fromInt
(0x11111111)));
37
assertEquals(0x0000000099999999L, Hashing.padToLong(HashCodes.
fromInt
(0x99999999)));
99
checkSameResult(HashCodes.
fromInt
(0x99999999), 0x0000000099999999L);
124
Hashing.combineOrdered(ImmutableList.of(HashCodes.
fromInt
(32), HashCodes.fromLong(32L)));
131
HashCode hash31 = HashCodes.
fromInt
(31);
132
HashCode hash32 = HashCodes.
fromInt
(32);
174
Hashing.combineUnordered(ImmutableList.of(HashCodes.
fromInt
(32), HashCodes.fromLong(32L)));
181
HashCode hash31 = HashCodes.
fromInt
(31);
182
HashCode hash32 = HashCodes.
fromInt
(32);
184
assertEquals(HashCodes.
fromInt
(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32)))
[
all
...]
HashCodesTest.java
50
HashCode
fromInt
= HashCodes.
fromInt
(expected.asInt);
51
assertExpectedHashCode(expected,
fromInt
);
AbstractStreamingHasherTest.java
171
return HashCodes.
fromInt
(0xDeadBeef);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcFailBringUp.java
54
mFailCause = DcFailCause.
fromInt
(
65
mFailCause = DcFailCause.
fromInt
(failCause);
DcFailCause.java
111
public static DcFailCause
fromInt
(int errorCode) {
DataCallResponse.java
65
mFailCause = DcFailCause.
fromInt
(0);
DcAsyncChannel.java
100
public static LinkPropertyChangeAction
fromInt
(int value) {
108
throw new RuntimeException("LinkPropertyChangeAction.
fromInt
: bad value=" + value);
/external/guava/guava/src/com/google/common/hash/
HashCodes.java
29
static HashCode
fromInt
(int hash) {
Murmur3_32HashFunction.java
98
return HashCodes.
fromInt
(h1);
/external/smali/dexlib/src/main/java/org/jf/dexlib/
ItemType.java
112
public static ItemType
fromInt
(int itemType) {
MapItem.java
70
ItemType itemType = ItemType.
fromInt
(in.readShort());
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameView.java
64
public static State
fromInt
(int i) {
150
mData[i] = State.
fromInt
(rnd.nextInt(3));
400
mData[i] = State.
fromInt
(data[i]);
405
mSelectedValue = State.
fromInt
(b.getInt("gv_sel_val", State.EMPTY.getValue()));
406
mCurrentPlayer = State.
fromInt
(b.getInt("gv_curr_play", State.EMPTY.getValue()));
407
mWinner = State.
fromInt
(b.getInt("gv_winner", State.EMPTY.getValue()));
GameActivity.java
90
player = State.
fromInt
(getIntent().getIntExtra(EXTRA_START_PLAYER, 1));
Completed in 200 milliseconds
1
2