Home
last modified time | relevance | path

Searched refs:SIMPLE (Results 1 – 24 of 24) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSetSpanner.java143 return countIn(sequence, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE); in countIn()
159 return countIn(sequence, countMethod, SpanCondition.SIMPLE); in countIn()
181 SpanCondition skipSpan = spanCondition == SpanCondition.NOT_CONTAINED ? SpanCondition.SIMPLE in countIn()
215 return replaceFrom(sequence, "", CountMethod.WHOLE_SPAN, SpanCondition.SIMPLE); in deleteFrom()
248 return replaceFrom(sequence, replacement, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE); in replaceFrom()
267 return replaceFrom(sequence, replacement, countMethod, SpanCondition.SIMPLE); in replaceFrom()
289 SpanCondition copySpan = spanCondition == SpanCondition.NOT_CONTAINED ? SpanCondition.SIMPLE in replaceFrom()
375 return trim(sequence, TrimOption.BOTH, SpanCondition.SIMPLE); in trim()
400 return trim(sequence, trimOption, SpanCondition.SIMPLE); in trim()
DFilteredNormalizer2.java50 normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
62 return normalize(src, dest, UnicodeSet.SpanCondition.SIMPLE); in normalize()
125 UnicodeSet.SpanCondition spanCondition=UnicodeSet.SpanCondition.SIMPLE; in isNormalized()
129 spanCondition=UnicodeSet.SpanCondition.SIMPLE; in isNormalized()
148 UnicodeSet.SpanCondition spanCondition=UnicodeSet.SpanCondition.SIMPLE; in quickCheck()
152 spanCondition=UnicodeSet.SpanCondition.SIMPLE; in quickCheck()
173 UnicodeSet.SpanCondition spanCondition=UnicodeSet.SpanCondition.SIMPLE; in spanQuickCheckYes()
177 spanCondition=UnicodeSet.SpanCondition.SIMPLE; in spanQuickCheckYes()
238 spanCondition=UnicodeSet.SpanCondition.SIMPLE; in normalize()
268 int prefixLimit=set.span(second, 0, UnicodeSet.SpanCondition.SIMPLE); in normalizeSecondAndAppend()
[all …]
DMessagePattern.java816 SIMPLE, enumConstant
1073 argType=ArgType.SIMPLE; in parseArg()
1090 if(argType==ArgType.SIMPLE) { in parseArg()
1095 if(argType!=ArgType.SIMPLE) { in parseArg()
1101 if(argType==ArgType.SIMPLE) { in parseArg()
DMessagePatternUtil.java267 if (argType == MessagePattern.ArgType.SIMPLE) { in toString()
498 case SIMPLE: in buildArgNode()
DMessageFormat.java2021 if(argName.length()!=0 && (argType==ArgType.NONE || argType==ArgType.SIMPLE)) { in findFirstPluralNumberArg()
2406 if(argType != ArgType.SIMPLE) { in cacheExplicitFormats()
DUnicodeSet.java4783 SIMPLE, enumConstant
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java34 int pos = set.spanBack(string, 3, SpanCondition.SIMPLE); in TestSimpleStringSpan()
39 pos = set.span(string, SpanCondition.SIMPLE); in TestSimpleStringSpan()
44 pos = set.span(string, 1, SpanCondition.SIMPLE); in TestSimpleStringSpan()
59 int length = containsSpanBackUTF16(set, string, 3, SpanCondition.SIMPLE); in TestSimpleStringSpanSlow()
64 length = containsSpanUTF16(set, string, SpanCondition.SIMPLE); in TestSimpleStringSpanSlow()
69 length = containsSpanUTF16(set, string.substring(1), SpanCondition.SIMPLE); in TestSimpleStringSpanSlow()
109 || set.span(s16.substring(0, 12), SpanCondition.SIMPLE) != 6 in TestSimpleStringSpanAndFreeze()
110 || set.span(s16.substring(7), SpanCondition.SIMPLE) != 5) { in TestSimpleStringSpanAndFreeze()
115 || set.span(s16.substring(0, 12), SpanCondition.SIMPLE) != 6 in TestSimpleStringSpanAndFreeze()
116 || set.span(s16.substring(7), SpanCondition.SIMPLE) != 5) { in TestSimpleStringSpanAndFreeze()
[all …]
DUnicodeSetTest.java2473 … checkCodePoints("x\u0308", "z\u0308", CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE, null, 1); in TestCodePoints()
2474 checkCodePoints("��", "��", CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE, null, 1); in TestCodePoints()
2475 checkCodePoints("��", "��", CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE, null, 1); in TestCodePoints()
2496 checkCountIn(m, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE, "abc", 2); in TestCountIn()
2497 checkCountIn(m, CountMethod.WHOLE_SPAN, SpanCondition.SIMPLE, "abc", 1); in TestCountIn()
2507 return spanCondition != SpanCondition.SIMPLE ? m.countIn(ab, countMethod, spanCondition) in callCountIn()
2527 int problemFound = checkSpan(longString, us, SpanCondition.SIMPLE); in testForSpanGaps()
2626 …equence span", 3, new UnicodeSet("[a-cA]"). span(new StringBuilder("abc"), SpanCondition.SIMPLE) ); in TestCharSequenceArgs()
2627 …ence span", 3, new UnicodeSet("[a-cA]"). span(new StringBuilder("abc"), 1, SpanCondition.SIMPLE) ); in TestCharSequenceArgs()
2628 …spanBack", 0, new UnicodeSet("[a-cA]"). spanBack(new StringBuilder("abc"), SpanCondition.SIMPLE) ); in TestCharSequenceArgs()
[all …]
/external/v8/src/compiler/
Djs-operator.h68 #define SIMPLE(name, properties, inputs, outputs) \ macro
73 SIMPLE(name, Operator::kNoProperties, inputs, outputs)
82 #define PURE_BINOP(name) SIMPLE(name, Operator::kPure, 2, 1)
112 const Operator* Create() { SIMPLE(JSCreate, Operator::kEliminatable, 0, 1); } in Create()
162 const Operator* TypeOf() { SIMPLE(JSTypeOf, Operator::kPure, 1, 1); } in TypeOf()
190 #undef SIMPLE
/external/guava/guava-tests/benchmark/com/google/common/math/
DStatsBenchmark.java35 SIMPLE { enumConstant
95 SIMPLE { enumConstant
/external/valgrind/memcheck/tests/
Derr_disable1.stderr.exp2 --------- SIMPLE TEST ---------
/external/messageformat/java/com/ibm/icu/text/
DMessagePattern.java816 SIMPLE, enumConstant
1073 argType=ArgType.SIMPLE; in parseArg()
1090 if(argType==ArgType.SIMPLE) { in parseArg()
1095 if(argType!=ArgType.SIMPLE) { in parseArg()
1101 if(argType==ArgType.SIMPLE) { in parseArg()
/external/libxml2/test/valid/dtds/
Dxhtml1.dcl163 SIMPLE NO
/external/icu/icu4c/source/i18n/
Dtransreg.h115 enum { SIMPLE, COMPOUND, RULES } type; enumerator
Dtransreg.cpp70 type(TransliteratorAlias::SIMPLE) { in TransliteratorAlias()
108 case SIMPLE: in create()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMessagePatternUtilTest.java148 argType = MessagePattern.ArgType.SIMPLE; in ExpectArgNode()
172 … if (argType == MessagePattern.ArgType.NONE || argType == MessagePattern.ArgType.SIMPLE) { in matches()
/external/iproute2/examples/
DREADME.cbq18 # First of all - this is just a SIMPLE EXAMPLE of CBQ power.
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
DPhysicsSpace.java166 case SIMPLE: in create()
839 SIMPLE, enumConstant
/external/messageformat/java/com/ibm/icu/simple/
DMessageFormat.java1934 if(argName.length()!=0 && (argType==ArgType.NONE || argType==ArgType.SIMPLE)) { in findFirstPluralNumberArg()
2248 if(argType != ArgType.SIMPLE) { in cacheExplicitFormats()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/
DPhysicsSpace.java898 SIMPLE, enumConstant
/external/libvpx/libvpx/vp8/common/ppc/
Dloopfilter_filters_altivec.asm1062 ;# -=-=-=-=-=-=-=-=-=-=-=-=-=-= SIMPLE LOOP FILTER =-=-=-=-=-=-=-=-=-=-=-=-=-=-
/external/pcre/dist/doc/
Dpcre.txt7854 ANCHORS AND SIMPLE ASSERTIONS
8343 SIMPLE USE OF JIT
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...