OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcBegin
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp
86
unsigned char*
srcBegin
;
94
srcBegin
= prefixedBytes.data();
100
srcBegin
= const_cast<unsigned char*>(reinterpret_cast<const unsigned char*>(bytes));
103
unsigned char* src =
srcBegin
;
104
unsigned char* srcEnd =
srcBegin
+ srcSize;
167
unsigned char*
srcBegin
= const_cast<unsigned char*>(reinterpret_cast<const unsigned char*>(characters));
168
unsigned char* src =
srcBegin
;
169
unsigned char* srcEnd =
srcBegin
+ srcSize;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java
194
* @param
srcBegin
index of the first character in the string
202
* <ul><li><code>
srcBegin
</code> is negative.
203
* <li><code>
srcBegin
</code> is greater than <code>srcEnd</code>
207
* <li><code>dstBegin+(srcEnd-
srcBegin
)</code> is larger than
211
public void getChars(int
srcBegin
, int srcEnd, char dst[], int dstBegin)
213
System.arraycopy((char[])m_obj, m_start+
srcBegin
, dst, dstBegin, srcEnd);
XStringForFSB.java
235
* @param
srcBegin
index of the first character in the string
243
* <ul><li><code>
srcBegin
</code> is negative.
244
* <li><code>
srcBegin
</code> is greater than <code>srcEnd</code>
248
* <li><code>dstBegin+(srcEnd-
srcBegin
)</code> is larger than
252
public void getChars(int
srcBegin
, int srcEnd, char dst[], int dstBegin)
257
int n = srcEnd -
srcBegin
;
265
int end =
srcBegin
+ m_start + n;
269
for (int i =
srcBegin
+ m_start; i < end; i++)
XString.java
260
* @param
srcBegin
index of the first character in the string
268
* <ul><li><code>
srcBegin
</code> is negative.
269
* <li><code>
srcBegin
</code> is greater than <code>srcEnd</code>
273
* <li><code>dstBegin+(srcEnd-
srcBegin
)</code> is larger than
277
public void getChars(int
srcBegin
, int srcEnd, char dst[], int dstBegin)
279
str().getChars(
srcBegin
, srcEnd, dst, dstBegin);
[
all
...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java
126
* @param
srcBegin
index of the first character in the string
134
* <ul><li><code>
srcBegin
</code> is negative.
135
* <li><code>
srcBegin
</code> is greater than <code>srcEnd</code>
139
* <li><code>dstBegin+(srcEnd-
srcBegin
)</code> is larger than
143
public void getChars(int
srcBegin
, int srcEnd, char dst[],
147
for (int i =
srcBegin
; i < srcEnd; i++)
XMLString.java
105
* @param
srcBegin
index of the first character in the string
113
* <ul><li><code>
srcBegin
</code> is negative.
114
* <li><code>
srcBegin
</code> is greater than <code>srcEnd</code>
118
* <li><code>dstBegin+(srcEnd-
srcBegin
)</code> is larger than
122
public abstract void getChars(int
srcBegin
, int srcEnd, char dst[],
FastStringBuffer.java
[
all
...]
Completed in 499 milliseconds