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

1 2

  /system/extras/multinetwork/
quick_test.sh 20 readonly local hexValue=$(bc -q 2>/dev/null << EOT
25 if [ ! -z "$hexValue" ]; then
26 echo "0x$hexValue"
  /libcore/ojluni/src/main/java/sun/security/util/
Debug.java 206 String hexValue = b.toString(16);
207 StringBuffer buf = new StringBuffer(hexValue.length()*2);
209 if (hexValue.startsWith("-")) {
211 hexValue = hexValue.substring(1);
215 if ((hexValue.length()%2) != 0) {
217 hexValue = "0" + hexValue;
220 while (i < hexValue.length()) {
222 buf.append(hexValue.substring(i, i+2))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
PatternTokenizer.java 265 int hexValue = 0;
277 hexValue = 0;
282 hexValue = 0;
296 hexValue <<= 4;
297 hexValue += cp;
300 hexValue -= '0'; break;
302 hexValue -= 'a' - 10; break;
304 hexValue -= 'A' - 10; break;
312 UTF16.append(buffer, hexValue);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PatternTokenizer.java 263 int hexValue = 0;
275 hexValue = 0;
280 hexValue = 0;
294 hexValue <<= 4;
295 hexValue += cp;
298 hexValue -= '0'; break;
300 hexValue -= 'a' - 10; break;
302 hexValue -= 'A' - 10; break;
310 UTF16.append(buffer, hexValue);
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 836 int hexValue = 0;
841 hexValue = (hexValue << 4)
849 if (!Character.isDefined(hexValue)) {
850 hexValue = 0xfffd;
862 return hexValue;
    [all...]
  /libcore/luni/src/main/java/libcore/net/
UriCodec.java 308 byte hexValue = 0;
336 hexValue = (byte) (hexValue * 0x10 + newDigit);
338 byteBuffer.put(hexValue);
  /external/capstone/bindings/vb6/
mMisc.bas 250 Public Function isHexChar(hexValue As String, Optional b As Byte) As Boolean
254 If Len(hexValue) = 0 Then GoTo nope
255 If Len(hexValue) > 2 Then GoTo nope 'expecting hex char code like FF or 90
257 v = CLng("&h" & hexValue)
  /external/skia/src/pdf/
SkPDFUtils.cpp 326 char hexValue[2] = { SkHexadecimalDigits::gUpper[c >> 4],
328 wStream->write(hexValue, 2);
  /external/skqp/src/pdf/
SkPDFUtils.cpp 326 char hexValue[2] = { SkHexadecimalDigits::gUpper[c >> 4],
328 wStream->write(hexValue, 2);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
Demo.java 299 String hexValue = hexDialog.getArea().getText();
300 text.insertText(fromHex.transliterate(hexValue));
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/fest/
fest-swing-1.2.1.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.1.0_r7-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
android-all-o-preview-4-robolectric-0.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 581 milliseconds

1 2