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

1 2

  /frameworks/base/core/java/android/animation/
IntKeyframeSet.java 45 return getIntValue(fraction);
60 public int getIntValue(float fraction) {
64 firstValue = ((IntKeyframe) mKeyframes.get(0)).getIntValue();
65 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
80 int prevValue = prevKeyframe.getIntValue();
81 int nextValue = nextKeyframe.getIntValue();
96 int prevValue = prevKeyframe.getIntValue();
97 int nextValue = nextKeyframe.getIntValue();
119 int prevValue = prevKeyframe.getIntValue();
120 int nextValue = nextKeyframe.getIntValue();
    [all...]
Keyframe.java 292 public int getIntValue() {
PropertyValuesHolder.java     [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
AbstractData.java 30 public int getIntValue() {
67 public int getIntValue(String path, int defaultValue) {
93 public int getIntValue(String path) {
Data.java 53 int getIntValue();
217 int getIntValue(String path, int defaultValue);
229 int getIntValue(String path);
DelegatedData.java 72 public int getIntValue() {
73 return getDelegate().getIntValue();
250 public int getIntValue(String path, int defaultValue) {
251 return getDelegate().getIntValue(path, defaultValue);
260 public int getIntValue(String path) {
261 return getDelegate().getIntValue(path);
ChainedData.java 151 public int getIntValue(String path, int defaultValue) {
176 public int getIntValue(String path) {
179 return child.getIntValue();
TypeConverter.java 113 return data != null ? data.getIntValue() : 0;
  /external/jsilver/src/org/clearsilver/
HDF.java 74 int getIntValue(String hdfName, int defaultValue);
DelegatedHdf.java 99 public int getIntValue(String hdfname,
101 return getHdf().getIntValue(hdfname, default_value);
  /external/webkit/Source/WebCore/css/
Counter.h 40 int listStyleNumber() const { return m_listStyle ? m_listStyle->getIntValue() : 0; }
CSSPrimitiveValue.h 161 int getIntValue(unsigned short unitType, ExceptionCode& ec) const { return static_cast<int>(getDoubleValue(unitType, ec)); }
162 int getIntValue(unsigned short unitType) const { return static_cast<int>(getDoubleValue(unitType)); }
163 int getIntValue() const { return static_cast<int>(m_value.num); }
MediaQueryEvaluator.cpp 186 h = static_cast<CSSPrimitiveValue*>(i0)->getIntValue(CSSPrimitiveValue::CSS_NUMBER);
187 v = static_cast<CSSPrimitiveValue*>(i2)->getIntValue(CSSPrimitiveValue::CSS_NUMBER);
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/platform/
Length.h 82 return getIntValue();
202 int getIntValue() const
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 116 return getIntValue(mode, partiallyEscaped, value);
137 return getIntValue(mode, partiallyEscaped, value ? 1 : 0);
140 private static Value getIntValue(EscapeMode mode, boolean partiallyEscaped, int num) {
  /external/webkit/Source/WebCore/bridge/
testbindings.cpp 91 "getIntValue",
185 void getIntValue (MyObject *obj, NPVariant *variant)
206 getIntValue (obj, variant);
277 getIntValue (obj, result);
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java 72 value = getIntValue(valueArg);
245 private Integer getIntValue(int valueArg) {
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JHdf.java 125 public int getIntValue(String hdfName, int defaultValue) {
126 return data.getIntValue(hdfName, defaultValue);
JCs.java 141 int wsStripLevel = localHdf.getIntValue("ClearSilver.WhiteSpaceStrip", 0);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 120 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {
SValBuilder.h 203 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 56 static int getIntValue(JNIEnv* env, jobject object, const char* fieldName);
139 int Utility::getIntValue(JNIEnv* env, jobject object, const char* fieldName) {
437 int mInfoType = Utility::getIntValue(env, drmInfoObject, "mInfoType");
517 int mInfoType = Utility::getIntValue(env, drmInfoRequest, "mInfoType");
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 173 public int getIntValue(String hdfname, int default_value) {
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp     [all...]

Completed in 914 milliseconds

1 2