Searched defs:uset (Results 1 - 20 of 20) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSetIterator.java183 * @param uset the set to iterate over.
185 public void reset(UnicodeSet uset) { argument
186 set = uset;
H A DRBBINode.java24 static final int uset = 1; field in class:RBBINode
43 "uset",
71 UnicodeSet fInputSet; // For uset nodes only.
154 } else if (fType == RBBINode.uset) {
213 // the left child of the uset node.
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSetIterator.java191 * @param uset the set to iterate over.
194 public void reset(UnicodeSet uset) { argument
195 set = uset;
H A DRBBINode.java23 static final int uset = 1; field in class:RBBINode
42 "uset",
70 UnicodeSet fInputSet; // For uset nodes only.
153 } else if (fType == RBBINode.uset) {
212 // the left child of the uset node.
/external/icu/icu4c/source/common/unicode/
H A Duniset.h16 #include "unicode/uset.h"
504 * @param uset a USet (the ICU plain C type for UnicodeSet)
509 inline static UnicodeSet *fromUSet(USet *uset);
514 * @param uset a const USet (the ICU plain C type for UnicodeSet)
519 inline static const UnicodeSet *fromUSet(const USet *uset);
1675 inline UnicodeSet *UnicodeSet::fromUSet(USet *uset) { argument
1676 return reinterpret_cast<UnicodeSet *>(uset);
1679 inline const UnicodeSet *UnicodeSet::fromUSet(const USet *uset) { argument
1680 return reinterpret_cast<const UnicodeSet *>(uset);
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DBasicPeriodBuilderFactory.java38 short uset = allBits; field in class:BasicPeriodBuilderFactory.Settings
47 Settings setUnits(int uset) { argument
48 if (this.uset == uset) {
53 result.uset = (short)uset;
55 if ((uset & allBits) == allBits) {
56 result.uset = allBits;
62 if (0 != (uset & (1 << i))) {
82 return uset;
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DPrettyPrinter.java117 * @param uset
120 public String format(UnicodeSet uset) { argument
122 UnicodeSet putAtEnd = new UnicodeSet(uset).retainAll(SORT_AT_END); // remove all the unassigned gorp for now
125 for (UnicodeSetIterator it = new UnicodeSetIterator(uset); it.nextRange();) {
151 // if (!uset.equals(doubleCheck)) {
152 // throw new IllegalStateException("Failure to round-trip in pretty-print " + uset + " => " + sresult + Utility.LINE_SEPARATOR + " source-result: " + new UnicodeSet(uset).removeAll(doubleCheck) + Utility.LINE_SEPARATOR + " result-source: " + new UnicodeSet(doubleCheck).removeAll(uset));
155 // throw (RuntimeException) new IllegalStateException("Failure to round-trip in pretty-print " + uset).initCause(e);
/external/icu/icu4c/source/common/
H A Drbbinode.h29 uset, enumerator in enum:RBBINode::NodeType
58 UnicodeSet *fInputSet; // For uset nodes only.
H A Duset.cpp8 * file name: uset.cpp
23 #include "unicode/uset.h"
263 uset_getItemCount(const USet* uset) { argument
264 const UnicodeSet& set = *(const UnicodeSet*)uset;
269 uset_getItem(const USet* uset, int32_t itemIndex, argument
274 const UnicodeSet& set = *(const UnicodeSet*)uset;
519 // TODO The old, internal uset.c had an efficient uset_containsOne function.
521 // Consider adding such a function to both C and C++ UnicodeSet/uset.
/external/icu/icu4c/source/test/cintltst/
H A Dspooftest.c28 #include "unicode/uset.h"
259 const USet *uset; local
261 uset = uspoof_getAllowedChars(sc, &status);
263 TEST_ASSERT(uset_isFrozen(uset));
H A Dutransts.c19 #include "unicode/uset.h"
588 USet* uset; local
614 uset = utrans_getSourceSet(utrans, FALSE, NULL, &status);
615 ulen = uset_toPattern(uset, ubuf, kUBufMax, FALSE, &status);
616 uset_close(uset);
623 uset = utrans_getSourceSet(utrans, TRUE, NULL, &status);
624 ulen = uset_toPattern(uset, ubuf, kUBufMax, FALSE, &status);
625 uset_close(uset);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DPrettyPrinter.java116 * @param uset
119 public String format(UnicodeSet uset) { argument
121 UnicodeSet putAtEnd = new UnicodeSet(uset).retainAll(SORT_AT_END); // remove all the unassigned gorp for now
124 for (UnicodeSetIterator it = new UnicodeSetIterator(uset); it.nextRange();) {
150 // if (!uset.equals(doubleCheck)) {
151 // throw new IllegalStateException("Failure to round-trip in pretty-print " + uset + " => " + sresult + Utility.LINE_SEPARATOR + " source-result: " + new UnicodeSet(uset).removeAll(doubleCheck) + Utility.LINE_SEPARATOR + " result-source: " + new UnicodeSet(doubleCheck).removeAll(uset));
154 // throw (RuntimeException) new IllegalStateException("Failure to round-trip in pretty-print " + uset).initCause(e);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DBasicPeriodBuilderFactory.java37 short uset = allBits; field in class:BasicPeriodBuilderFactory.Settings
46 Settings setUnits(int uset) { argument
47 if (this.uset == uset) {
52 result.uset = (short)uset;
54 if ((uset & allBits) == allBits) {
55 result.uset = allBits;
61 if (0 != (uset & (1 << i))) {
81 return uset;
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterName.java1639 * Converts the char set cset into a Unicode set uset.
1642 * @param uset USet to receive characters. Existing contents are deleted.
1644 private void convert(int set[], UnicodeSet uset) argument
1646 uset.clear();
1654 uset.add(c);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterName.java1638 * Converts the char set cset into a Unicode set uset.
1641 * @param uset USet to receive characters. Existing contents are deleted.
1643 private void convert(int set[], UnicodeSet uset) argument
1645 uset.clear();
1653 uset.add(c);
/external/libpcap/
H A Dgencode.h230 typedef bpf_u_int32 *uset; typedef
241 uset edom;
261 uset dom;
262 uset closure;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUnicodeSetTest.java1168 UnicodeSet uset = new UnicodeSet("[a{bc}{cd}pqr\u0000]");
1169 logln(uset + " ~ " + uset.getRegexEquivalent());
1181 check(uset, testStrings[i][0], testStrings[i][1]);
1186 private void check(UnicodeSet uset, String string, String desiredStatus) { argument
1189 if (uset.containsAll(string) != shouldContainAll) {
1194 if (uset.containsNone(string) != shouldContainNone) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetTest.java1164 UnicodeSet uset = new UnicodeSet("[a{bc}{cd}pqr\u0000]");
1165 logln(uset + " ~ " + uset.getRegexEquivalent());
1177 check(uset, testStrings[i][0], testStrings[i][1]);
1182 private void check(UnicodeSet uset, String string, String desiredStatus) { argument
1185 if (uset.containsAll(string) != shouldContainAll) {
1190 if (uset.containsNone(string) != shouldContainNone) {
/external/icu/icu4c/source/test/intltest/
H A Dusettest.cpp702 USet *uset = uniset->toUSet(); local
703 TEST_ASSERT((void *)uset == (void *)uniset);
704 UnicodeSet *setx = UnicodeSet::fromUSet(uset);
705 TEST_ASSERT((void *)setx == (void *)uset);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 9111 milliseconds