OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchobj
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/tools/python/google/
platform_utils_win.py
191
def LowerDrive(
matchobj
):
192
return '/cygdrive/%s/' %
matchobj
.group(1).lower()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
compile_frontend.py
567
def replace_function(
matchobj
):
568
return re.sub(r"@param", "param",
matchobj
.group(1) or "") + "\n//" +
matchobj
.group(2)
/external/chromium_org/tools/grit/grit/node/
misc.py
49
def ReplaceVariable(
matchobj
):
51
if
matchobj
.group(1) == key:
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_re.py
40
def bump_num(self,
matchobj
):
41
int_value = int(
matchobj
.group(0))
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_re.py
40
def bump_num(self,
matchobj
):
41
int_value = int(
matchobj
.group(0))
[
all
...]
Completed in 1322 milliseconds