HomeSort by relevance Sort by last modified time
    Searched refs:startIndex (Results 201 - 225 of 335) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 236 * @param startIndex Index where to start the search
240 String entryName, int entryKind, int startIndex) {
241 if (startIndex < 0) {
242 startIndex = 0;
244 for (int i = startIndex ; i < entries.length ; i++) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelinePanel.js     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapExtendTest.java     [all...]
  /external/chromium_org/third_party/iaccessible2/
ia2_api_all.idl     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditor.cpp 571 int start = attribute.nameRange.start - request.token.startIndex();
572 int end = attribute.valueRange.end - request.token.startIndex();
HTMLToken.h 121 int startIndex() const { return m_range.start; }
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.cpp 78 bool SkDCubic::isLinear(int startIndex, int endIndex) const {
80 lineParameters.cubicEndPoints(*this, startIndex, endIndex);
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 78 bool SkDCubic::isLinear(int startIndex, int endIndex) const {
80 lineParameters.cubicEndPoints(*this, startIndex, endIndex);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
DoubleBufferTest.java 656 private void assertContentLikeTestData1(DoubleBuffer buf, int startIndex,
660 assertEquals(buf.get(startIndex + i), value, 0.01);
FloatBufferTest.java 667 int startIndex, float startValue, int length) {
670 assertEquals(buf.get(startIndex + i), value, 0.01);
IntBufferTest.java 643 int startIndex, int startValue, int length) {
646 assertEquals(buf.get(startIndex + i), value);
LongBufferTest.java 650 int startIndex, long startValue, int length) {
653 assertEquals(buf.get(startIndex + i), value);
ShortBufferTest.java 630 int startIndex, short startValue, int length) {
633 assertEquals(buf.get(startIndex + i), value);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/
suggest.cpp 225 const int startIndex = outputWordIndex * MAX_WORD_LENGTH;
226 terminalDicNode->outputResult(&outputCodePoints[startIndex]);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 310 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool important, int startIndex, int endIndex, bool inheritedOnly);
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
IndexDataManager.cpp 233 translated->startIndex = streamOffset / gl::ComputeTypeSize(destinationIndexType);
  /frameworks/base/core/java/android/os/
Process.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.h 476 Vector<T> toNativeArguments(const v8::FunctionCallbackInfo<v8::Value>& args, int startIndex)
478 ASSERT(startIndex <= args.Length());
482 for (int i = startIndex; i < length; ++i)
  /external/chromium_org/third_party/icu/source/common/
uhash.c 334 int32_t theIndex, startIndex;
340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length;
366 } while (theIndex != startIndex);
    [all...]
  /external/chromium_org/v8/src/
string.js 662 var startIndex = 0;
669 if (startIndex === length) {
675 var matchInfo = DoRegExpExec(separator, subject, startIndex);
684 if (startIndex === endIndex && endIndex === currentIndex) {
685 startIndex++;
707 startIndex = currentIndex = endIndex;
  /external/icu4c/common/
uhash.c 335 int32_t theIndex, startIndex;
341 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length;
367 } while (theIndex != startIndex);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.cpp 295 int startIndex,
300 if (nonSwitchStrings.Size() == startIndex && (!thereAreSwitchIncludes))
302 for (int i = startIndex; i < nonSwitchStrings.Size(); i++)
  /external/v8/src/
string.js 629 var startIndex = 0;
636 if (startIndex === length) {
641 var matchInfo = DoRegExpExec(separator, subject, startIndex);
649 if (startIndex === endIndex && endIndex === currentIndex) {
650 startIndex++;
678 startIndex = currentIndex = endIndex;
  /packages/apps/UnifiedEmail/assets/
script.js 686 function replaceSuperCollapsedBlock(startIndex) {
689 block = document.querySelector(".mail-super-collapsed-block[index='" + startIndex + "']");
691 console.log("can't expand super collapsed block at index: " + startIndex);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp     [all...]

Completed in 872 milliseconds

1 2 3 4 5 6 7 891011>>