/external/guava/guava-tests/test/com/google/common/net/ |
H A D | HostAndPortTest.java | 103 hp = HostAndPort.fromString(hpString); 191 assertEquals(80, HostAndPort.fromString("host:80").getPortOrDefault(123)); 192 assertEquals(123, HostAndPort.fromString("host").getPortOrDefault(123)); 196 HostAndPort hp1 = HostAndPort.fromString("foo::123"); 197 HostAndPort hp2 = HostAndPort.fromString("foo::123"); 198 HostAndPort hp3 = HostAndPort.fromString("[foo::123]"); 200 HostAndPort hp5 = HostAndPort.fromString("[foo::123]:80"); 217 assertEquals("::1", HostAndPort.fromString("[::1]").requireBracketsForIPv6().getHostText()); 218 assertEquals("::1", HostAndPort.fromString("[::1]:80").requireBracketsForIPv6().getHostText()); 220 assertEquals("x", HostAndPort.fromString(" [all...] |
/external/parameter-framework/upstream/test/test-subsystem/ |
H A D | TESTSubsystemBinary.h | 45 virtual void fromString(const std::string &strValue, void *pvValue, size_t size);
|
H A D | TESTSubsystemString.h | 45 virtual void fromString(const std::string &strValue, void *pvValue, size_t size);
|
H A D | TESTSubsystemObject.h | 53 virtual void fromString(const std::string &strValue, void *pvValue, size_t size) = 0;
|
H A D | TESTSubsystemString.cpp | 51 void CTESTSubsystemString::fromString(const std::string &strValue, void *pvValue, size_t size) function in class:CTESTSubsystemString
|
H A D | TESTSubsystemBinary.cpp | 67 void CTESTSubsystemBinary::fromString(const std::string &strValue, void *pvValue, size_t size) function in class:CTESTSubsystemBinary
|
H A D | TESTSubsystemObject.cpp | 150 fromString(strValue, pvValue, _scalarSize);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/ |
H A D | X500NameStyle.java | 38 RDN[] fromString(String dirName); method in interface:X500NameStyle
|
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/ |
H A D | JreDeflateParametersTest.java | 72 JreDeflateParameters fromString = JreDeflateParameters.parseString(asString); 73 Assert.assertEquals(params, fromString);
|
/external/icu/icu4c/source/i18n/ |
H A D | standardplural.h | 66 static Form fromString(const char *keyword, UErrorCode &errorCode) { function in class:StandardPlural 76 static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) { function in class:StandardPlural
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/ |
H A D | ProtectionSystemSpecificHeaderBox.java | 37 public static byte[] OMA2_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("A2B55680-6F43-11E0-9A3F-0002A5D5C51B")); 38 public static byte[] PLAYREADY_SYSTEM_ID = UUIDConverter.convert(UUID.fromString("9A04F079-9840-4286-AB92-E65BE0885F95"));
|
/external/guava/guava/src/com/google/common/primitives/ |
H A D | ParseRequest.java | 32 static ParseRequest fromString(String stringValue) { method in class:ParseRequest
|
/external/autotest/frontend/client/src/autotest/common/ |
H A D | CustomHistory.java | 26 public static HistoryToken fromString(String tokenString) { method in class:CustomHistory.HistoryToken 64 token = HistoryToken.fromString(historyTokenString);
|
/external/guava/guava/src/com/google/common/net/ |
H A D | HostAndPort.java | 38 * HostAndPort hp = HostAndPort.fromString("[2001:db8::1]") 135 HostAndPort parsedHost = fromString(host); 152 HostAndPort parsedHost = fromString(host); 167 public static HostAndPort fromString(String hostPortString) { method in class:HostAndPort 240 * You can chain this after {@link #fromString(String)} to include a port in 259 * like "[2001:db8::1]". Chain this call after {@link #fromString(String)}
|
H A D | HostSpecifier.java | 78 final HostAndPort parsedHost = HostAndPort.fromString(specifier);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
H A D | HashCodeTest.java | 207 HashCode hash2 = HashCode.fromString(hash1.toString()); 224 HashCode.fromString("7f8005ff0z"); 233 HashCode.fromString(string); 241 HashCode.fromString(""); 246 HashCode.fromString("7"); 250 HashCode.fromString("7f"); 255 HashCode.fromString("7f8");
|
/external/autotest/frontend/client/src/autotest/common/table/ |
H A D | DataSource.java | 46 public static SortSpec fromString(String sortString) { method in class:DataSource.SortSpec
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | StandardPlural.java | 104 public static final StandardPlural fromString(CharSequence keyword) { method in class:StandardPlural
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | StandardPlural.java | 102 public static final StandardPlural fromString(CharSequence keyword) { method in class:StandardPlural
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
H A D | ProtectionSpecificHeader.java | 25 uuidRegistry.put(UUID.fromString("9A04F079-9840-4286-AB92-E65BE0885F95"), PlayReadyHeader.class);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
H A D | PluralRangesTest.java | 49 final StandardPlural start = StandardPlural.fromString(test[1]); 50 final StandardPlural end = StandardPlural.fromString(test[2]); 51 final StandardPlural expected = StandardPlural.fromString(test[3]);
|
H A D | NumberFormatTestTuple.java | 236 private static <T> T fromString(Map<String, T> map, String key) { method in class:NumberFormatTestTuple 340 roundingMode = fromString(roundingModeMap, value); 344 currencyUsage = fromString(currencyUsageMap, value); 360 padPosition = fromString(padPositionMap, value); 392 style = fromString(formatStyleMap, value);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | PluralRangesTest.java | 45 final StandardPlural start = StandardPlural.fromString(test[1]); 46 final StandardPlural end = StandardPlural.fromString(test[2]); 47 final StandardPlural expected = StandardPlural.fromString(test[3]);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
H A D | GattClientFacade.java | 394 UUID cUuid = UUID.fromString(characteristicUuid); 431 UUID cUuid = UUID.fromString(characteristicUuid); 436 UUID dUuid = UUID.fromString(descriptorUuid); 473 UUID cUuid = UUID.fromString(characteristicUuid); 478 UUID dUuid = UUID.fromString(descriptorUuid); 516 UUID cUuid = UUID.fromString(characteristicUuid); 521 UUID dUuid = UUID.fromString(descriptorUuid); 556 UUID cUuid = UUID.fromString(characteristicUuid); 592 UUID cUuid = UUID.fromString(characteristicUuid); 629 UUID cUuid = UUID.fromString(characteristicUui [all...] |
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/ |
H A D | WebRtcAudioEffects.java | 39 UUID.fromString("bb392ec0-8d4d-11e0-a896-0002a5d5c51b"); 41 UUID.fromString("aa8130e0-66fc-11e0-bad0-0002a5d5c51b"); 43 UUID.fromString("c06c8400-8e06-11e0-9cb6-0002a5d5c51b");
|