OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currentLength
(Results
1 - 25
of
30
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntitySearch.h
42
int
currentLength
() const { return m_currentLength; }
/external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBuffer.h
172
unsigned
currentLength
= byteLength();
174
index =
currentLength
+ index;
175
return clampValue(index, 0,
currentLength
);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
StringBuilder.cpp
228
unsigned
currentLength
= m_length;
231
return getBufferCharacters<CharType>() +
currentLength
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResizableIntArray.java
47
final int
currentLength
= mLength;
48
ensureCapacity(
currentLength
+ 1);
49
mArray[
currentLength
] = val;
50
mLength =
currentLength
+ 1;
116
final int
currentLength
= mLength;
117
final int newLength =
currentLength
+ length;
119
System.arraycopy(src.mArray, startPos, mArray,
currentLength
, length);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp
292
unsigned
currentLength
= computeLengthForSubmission(currentValue);
293
if (
currentLength
+ computeLengthForSubmission(event->text()) < unsignedMaxLength)
302
ASSERT(
currentLength
>= selectionLength);
303
unsigned baseLength =
currentLength
- selectionLength;
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp
322
int
currentLength
= TextIterator::rangeLength(paragraphRange.get());
324
int currentEndOffset =
currentLength
;
402
if (lastIteration || totalLengthProcessed +
currentLength
>= totalRangeLength)
408
totalLengthProcessed +=
currentLength
;
/frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java
345
int
currentLength
= currentAddresses != null ? currentAddresses.length : 0;
346
String[] finalAddresses = new String[
currentLength
+ add.size()];
349
System.arraycopy(currentAddresses, 0, finalAddresses, add.size(),
currentLength
);
[
all
...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/curves/
CurvesHelper.java
357
float
currentLength
= 0;
360
for (i = 0; i < taperPoints.length - 6 &&
currentLength
< length; i += 3) {
363
currentLength
+= p.length();
365
currentLength
-= p.length();
366
float leftLength = length -
currentLength
;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPreferencePage.java
[
all
...]
/external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp
[
all
...]
/external/icu4c/i18n/
decimfmt.cpp
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar
org.apache.jasper_5.5.17.v201004212143.jar
/development/samples/training/AnimationsDemo/libs/
android-support-v13.jar
/development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar
/development/samples/training/location-aware/libs/
android-support-v4.jar
/sdk/apps/NotificationStudio/libs/
android-support-v4.jar
/sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar
/developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/libs/
android-support-v4.jar
/development/samples/training/ContactsList/libs/
android-support-v4.jar
/development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar
/development/samples/training/InteractiveChart/libs/
android-support-v4.jar
/development/samples/training/NavigationDrawer/libs/
android-support-v4.jar
Completed in 1036 milliseconds
1
2