OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchInfo
(Results
1 - 10
of
10
) sorted by null
/external/icu4c/i18n/
tznames.cpp
324
struct
MatchInfo
: UMemory {
330
MatchInfo
(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
346
delete static_cast<
MatchInfo
*>(obj);
369
MatchInfo
*
matchInfo
= new
MatchInfo
(nameType, matchLength, &tzID, NULL);
370
if (
matchInfo
== NULL) {
374
matches(status)->addElement(
matchInfo
, status);
376
delete
matchInfo
;
386
MatchInfo
* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID)
[
all
...]
/external/v8/src/
string.js
288
function ExpandReplacement(string, subject,
matchInfo
, builder) {
298
var m = NUMBER_OF_CAPTURES(
matchInfo
) >> 1; // Includes the match.
312
builder.addSpecialSlice(
matchInfo
[CAPTURE0],
313
matchInfo
[CAPTURE1]);
316
builder.addSpecialSlice(0,
matchInfo
[CAPTURE0]);
319
builder.addSpecialSlice(
matchInfo
[CAPTURE1], subject.length);
340
addCaptureString(builder,
matchInfo
, n);
391
function addCaptureString(builder,
matchInfo
, index) {
395
var start =
matchInfo
[CAPTURE(scaled)];
397
var end =
matchInfo
[CAPTURE(scaled + 1)]
[
all
...]
regexp.js
162
var
matchInfo
= %_RegExpExec(regexp, string, start, lastMatchInfo);
163
if (
matchInfo
!== null) {
165
return BuildResultFromMatchInfo(
matchInfo
, string);
messages.js
560
var
matchInfo
= new InternalArray(CAPTURE(3) + 1);
562
%_RegExpExec(sourceUrlPattern, source, sourceUrlPos - 4,
matchInfo
);
565
SubString(source,
matchInfo
[CAPTURE(2)],
matchInfo
[CAPTURE(3)]);
[
all
...]
/external/chromium_org/v8/src/
string.js
329
function ExpandReplacement(string, subject,
matchInfo
, result) {
350
%_SubString(subject,
matchInfo
[CAPTURE0],
matchInfo
[CAPTURE1]);
353
result += %_SubString(subject, 0,
matchInfo
[CAPTURE0]);
356
result += %_SubString(subject,
matchInfo
[CAPTURE1], subject.length);
361
var number_of_captures = NUMBER_OF_CAPTURES(
matchInfo
);
373
var start =
matchInfo
[CAPTURE(scaled_index)];
376
%_SubString(subject, start,
matchInfo
[CAPTURE(scaled_index + 1)]);
508
var
matchInfo
= DoRegExpExec(regexp, subject, 0);
509
if (IS_NULL(
matchInfo
)) {
[
all
...]
regexp.js
155
var
matchInfo
= %_RegExpExec(regexp, string, start, lastMatchInfo);
156
if (
matchInfo
!== null) {
158
return BuildResultFromMatchInfo(
matchInfo
, string);
messages.js
592
var
matchInfo
= new InternalArray(CAPTURE(3) + 1);
594
%_RegExpExec(sourceUrlPattern, source, sourceUrlPos - 4,
matchInfo
);
597
%_SubString(source,
matchInfo
[CAPTURE(2)],
matchInfo
[CAPTURE(3)]);
[
all
...]
/external/chromium/chrome/browser/resources/net_internals/
eventsview.js
260
matchInfo
= regExp.exec(sourceText);
261
if (
matchInfo
== null)
265
'parameter':
matchInfo
[1]};
278
var
matchInfo
= this.parseDirective_(sourceText, directive);
279
if (
matchInfo
== null)
283
var negationInfo = /^(-?)(\S*?)$/.exec(
matchInfo
.parameter);
284
matchInfo
.parameter = negationInfo[2];
285
matchInfo
.isNegated = (negationInfo[1] == '-');
286
return
matchInfo
;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelinePanel.js
[
all
...]
/prebuilts/misc/common/icu4j/
icu4j.jar
Completed in 504 milliseconds