HomeSort by relevance Sort by last modified time
    Searched refs:fromInt (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/base/telephony/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 82 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);
CommandParams.java 33 return AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
CatCmdMessage.java 149 return AppInterface.CommandType.fromInt(mCmdDet.typeOfCommand);
RilMessageDecoder.java 123 mCurrentRilMessage.mResCode = ResultCode.fromInt(msg.arg1);
CatService.java 367 CommandType cmdType = AppInterface.CommandType.fromInt(cmdDet.typeOfCommand);
649 switch (AppInterface.CommandType.fromInt(cmdDet.typeOfCommand)) {
CommandParamsFactory.java 117 .fromInt(cmdDet.typeOfCommand);
777 tone = Tone.fromInt(toneVal);
    [all...]
  /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));
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
MessageID.h 152 static MessageID fromInt(unsigned i)
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 85 public static TabState fromInt(int value) {
152 mCurrentTab = TabState.fromInt(savedState.getInt(EXTRA_KEY_SELECTED_TAB));
400 return TabState.fromInt(mPrefs.getInt(PERSISTENT_LAST_TAB, DEFAULT_TAB.ordinal()));
  /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...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataCallState.java 66 mFailCause = FailCause.fromInt(0);
DataConnection.java 175 public static FailCause fromInt(int errorCode) {
482 result.mFailCause = FailCause.fromInt(response.status);
491 result.mFailCause = FailCause.fromInt(response.status);
    [all...]
DataConnectionAc.java 92 public static LinkPropertyChangeAction fromInt(int value) {
100 throw new RuntimeException("LinkPropertyChangeAction.fromInt: bad value=" + value);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
ConnectionUnix.cpp 83 MessageID messageID() const { return MessageID::fromInt(m_messageID & ~MessageBodyIsOOL); }

Completed in 2199 milliseconds

1 2