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
31
) 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) {
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
82
public static ComprehensionTlvTag
fromInt
(int value) {
393
CommandType cmdType = AppInterface.CommandType.
fromInt
(cmdDet.typeOfCommand);
675
switch (AppInterface.CommandType.
fromInt
(cmdDet.typeOfCommand)) {
/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
84
public static TabState
fromInt
(int value) {
147
mCurrentTab = TabState.
fromInt
(savedState.getInt(EXTRA_KEY_SELECTED_TAB));
377
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); }
/external/v8/benchmarks/
crypto.js
200
function nbv(i) { var r = nbi(); r.
fromInt
(i); return r; }
457
if(q != null) q.
fromInt
(0);
642
BigInteger.prototype.
fromInt
= bnpFromInt;
731
this.
fromInt
(0);
760
if(a < 2) this.
fromInt
(1);
[
all
...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js
192
function nbv(i) { var r = nbi(); r.
fromInt
(i); return r; }
449
if(q != null) q.
fromInt
(0);
634
BigInteger.prototype.
fromInt
= bnpFromInt;
723
this.
fromInt
(0);
752
if(a < 2) this.
fromInt
(1);
[
all
...]
Completed in 3190 milliseconds
1
2