HomeSort by relevance Sort by last modified time
    Searched full:startoffset (Results 26 - 50 of 273) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositionUnderline.h 35 : startOffset(0), endOffset(0), thick(false) { }
37 : startOffset(s), endOffset(e), color(c), thick(t) { }
38 unsigned startOffset;
  /external/chromium_org/third_party/WebKit/public/web/
WebCompositionUnderline.h 42 : startOffset(0)
48 : startOffset(s)
53 unsigned startOffset;
  /frameworks/base/core/res/res/anim/
task_close_enter.xml 26 android:startOffset="300"
32 android:startOffset="300"
40 android:startOffset="300"
task_open_enter.xml 26 android:startOffset="300"
32 android:startOffset="300"
40 android:startOffset="300"
  /frameworks/base/core/res/res/anim-land/
task_close_enter.xml 26 android:startOffset="300"
32 android:startOffset="300"
40 android:startOffset="300"
task_open_enter.xml 26 android:startOffset="300"
32 android:startOffset="300"
40 android:startOffset="300"
  /frameworks/base/core/res/res/anim-sw720dp/
task_close_enter.xml 26 android:startOffset="500"
32 android:startOffset="500"
40 android:startOffset="500"
task_open_enter.xml 26 android:startOffset="500"
32 android:startOffset="500"
40 android:startOffset="500"
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 126 public static string substring( string str, int startOffset )
128 return str.Substring( startOffset );
131 public static string substring( string str, int startOffset, int endOffset )
133 return str.Substring( startOffset, endOffset - startOffset );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 121 public static string substring( this string str, int startOffset )
123 return str.Substring( startOffset );
127 public static string substring(this string str, int startOffset, int endOffset)
129 return str.Substring( startOffset, endOffset - startOffset );
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedText.java 38 public int startOffset;
59 * <var>startOffset</var>+<var>selectionStart</var>.
66 * <var>startOffset</var>+<var>selectionEnd</var>.
97 dest.writeInt(startOffset);
113 res.startOffset = source.readInt();
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 137 ssize_t startOffset = -1;
140 startOffset = i;
145 if (startOffset < 0) {
149 if (startOffset > 0) {
152 startOffset);
155 data = &ptr[startOffset];
156 size -= startOffset;
170 ssize_t startOffset = -1;
173 startOffset = i;
178 if (startOffset < 0)
    [all...]
  /development/samples/ApiDemos/res/anim/
hyperspace_in.xml 17 <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" android:startOffset="1200" />
hyperspace_out.xml 44 android:startOffset="700"
56 android:startOffset="700"
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_mac_unittest.mm 23 startOffset:(int32)startOffset
41 startOffset:(int32)startOffset
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
IndexDataManager.h 38 unsigned int startOffset; // In bytes
  /packages/apps/Gallery/res/anim/
slide_in.xml 20 android:startOffset="0"
slide_in_vertical.xml 20 android:startOffset="0"
slide_out.xml 20 android:startOffset="0"
slide_out_vertical.xml 20 android:startOffset="0"
  /packages/inputmethods/LatinIME/java/res/anim/
language_on_spacebar_fadeout.xml 25 android:startOffset="1200"
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1-expected-completion59.txt 5 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached. [integer]
  /external/proguard/src/proguard/classfile/attribute/
ExceptionInfo.java 82 public boolean isApplicable(int startOffset, int endOffset)
85 u2endPC > startOffset;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
TimedItem.cpp 69 const double startOffset = m_specified.iterationStart * iterationDuration;
70 const double scaledActiveTime = calculateScaledActiveTime(activeDuration, activeTime, startOffset, m_specified);
71 const double iterationTime = calculateIterationTime(iterationDuration, repeatedDuration, scaledActiveTime, startOffset, m_specified);
82 const double startOffset = m_specified.iterationStart * iterationDuration;
83 const double scaledActiveTime = calculateScaledActiveTime(activeDuration, activeTime, startOffset, m_specified);
84 const double iterationTime = calculateIterationTime(iterationDuration, repeatedDuration, scaledActiveTime, startOffset, m_specified);
TimedItemCalculations.h 95 static inline double calculateScaledActiveTime(double activeDuration, double activeTime, double startOffset, const Timing& specified)
98 ASSERT(startOffset >= 0);
105 return (specified.playbackRate < 0 ? activeTime - activeDuration : activeTime) * specified.playbackRate + startOffset;
113 static inline double calculateIterationTime(double iterationDuration, double repeatedDuration, double scaledActiveTime, double startOffset, const Timing& specified)
122 ASSERT(scaledActiveTime <= repeatedDuration + startOffset);
127 if (scaledActiveTime - startOffset == repeatedDuration && specified.iterationCount && endsOnIterationBoundary(specified.iterationCount, specified.iterationStart))

Completed in 463 milliseconds

12 3 4 5 6 7 8 91011