OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:regex
(Results
426 - 450
of
677
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/webkit/Source/WebCore/inspector/front-end/
utilities.js
164
var
regex
= new RegExp("(^|\\s+)" + classNameRegex + "($|\\s+)");
165
if (
regex
.test(this.className))
166
this.className = this.className.replace(
regex
, " ");
1068
var
regex
= "";
1073
regex
+= "[" + char + "]";
1075
return new RegExp(
regex
, "i" + (extraFlags || ""));
/external/protobuf/python/
mox.py
904
class
Regex
(Comparator):
920
self.
regex
= re.compile(pattern, flags=flags)
929
return self.
regex
.search(rhs) is not None
932
s = '<regular expression \'%s\'' % self.
regex
.pattern
933
if self.
regex
.flags:
934
s += ', flags=%d' % self.
regex
.flags
[
all
...]
/cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java
46
import java.util.
regex
.MatchResult;
47
import java.util.
regex
.Matcher;
48
import java.util.
regex
.Pattern;
/libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java
18
package libcore.java.util.
regex
;
21
import java.util.
regex
.Matcher;
22
import java.util.
regex
.Pattern;
/frameworks/base/services/java/com/android/server/connectivity/
Tethering.java
252
for (String
regex
: mTetherableUsbRegexs) {
253
if (iface.matches(
regex
)) return true;
261
for (String
regex
: mTetherableWifiRegexs) {
262
if (iface.matches(
regex
)) return true;
270
for (String
regex
: mTetherableBluetoothRegexs) {
271
if (iface.matches(
regex
)) return true;
[
all
...]
/ndk/sources/host-tools/sed-4.2.1/sed/
compile.c
148
"unterminated address
regex
\0"
175
#define UNTERM_S_CMD (UNTERM_ADDR_RE + sizeof(N_("unterminated address
regex
")))
537
static struct buffer *match_slash P_((int slash, int
regex
));
539
match_slash(slash,
regex
)
541
int
regex
;
569
else if (ch == 'n' &&
regex
)
572
else if (ch != '\n' && (ch != slash || (!
regex
&& ch == '&')))
575
else if (ch == OPEN_BRACKET &&
regex
)
[
all
...]
/cts/tests/tests/text/src/android/text/util/cts/
LinkifyTest.java
30
import java.util.
regex
.Matcher;
31
import java.util.
regex
.Pattern;
/cts/tests/tests/webkit/src/android/webkit/cts/
GeolocationTest.java
47
import java.util.
regex
.Matcher;
48
import java.util.
regex
.Pattern;
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
CtsXmlResultReporter.java
47
import java.util.
regex
.Matcher;
48
import java.util.
regex
.Pattern;
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java
30
import java.util.
regex
.Matcher;
31
import java.util.
regex
.Pattern;
/external/doclava/src/com/google/doclava/
LinkReference.java
19
import java.util.
regex
.Pattern;
20
import java.util.
regex
.Matcher;
62
*
regex
pattern to use when matching explicit "<a href" reference text
68
*
regex
pattern to use when matching double-quoted reference text
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java
25
import java.util.
regex
.Matcher;
26
import java.util.
regex
.Pattern;
PhoneNumberMatcher.java
30
import java.util.
regex
.Matcher;
31
import java.util.
regex
.Pattern;
/external/smack/src/org/jivesoftware/smack/util/
StringUtils.java
37
import java.util.
regex
.Matcher;
38
import java.util.
regex
.Pattern;
/frameworks/base/core/java/android/text/util/
Linkify.java
37
import java.util.
regex
.Matcher;
38
import java.util.
regex
.Pattern;
46
*
regex
matches in the text into clickable links. This is particularly
189
* @param match The
regex
matcher state that found this URL text
295
* Applies a
regex
to the text of a TextView turning the matches into
301
* @param pattern
Regex
pattern to be used for finding links
311
* Applies a
regex
to the text of a TextView turning the matches into
317
* @param p
Regex
pattern to be used for finding links
336
* Applies a
regex
to a Spannable turning the matches into
341
* @param pattern
Regex
pattern to be used for finding link
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Rect.java
23
import java.util.
regex
.Matcher;
24
import java.util.
regex
.Pattern;
/frameworks/base/telephony/java/android/telephony/
TelephonyManager.java
38
import java.util.
regex
.Matcher;
39
import java.util.
regex
.Pattern;
[
all
...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
Summarizer.java
39
import java.util.
regex
.Matcher;
40
import java.util.
regex
.Pattern;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java
49
import java.util.
regex
.Matcher;
50
import java.util.
regex
.Pattern;
/ndk/sources/host-tools/sed-4.2.1/
bootstrap.sh
130
${CC} -DHAVE_CONFIG_H -I.. -I. -c
regex
.c || exit 1
bootstrap.sh.in
130
${CC} -DHAVE_CONFIG_H -I.. -I. -c
regex
.c || exit 1
/packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java
46
import java.util.
regex
.Matcher;
47
import java.util.
regex
.Pattern;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java
47
import java.util.
regex
.Matcher;
48
import java.util.
regex
.Pattern;
/packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java
20
import java.util.
regex
.Matcher;
21
import java.util.
regex
.Pattern;
/prebuilts/devtools/tools/lib/
sdkstats.jar
Completed in 1343 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>