Searched defs:source (Results 201 - 225 of 1062) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyFormat.java76 public CurrencyAmount parseObject(String source, ParsePosition pos) { argument
77 return fmt.parseCurrency(source, pos);
H A DSelectFormat.java328 * @param source the string to be parsed.
336 public Object parseObject(String source, ParsePosition pos) { argument
H A DUnicodeSetSpanner.java14 * An instance is immutable (and thus thread-safe) iff the source UnicodeSet is frozen.
52 * @param source
58 public UnicodeSetSpanner(UnicodeSet source) { argument
59 unicodeSet = source;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DByteArrayWrapper.java72 * @param source the ByteBuffer from which to get the data.
75 public ByteArrayWrapper(ByteBuffer source) { argument
76 size = source.limit();
78 source.get(bytes,0,size);
84 public ByteArrayWrapper(ByteArrayWrapper source) {
85 size = source.size;
87 copyBytes(source.bytes, 0, bytes, 0, size);
129 * @param src source byte array to copy from
156 * @param src source byte array to copy from
266 * @param src source byt
[all...]
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DCollatorICU.java50 public int compare(String source, String target) { argument
51 return fIcuCollator.compare(source, target);
61 public boolean equals(String source, String target) { argument
62 return fIcuCollator.equals(source, target);
65 public CollationKey getCollationKey(String source) { argument
66 com.ibm.icu.text.CollationKey icuCollKey = fIcuCollator.getCollationKey(source);
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNormalizationTransliterator.java138 public String transform(String source) { argument
139 return norm2.normalize(source);
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationFinnishTest.java10 * Source File: $ICU4CRoot/source/test/intltest/ficoll.cpp
78 private void doTest(char[] source, char[] target, int result) { argument
79 String s = new String(source);
89 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
113 logln(msg1 + source + msg2 + target + msg3 + sResult);
115 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
123 logln(msg1 + source + msg2 + target + msg3 + sResult);
125 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
138 logln(msg1 + source + msg2 + target + msg3 + sResult);
140 errln(msg1 + source
[all...]
H A DCollationGermanTest.java10 * Source File: $ICU4CRoot/source/test/intltest/decoll.cpp
122 private void doTest(char[] source, char[] target, int result){ argument
123 String s = new String(source);
134 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
159 logln(msg1 + source + msg2 + target + msg3 + sResult);
161 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
169 logln(msg1 + source + msg2 + target + msg3 + sResult);
171 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
184 logln(msg1 + source + msg2 + target + msg3 + sResult);
186 errln(msg1 + source
[all...]
H A DCollationSpanishTest.java10 * Source File: $ICU4CRoot/source/test/intltest/escoll.cpp
90 private void doTest(char[] source, char[] target, int result) { argument
91 String s = new String(source);
101 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
125 logln(msg1 + source + msg2 + target + msg3 + sResult);
127 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
135 logln(msg1 + source + msg2 + target + msg3 + sResult);
137 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
150 logln(msg1 + source + msg2 + target + msg3 + sResult);
152 errln(msg1 + source
[all...]
H A DCollationTurkishTest.java10 * Source File: $ICU4CRoot/source/test/intltest/trcoll.cpp
96 private void doTest(char[] source, char[] target, int result) { argument
97 String s = new String(source);
108 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
132 logln(msg1 + source + msg2 + target + msg3 + sResult);
134 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
142 logln(msg1 + source + msg2 + target + msg3 + sResult);
144 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
157 logln(msg1 + source + msg2 + target + msg3 + sResult);
159 errln(msg1 + source
[all...]
H A DLotusCollationKoreanTest.java10 * Source File: $ICU4CRoot/source/test/intltest/lcukocol.cpp
56 private void doTest( char[] source, char[] target, int result) { argument
57 String s = new String(source);
67 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
91 logln(msg1 + source + msg2 + target + msg3 + sResult);
93 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
101 logln(msg1 + source + msg2 + target + msg3 + sResult);
103 errln(msg1 + source + msg2 + target + msg3 + sResult + msg4 + sExpect);
116 logln(msg1 + source + msg2 + target + msg3 + sResult);
118 errln(msg1 + source
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestContext.java22 String source; field in class:TestContext.ContextCase
29 source = src;
85 src = pseudoToU16(cc.source);
91 "\nInput: " + cc.source +
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java51 * @param source the original text, unnormalized
54 public StringBuffer normalize(String source, StringBuffer target) { argument
56 // First decompose the source into target,
59 if (source.length() != 0) {
60 internalDecompose(source, target);
70 * @param source the original text, unnormalized
73 public String normalize(String source) { argument
74 return normalize(source, new StringBuffer()).toString();
93 * @param source the original text, unnormalized
96 private void internalDecompose(String source, StringBuffe argument
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodeTransform.java38 public abstract String transform(String source); argument
43 public boolean isTransformed(String source) { argument
44 return source.equals(transform(source));
49 public String transform(int source) { argument
50 return transform(UTF16.valueOf(source));
55 public boolean isTransformed(int source) { argument
56 return isTransformed(UTF16.valueOf(source));
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DCompoundTransliteratorTest.java214 private void expect(Transliterator t, String source, String expectedResult) { argument
215 String result = t.transliterate(source);
216 expectAux(t.getID() + ":String", source, result, expectedResult);
218 ReplaceableString rsource = new ReplaceableString(source);
221 expectAux(t.getID() + ":Replaceable", source, result, expectedResult);
229 for (int i=0; i<source.length(); ++i) {
233 log.append(source.charAt(i)).append(" -> ");
235 String.valueOf(source.charAt(i)));
255 private void expectAux(String tag, String source, argument
257 expectAux(tag, source
[all...]
H A DWriteCharts.java47 public static void printSet(String source) { argument
48 UnicodeSet s = new UnicodeSet(source);
49 System.out.println("Printout for '" + source + "'");
63 String source = (String) sources.nextElement();
64 scripts = UScript.getCode(source);
66 System.out.println("[Skipping " + source + "]");
70 System.out.println("Source: " + source + ";\tScripts: " + showScripts(scripts));
71 Enumeration targets = Transliterator.getAvailableTargets(source);
78 System.out.println("[Skipping '" + source + "-" + target + "']");
82 Enumeration variants = Transliterator.getAvailableVariants(source, targe
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
H A DTestBNF.java113 static void testMatch(Pick p, String source) { argument
115 boolean value = p.match(source, pp);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DCaseIterator.java415 * Reset to different source. Once reset, the iteration starts from the beginning.
416 * @param source The string to get case variants for
418 public void reset(String source) { argument
423 counts = new int[source.length()];
424 variants = new String[source.length()][];
426 // walk through the source, and break up into pieces
432 for (int i = 0; i < source.length(); i += piece.length()) {
439 piece = UTF16.valueOf(source, i);
443 if (max > source.length()) max = source
[all...]
H A DFileUtilities.java51 public static String replace(String source, String piece, String replacement) { argument
52 if (source == null || source.length() < piece.length()) return source;
55 pos = source.indexOf(piece, pos);
56 if (pos < 0) return source;
57 source = source.substring(0,pos) + replacement + source.substring(pos + piece.length());
62 public static String replace(String source, Strin argument
66 replace(String source, String[][] replacements, int count) argument
73 replace(String source, String[][] replacements, boolean reverse) argument
81 anchorize(String source) argument
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_addrtype.h31 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info_v1
38 __u16 source; /* source-type mask */ member in struct:xt_addrtype_info
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DDescriptor.java44 protected void redirect(XmlParser parser, String resource, URL source) argument
46 if (source != null) parser.redirectEntity(resource, source);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DSkeleton.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
92 * Shallow copies bind pose data from the source skeleton, does not
95 * @param source The source Skeleton to copy from
97 public Skeleton(Skeleton source) { argument
98 Bone[] sourceList = source.boneList;
104 rootBones = new Bone[source.rootBones.length];
106 rootBones[i] = recreateBoneStructure(source.rootBones[i]);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DListener.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
52 public Listener(Listener source){ argument
53 location = source.location.clone();
54 velocity = source.velocity.clone();
55 rotation = source.rotation.clone();
56 volume = source.volume;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/shader/plugins/
H A DGLSLLoader.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
65 public void setSource(String source){ argument
66 this.shaderSource = source;
123 // // the source and name are the same for variable dependencies
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestChatClient.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
117 public void messageReceived(Client source, Message m) { argument

Completed in 508 milliseconds

1234567891011>>