Home
last modified time | relevance | path

Searched refs:colon (Results 1 – 3 of 3) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/proguard/
DProguardMap.java258 int colon = type.indexOf(':'); in readFromReader() local
259 if (colon != -1) { in readFromReader()
260 obfuscatedLine = Integer.parseInt(type.substring(0, colon)); in readFromReader()
262 type = type.substring(colon + 1); in readFromReader()
264 colon = type.indexOf(':'); in readFromReader()
265 if (colon != -1) { in readFromReader()
266 obfuscatedLineEnd = Integer.parseInt(type.substring(0, colon)); in readFromReader()
267 type = type.substring(colon + 1); in readFromReader()
280 colon = clearName.lastIndexOf(':'); in readFromReader()
281 if (colon != -1) { in readFromReader()
[all …]
/art/build/
DAndroid.gtest.mk58 $(foreach f,$(my_files),$(call word-colon,1,$f):out/host/linux-x86/$(call word-colon,2,$f))
/art/
DAndroid.mk713 art_apex_jars := $(foreach pair,$(ART_APEX_JARS), $(call word-colon,2,$(pair)))