Searched refs:getInt (Results 1 - 25 of 139) sorted by relevance

123456

/external/proguard/src/proguard/gui/splash/
H A DVariableInt.java33 public int getInt(long time); method in interface:VariableInt
H A DConstantInt.java45 public int getInt(long time) method in class:ConstantInt
H A DRectangleSprite.java98 int xt = x.getInt(time);
99 int yt = y.getInt(time);
100 int w = width.getInt(time);
101 int h = height.getInt(time);
102 int aw = arcWidth.getInt(time);
103 int ah = arcHeight.getInt(time);
H A DCircleSprite.java61 int xt = x.getInt(time);
62 int yt = y.getInt(time);
63 int r = radius.getInt(time);
H A DTextSprite.java79 int xt = x.getInt(time);
80 int yt = y.getInt(time);
82 int spacingt = spacing.getInt(time);
H A DLinearInt.java51 public int getInt(long time) method in class:LinearInt
H A DImageSprite.java65 int xt = x.getInt(time);
66 int yt = y.getInt(time);
H A DShadowedSprite.java70 int b = blur.getInt(time) + 1;
87 int xo = xOffset.getInt(time) - b/2;
88 int yo = yOffset.getInt(time) - b/2;
H A DBufferedSprite.java141 bufferX + x.getInt(time),
142 bufferY + y.getInt(time),
/external/android-mock/livetests/com/google/android/testing/mocking/testapp/
H A DClassToMock.java28 public int getInt() { method in class:ClassToMock
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DIntArrayWrapper.java35 public int getInt(int index){ method in class:IntArrayWrapper
/external/skia/src/core/
H A DSkPicturePlayback.h54 int index = getInt();
60 int getInt() { return fReader.readInt(); } function in class:SkPicturePlayback
63 int index = getInt();
72 return (*fPathHeap)[getInt() - 1];
76 int index = getInt();
82 int index = getInt();
88 int index = getInt();
113 int index = getInt();
121 size_t length = text->fByteLength = getInt();
H A DSkFloat.cpp289 n = a.getInt();
293 n = b.getInt();
297 n = c.getInt();
301 SkDebugf("SkFloat: %d + %d = %d\n", c.getInt(), b.getInt(), d.getInt());
314 SkASSERT(a.getInt() == aa);
315 SkASSERT(b.getInt() == bb);
318 int cc = c.getInt();
322 cc = c.getInt();
[all...]
/external/llvm/lib/VMCore/
H A DUse.cpp55 unsigned Tag = (Current++)->Prev.getInt();
65 unsigned Tag = Current->Prev.getInt();
139 return ref->getInt()
/external/android-mock/livetests/com/google/android/testing/mocking/test/
H A DMockingTest.java54 AndroidMock.expect(myMockClass.getInt()).andReturn(42);
58 assertEquals(42, myMockClass.getInt());
/external/webkit/Source/WebCore/bridge/
H A Dtest.js12 myInterface.logMessage ("myInterface.getInt() = " + myInterface.getInt());
H A DtestM.js16 myInterface.logMessage ("myInterface.getInt() = " + myInterface.getInt());
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h128 bool isClobber() const { return Value.getInt() == Clobber; }
132 bool isDef() const { return Value.getInt() == Def; }
138 return Value.getInt() == Other
145 return Value.getInt() == Other
152 return Value.getInt() == Other
159 if (Value.getInt() == Other) return NULL;
181 bool isDirty() const { return Value.getInt() == Invalid; }
/external/clang/include/clang/AST/
H A DGlobalDecl.h54 CanonGD.Value.setInt(Value.getInt());
63 return static_cast<CXXCtorType>(Value.getInt());
68 return static_cast<CXXDtorType>(Value.getInt());
H A DRedeclarable.h36 bool NextIsPrevious() const { return base_type::getInt() == false; }
37 bool NextIsLatest() const { return base_type::getInt() == true; }
/external/replicaisland/src/com/replica/replicaisland/
H A DGameOverActivity.java142 final int ending = prefs.getInt(PreferenceConstants.PREFERENCE_LAST_ENDING, -1);
143 final int pearlsCollected = prefs.getInt(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED, 0);
144 final int pearlsTotal = prefs.getInt(PreferenceConstants.PREFERENCE_PEARLS_TOTAL, 0);
146 final int enemies = prefs.getInt(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED, 0);
/external/llvm/lib/Target/
H A DTargetData.cpp127 /// getInt - Get an integer ignoring errors.
128 static unsigned getInt(StringRef R) { function
179 PointerMemSize = getInt(Split.first) / 8;
181 PointerABIAlign = getInt(Split.first) / 8;
183 PointerPrefAlign = getInt(Split.first) / 8;
201 unsigned Size = getInt(Specifier.substr(1));
203 unsigned ABIAlign = getInt(Split.first) / 8;
206 unsigned PrefAlign = getInt(Split.first) / 8;
215 if (unsigned Width = getInt(Specifier))
223 StackNaturalAlign = getInt(Specifie
[all...]
/external/clang/lib/AST/
H A DAPValue.cpp50 setInt(RHS.getInt());
102 OS << "Int: " << getInt();
132 Out << V.getInt();
/external/icu4c/tools/ctestfw/unicode/
H A Ddatamap.h48 virtual int32_t getInt(const char* key, UErrorCode &status) const = 0;
128 virtual int32_t getInt(const char* key, UErrorCode &status) const;
/external/clang/test/SemaCXX/
H A Dfriend.cpp47 friend const int getInt(int inInt = 0);

Completed in 360 milliseconds

123456