OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MatchInfo
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/icu/source/i18n/
tznames.cpp
314
struct
MatchInfo
: UMemory {
320
MatchInfo
(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
336
delete static_cast<
MatchInfo
*>(obj);
359
MatchInfo
*
matchInfo
= new
MatchInfo
(nameType, matchLength, &tzID, NULL);
360
if (
matchInfo
== NULL) {
364
matches(status)->addElement(
matchInfo
, status);
366
delete
matchInfo
;
376
MatchInfo
* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID)
[
all
...]
/external/icu/icu4c/source/i18n/
tznames.cpp
314
struct
MatchInfo
: UMemory {
320
MatchInfo
(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
336
delete static_cast<
MatchInfo
*>(obj);
359
MatchInfo
*
matchInfo
= new
MatchInfo
(nameType, matchLength, &tzID, NULL);
360
if (
matchInfo
== NULL) {
364
matches(status)->addElement(
matchInfo
, status);
366
delete
matchInfo
;
376
MatchInfo
* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID)
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_snippet.c
21
** Characters that may appear in the second argument to
matchinfo
().
32
** The default value for the second argument to
matchinfo
().
83
** accumulating the data returned by the
matchinfo
() function.
85
typedef struct
MatchInfo
MatchInfo
;
86
struct
MatchInfo
{
796
** fts3ExprIterate() callback used to collect the "global"
matchinfo
stats
800
** FTS3_MATCHINFO_HITS
matchinfo
array. The global stats are those elements
801
** of the
matchinfo
array that are constant for all rows returned by the
804
** Argument pCtx is actually a pointer to a struct of type
MatchInfo
. Thi
[
all
...]
/external/llvm/utils/FileCheck/
FileCheck.cpp
417
SmallVector<StringRef, 4>
MatchInfo
;
418
if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &
MatchInfo
))
422
assert(!
MatchInfo
.empty() && "Didn't get any match");
423
StringRef FullMatch =
MatchInfo
[0];
429
assert(I->second <
MatchInfo
.size() && "Internal paren error");
430
VariableTable[I->first] =
MatchInfo
[I->second];
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 246 milliseconds