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

1 2 3 4 5 6 7 8 91011

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 58 int startIndex;
66 startIndex = 0;
71 startIndex = (start > 0) ? (int) start - 1 : 0;
85 if (startIndex > lenOfS1)
86 startIndex = lenOfS1;
88 substr = s1.substring(startIndex, end);
92 if (startIndex > lenOfS1)
93 startIndex = lenOfS1;
94 substr = s1.substring(startIndex);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java 63 int startIndex = 0;
66 result.append(src.substring(startIndex,endIndex));
70 startIndex = endIndex + replacee.length();
71 endIndex = src.indexOf(replacee,startIndex);
73 result.append(src.substring(startIndex,src.length()));
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobURL.cpp 53 unsigned startIndex = url.pathStart();
55 return url.string().substring(startIndex, endIndex - startIndex - 1);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.h 62 WordBoundaries(int startIndex, int endIndex) : startIndex(startIndex), endIndex(endIndex) { }
63 int startIndex;
  /external/icu/icu4c/source/tools/toolutil/
collationinfo.h 31 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 56 protected int startIndex = -1;
74 this.startIndex = node.startIndex;
152 if (startIndex == -1 && token != null) {
155 return startIndex;
158 startIndex = value;
196 if (startIndex < 0 || stopIndex < 0) {
197 startIndex = stopIndex = token.TokenIndex;
204 if (startIndex >= 0 && stopIndex >= 0)
209 startIndex = firstChild.TokenStartIndex
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 56 protected int startIndex = -1;
76 this.startIndex = node.startIndex;
194 if ( startIndex == -1 && Token != null )
197 return startIndex;
202 startIndex = value;
255 if ( startIndex < 0 || stopIndex < 0 )
256 startIndex = stopIndex = Token.TokenIndex;
270 if ( startIndex >= 0 && stopIndex >= 0 )
277 startIndex = firstChild.TokenStartIndex
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTree.java 45 protected int startIndex=-1, stopIndex=-1;
58 this.startIndex = node.startIndex;
113 if ( startIndex==-1 && token!=null ) {
116 return startIndex;
120 startIndex = index;
140 if ( startIndex<0 || stopIndex<0 ) {
141 startIndex = stopIndex = token.getTokenIndex();
148 if ( startIndex>=0 && stopIndex>=0 ) return; // already set
152 startIndex = firstChild.getTokenStartIndex()
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 58 private int startIndex;
69 startIndex = 0;
82 startIndex = aJavascriptTokenBuffer.startIndex;
117 if (endIndex == startIndex) {
118 startIndex = (endIndex + 1) % buffer.length;
129 if (startIndex == endIndex) {
250 int len = endIndex - startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTokenStream.h 81 - (NSMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger) stopIndex;
90 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex;
91 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
95 - (NSString *) toStringFromToken:(id<ANTLRToken>)startIndex ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h 36 NSNumber *startIndex;
40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTokenStream.h 81 - (NSMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger) stopIndex;
90 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex;
91 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
95 - (NSString *) toStringFromToken:(id<ANTLRToken>)startIndex ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h 36 NSNumber *startIndex;
40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTokenStream.h 81 - (NSMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger) stopIndex;
90 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex;
91 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
92 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithList:(NSMutableArray *)types;
93 - (NSMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
94 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
95 - (NSString *) toStringFromToken:(id<ANTLRToken>)startIndex ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h 36 NSNumber *startIndex;
40 @property (retain, getter=getStartIndex, setter=setStartIndex) NSNumber *startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTokenStream.h 84 - (AMutableArray *)getFrom:(NSInteger)startIndex To:(NSInteger) stopIndex;
93 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex;
94 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex With:(ANTLRBitSet *)types;
95 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithList:(AMutableArray *)types;
96 - (AMutableArray *)getTokensFrom:(NSInteger)startIndex To:(NSInteger)stopIndex WithType:(NSInteger)ttype;
98 - (NSString *) toStringFromStart:(NSInteger)startIndex ToEnd:(NSInteger)stopIndex;
99 - (NSString *) toStringFromToken:(id<ANTLRToken>)startIndex ToToken:(id<ANTLRToken>)stopIndex;
ANTLRRuleMemo.h 36 NSNumber *startIndex;
40 @property (retain, getter=getStartIndex, setter=setStartIndex:) NSNumber *startIndex;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_braille.js 22 * startIndex: (undefined|number),
26 * startIndex The beginning of a selection within text.
42 this.startIndex = goog.isDef(kwargs.startIndex) ? kwargs.startIndex : -1;
49 kwargs.endIndex : this.startIndex;
69 if (typeof json.startIndex !== 'number' ||
75 startIndex: json.startIndex,
94 ' startIndex="' + this.startIndex + '" '
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTree.as 45 public var startIndex:int=-1, stopIndex:int=-1;
57 this.startIndex = node.startIndex;
115 if ( startIndex==-1 && _token!=null ) {
118 return startIndex;
122 startIndex = index;
  /external/chromium_org/third_party/isimpledom/
ISimpleDOMText.idl 58 cpp_quote("// /* [in] */ unsigned int startIndex,")
71 cpp_quote("// /* [in] */ unsigned int startIndex,")
94 HRESULT get_clippedSubstringBounds([in] unsigned int startIndex,
101 HRESULT get_unclippedSubstringBounds([in] unsigned int startIndex,
108 HRESULT scrollToSubstring([in] unsigned int startIndex,
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
ImagePageGenerator.java 36 public ImagePageGenerator(int startIndex, boolean advance) {
37 mIndex = startIndex;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ListIteratorTester.java 44 Iterable<E> expectedElements, int startIndex) {
46 KnownOrder.KNOWN_ORDER, startIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
TextUtils.js 127 * @param {number=} startIndex
131 findBalancedCurlyBrackets: function(source, startIndex, lastIndex) {
133 startIndex = startIndex || 0;
137 for (var index = startIndex; index < lastIndex; ++index) {
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
BitTreeEncoder.java 72 public static int ReverseGetPrice(short[] Models, int startIndex,
81 price += Encoder.GetPrice(Models[startIndex + m], bit);
87 public static void ReverseEncode(short[] Models, int startIndex,
94 rangeEncoder.Encode(Models, startIndex + m, bit);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 11 this.startIndex = -1;
26 this.startIndex = node.startIndex;
85 return this.startIndex;
89 this.startIndex = index;

Completed in 2137 milliseconds

1 2 3 4 5 6 7 8 91011