Home
last modified time | relevance | path

Searched refs:sourcestr (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
DPySourceColor.py1073 def tagreplace(sourcestr, colors=lite, markup='xhtml', argument
1081 if sourcestr.find(css) == -1:
1082 sourcestr = sourcestr.replace('</head>', css, 1)
1083 starttags = sourcestr.count(tagstart)
1084 endtags = sourcestr.count(tagend)
1088 datastart = sourcestr.find(tagstart)
1089 dataend = sourcestr.find(tagend)
1090 data = sourcestr[datastart+len(tagstart):dataend]
1094 start = sourcestr[:datastart]
1095 end = sourcestr[dataend+len(tagend):]
[all …]
/external/v8/src/
Dlog.cc1264 SmartArrayPointer<char> sourcestr = in CodeCreateEvent() local
1266 msg.Append("%s", sourcestr.get()); in CodeCreateEvent()