OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SearchIterator
(Results
1 - 19
of
19
) sorted by null
/external/icu/icu4c/source/i18n/unicode/
search.h
17
* \brief C++ API:
SearchIterator
object.
41
* <tt>
SearchIterator
</tt> is an abstract base class that provides
43
* <tt>
SearchIterator
</tt> maintain a current position and scans over the
47
* <tt>
SearchIterator
</tt> defines a protocol for text searching.
56
* <tt>
SearchIterator
</tt> provides an API that is similar to that of
61
* subclass of <tt>
SearchIterator
</tt> can be used in an identical
67
*
SearchIterator
*iter = new StringSearch(pattern, target);
79
class U_I18N_API
SearchIterator
: public UObject {
86
* Copy constructor that creates a
SearchIterator
instance with the same
88
* @param other the
SearchIterator
instance to be copied
[
all
...]
stsearch.h
30
* <tt>StringSearch</tt> is a <tt>
SearchIterator
</tt> that provides
64
* <tt>
SearchIterator
</tt> provides APIs to specify the starting position
107
* Consult the <tt>
SearchIterator
</tt> documentation for information on
127
* @see
SearchIterator
132
class U_I18N_API StringSearch U_FINAL : public
SearchIterator
297
virtual UBool operator==(const
SearchIterator
&that) const;
413
virtual
SearchIterator
* safeClone(void) const;
436
* call {@link
SearchIterator
#next }.
439
* starts and calls {@link
SearchIterator
#setMatchLength } with the number
460
* <tt>
SearchIterator
.previous()</tt>, which this method overrides
[
all
...]
/external/icu/icu4c/source/i18n/
search.cpp
23
SearchIterator
::
SearchIterator
(const
SearchIterator
&other)
39
SearchIterator
::~
SearchIterator
()
48
void
SearchIterator
::setAttribute(USearchAttribute attribute,
77
USearchAttributeValue
SearchIterator
::getAttribute(
100
int32_t
SearchIterator
::getMatchedStart() const
105
int32_t
SearchIterator
::getMatchedLength() const
110
void
SearchIterator
::getMatchedText(UnicodeString &result) cons
[
all
...]
stsearch.cpp
29
SearchIterator
(text, breakiter),
45
// m_search_ has been created by the base
SearchIterator
class
55
SearchIterator
(text, breakiter),
77
// m_search_ has been created by the base
SearchIterator
class
87
SearchIterator
(text, breakiter),
102
// m_search_ has been created by the base
SearchIterator
class
112
SearchIterator
(text, breakiter),
134
// m_search_ has been created by the base
SearchIterator
class
140
SearchIterator
(that.m_text_, that.m_breakiterator_),
163
// m_search_ has been created by the base
SearchIterator
clas
[
all
...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
SearchIterator.java
14
* <tt>
SearchIterator
</tt> is an abstract base class that provides
16
* <tt>
SearchIterator
</tt> maintain a current position and scan over the
20
* <tt>
SearchIterator
</tt> defines a protocol for text searching.
29
* <tt>
SearchIterator
</tt> provides an API that is similar to that of
34
* subclass of <tt>
SearchIterator
</tt> can be used in an identical
39
*
SearchIterator
iter = new StringSearch(pattern, target);
40
* for (int pos = iter.first(); pos !=
SearchIterator
.DONE;
51
public abstract class
SearchIterator
96
return
SearchIterator
.this.targetText;
100
SearchIterator
.this.targetText = text
[
all
...]
StringSearch.java
36
* <tt>StringSearch</tt> is a {@link
SearchIterator
} that provides
70
* {@link
SearchIterator
} provides APIs to specify the starting position
71
* within the text string to be searched, e.g. {@link
SearchIterator
#setIndex setIndex},
72
* {@link
SearchIterator
#preceding preceding} and {@link
SearchIterator
#following following}.
118
* Consult the {@link
SearchIterator
} documentation for information on
124
* @see
SearchIterator
131
public final class StringSearch extends
SearchIterator
{
262
* @see
SearchIterator
359
//TODO: hoist this to
SearchIterator
[
all
...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java
13
* <tt>
SearchIterator
</tt> is an abstract base class that provides
15
* <tt>
SearchIterator
</tt> maintain a current position and scan over the
19
* <tt>
SearchIterator
</tt> defines a protocol for text searching.
28
* <tt>
SearchIterator
</tt> provides an API that is similar to that of
33
* subclass of <tt>
SearchIterator
</tt> can be used in an identical
38
*
SearchIterator
iter = new StringSearch(pattern, target);
39
* for (int pos = iter.first(); pos !=
SearchIterator
.DONE;
51
public abstract class
SearchIterator
99
return
SearchIterator
.this.targetText;
103
SearchIterator
.this.targetText = text
[
all
...]
StringSearch.java
35
* <tt>StringSearch</tt> is a {@link
SearchIterator
} that provides
69
* {@link
SearchIterator
} provides APIs to specify the starting position
70
* within the text string to be searched, e.g. {@link
SearchIterator
#setIndex setIndex},
71
* {@link
SearchIterator
#preceding preceding} and {@link
SearchIterator
#following following}.
117
* Consult the {@link
SearchIterator
} documentation for information on
123
* @see
SearchIterator
131
public final class StringSearch extends
SearchIterator
{
265
* @see
SearchIterator
369
//TODO: hoist this to
SearchIterator
[
all
...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
SearchTest.java
21
import static android.icu.text.
SearchIterator
.ElementComparisonType.ANY_BASE_WEIGHT_IS_WILDCARD;
22
import static android.icu.text.
SearchIterator
.ElementComparisonType.PATTERN_BASE_WEIGHT_IS_WILDCARD;
23
import static android.icu.text.
SearchIterator
.ElementComparisonType.STANDARD_ELEMENT_COMPARISON;
32
import android.icu.text.
SearchIterator
;
33
import android.icu.text.
SearchIterator
.ElementComparisonType;
[
all
...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
SearchTest.java
20
import static com.ibm.icu.text.
SearchIterator
.ElementComparisonType.ANY_BASE_WEIGHT_IS_WILDCARD;
21
import static com.ibm.icu.text.
SearchIterator
.ElementComparisonType.PATTERN_BASE_WEIGHT_IS_WILDCARD;
22
import static com.ibm.icu.text.
SearchIterator
.ElementComparisonType.STANDARD_ELEMENT_COMPARISON;
31
import com.ibm.icu.text.
SearchIterator
;
32
import com.ibm.icu.text.
SearchIterator
.ElementComparisonType;
[
all
...]
/external/icu/icu4c/source/test/intltest/
srchtest.cpp
[
all
...]
/external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar
/prebuilts/misc/common/icu4j/
icu4j.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/system_current/
android.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar
Completed in 437 milliseconds