HomeSort by relevance Sort by last modified time
    Searched defs:hexString (Results 1 - 25 of 31) sorted by null

1 2

  /external/fonttools/Lib/fontTools/misc/
eexec.py 38 def hexString(s):
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TypedValueTest.java 48 String hexString = TypedValue.coerceToString(TypedValue.TYPE_INT_HEX, 0xcafebabe);
50 assertThat(hexString, equalTo("0xcafebabe"));
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 71 StringBuilder hexString = new StringBuilder();
73 hexString.append(Integer.toHexString(0xFF & b)).append(separator);
75 return hexString.toString();
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 46 private String hexString;
78 public AttributeValue(String hexString, byte[] encoded) {
81 this.hexString = hexString;
94 this.rawString = hexString;
95 this.escapedString = hexString;
112 this.escapedString = hexString;
143 if (hexString == null) {
174 hexString = buf.toString();
176 return hexString;
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 433 StringBuilder hexString = new StringBuilder(10);
435 hexString.append("-0x");
437 hexString.append("0x");
441 hexString.append("0.");
457 hexString.append('0');
460 hexString.append(hexSignificand);
461 hexString.append("p-1022");
463 hexString.append("1.");
479 hexString.append('0');
483 hexString.append(hexSignificand)
    [all...]
Float.java 441 StringBuilder hexString = new StringBuilder(10);
443 hexString.append("-0x");
445 hexString.append("0x");
449 hexString.append("0.");
465 hexString.append('0');
468 hexString.append(hexSignificand);
469 hexString.append("p-126");
471 hexString.append("1.");
487 hexString.append('0');
490 hexString.append(hexSignificand)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 606 UnicodeString hexString = mAmps.group(6, status);
608 for (i=0; i<hexString.length(); i++) {
609 val = (val << 4) + u_digit(hexString.charAt(i), 16);
  /external/icu/icu4c/source/tools/toolutil/
xmlparser.cpp 606 UnicodeString hexString = mAmps.group(6, status);
608 for (i=0; i<hexString.length(); i++) {
609 val = (val << 4) + u_digit(hexString.charAt(i), 16);
  /libcore/luni/src/main/java/java/math/
BigInt.java 194 String hexString() {
  /external/mdnsresponder/mDNSShared/
DebugServices.c     [all...]
  /frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java 494 String hexString = "0" + Integer.toHexString(mac[i]);
498 macAddr += hexString.substring(hexString.length() - 2);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatService.java 532 String hexString = IccUtils.bytesToHexString(rawData);
534 CatLog.d(this, "TERMINAL RESPONSE: " + hexString);
537 mCmdIf.sendTerminalResponse(hexString, null);
629 String hexString = IccUtils.bytesToHexString(rawData);
631 mCmdIf.sendEnvelope(hexString, null);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
org.eclipse.osgi_3.9.0.v20130529-1710.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.compiler.apt/1.0.600.v20130530-1010/
org.eclipse.jdt.compiler.apt-1.0.600.v20130530-1010.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/1.10/
gradle-tooling-api-1.10.jar 

Completed in 338 milliseconds

1 2