OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:utf16Length
(Results
1 - 25
of
48
) sorted by null
1
2
/external/guava/guava/src/com/google/common/base/
Utf8.java
50
int
utf16Length
= sequence.length();
51
int utf8Length =
utf16Length
;
55
while (i <
utf16Length
&& sequence.charAt(i) < 0x80) {
60
for (; i <
utf16Length
; i++) {
70
if (utf8Length <
utf16Length
) {
79
int
utf16Length
= sequence.length();
81
for (int i = start; i <
utf16Length
; i++) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
StringDataItem.java
53
int
utf16Length
= reader.readSmallUleb128();
54
out.annotateTo(reader.getOffset(), "utf16_size = %d",
utf16Length
);
56
String value = reader.readString(
utf16Length
);
/external/smali/util/src/main/java/org/jf/util/
Utf8Utils.java
175
* @param
utf16Length
the number of utf16 characters in the string to decode
178
public static String utf8BytesWithUtf16LengthToString(@Nonnull byte[] bytes, int start, int
utf16Length
) {
179
return utf8BytesWithUtf16LengthToString(bytes, start,
utf16Length
, null);
187
* @param
utf16Length
the number of utf16 characters in the string to decode
191
public static String utf8BytesWithUtf16LengthToString(@Nonnull byte[] bytes, int start, int
utf16Length
,
194
if (chars == null || chars.length <
utf16Length
) {
195
chars = new char[
utf16Length
];
201
for (at = start;
utf16Length
> 0;
utf16Length
--) {
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java
348
int
utf16Length
= sequence.length();
349
int utf8Length =
utf16Length
;
353
while (i <
utf16Length
&& sequence.charAt(i) < 0x80) {
358
for (; i <
utf16Length
; i++) {
368
if (utf8Length <
utf16Length
) {
377
int
utf16Length
= sequence.length();
379
for (int i = start; i <
utf16Length
; i++) {
436
int
utf16Length
= sequence.length();
437
for (int i = 0; i <
utf16Length
; i++) {
465
int
utf16Length
= sequence.length()
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedDexFile.java
241
int
utf16Length
= reader.readSmallUleb128();
242
return reader.readString(
utf16Length
);
BaseDexReader.java
512
public String readString(int
utf16Length
) {
515
dexBuf.buf, dexBuf.baseOffset + offset,
utf16Length
, ret);
/frameworks/base/tools/aapt2/util/
Util.cpp
425
ssize_t
utf16Length
= utf8_to_utf16_length(reinterpret_cast<const uint8_t*>(utf8.data()),
427
if (
utf16Length
<= 0) {
432
utf16.resize(
utf16Length
);
/prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar
/prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar
/external/icu/icu4c/source/test/cintltst/
ccapitst.c
[
all
...]
/prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar
/prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar
/external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar
/external/guice/lib/
guava-16.0.1.jar
/frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar
/packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar
/prebuilts/devtools/tools/lib/
guava-17.0.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-rc1/
compiler-2.1.0-rc1.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.2/
compiler-2.1.2.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.3/
compiler-2.1.3.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha1/
compiler-2.2.0-alpha1.jar
/prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha3/
compiler-2.2.0-alpha3.jar
Completed in 328 milliseconds
1
2