HomeSort by relevance Sort by last modified time
    Searched refs:fromInt (Results 1 - 25 of 44) 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 234 TextAlignment align = TextAlignment.fromInt(alignValue);
237 FontSize size = FontSize.fromInt(sizeValue);
248 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);
  /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);
  /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) {
  /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()));
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
MessageID.h 152 static MessageID fromInt(unsigned i)
  /external/webkit/Source/JavaScriptCore/parser/
ResultType.h 172 static OperandTypes fromInt(int value)
  /external/webkit/Source/WebKit2/Platform/CoreIPC/win/
ConnectionWin.cpp 177 processIncomingMessage(MessageID::fromInt(messageID), adoptPtr(new ArgumentDecoder(m_readBuffer.data(), realBufferSize)));
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic.cpp     [all...]
JITArithmetic32_64.cpp 799 OperandTypes types = OperandTypes::fromInt(currentInstruction[4].u.operand);
871 OperandTypes types = OperandTypes::fromInt(currentInstruction[4].u.operand);
    [all...]

Completed in 412 milliseconds

1 2