Searched refs:author (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium_org/tools/findit/
H A Dresult.py8 def __init__(self, suspected_cl, revision_url, component_name, author,
13 self.author = author
H A Dblame.py22 author: The author of this line on the latest revision.
32 file_name, line_number, author, revision, message,
40 self.author = author
136 (line_content, revision, author, url, message) = parsed_blame_info
138 crashed_line_number, author, revision, message, url,
H A Dcrash_utils.py530 author = match.author
538 result = Result(suspected_cl, revision_url, component_name, author, reason,
560 author = blame.author
570 result = Result(suspected_cl, revision_url, component_name, author, reason,
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DPrototype.js45 function Book(name, author){
48 this.author = author;
54 shouldBe("b.author", "'Fred'"); // outpus "Fred"
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dsetup.py38 author='Google Inc. and others', variable
/external/chromium_org/third_party/python_gflags/
H A Dsetup.py38 author='Google Inc. and others', variable
/external/chromium_org/third_party/tlslite/
H A Dsetup.py10 author="Trevor Perrin", variable
/external/chromium_org/tools/gyp/
H A Dsetup.py13 author='Chromium Authors', variable
/external/lldb/test/pexpect-2.4/
H A Dsetup.py10 author='Noah Spurrier', variable
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DAuthorBox.java37 private String author; field in class:AuthorBox
57 * @return the author
60 return author;
67 public void setAuthor(String author) { argument
68 this.author = author;
72 return 7 + Utf8.utf8StringLengthInBytes(author);
79 author = IsoTypeReader.readString(content);
86 byteBuffer.put(Utf8.convert(author));
92 return "AuthorBox[language=" + getLanguage() + ";author
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/
H A Dsetup.py26 author='The Closure Linter Authors', variable
/external/chromium_org/third_party/closure_linter/
H A Dsetup.py26 author='The Closure Linter Authors', variable
/external/chromium_org/third_party/v4l2capture/
H A Dsetup.py17 author = "Fredrik Portstrom", variable
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dvalidate-committer-lists168 line_regexp = re.compile("^(?P<author>.+)@\S+ (?P<timestamp>\d+)$")
177 last_commit_dates[match_result.group('author')] = float(match_result.group('timestamp'))
180 authors_missing_email = filter(lambda author: author.find('@') == -1, self._last_commit_time_by_author_cache)
181 authors_with_email = filter(lambda author: author.find('@') != -1, self._last_commit_time_by_author_cache)
182 prefixes_of_authors_with_email = map(lambda author: author.split('@')[0], authors_with_email)
184 for author in authors_missing_email:
186 author_email = self.login_to_email_address.get(author)
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
H A Dsetup.py47 setup(author='Yuzo Fujishima',
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file.rb5 author: Kyle Yetter <kcy5b@yahoo.com>
/external/llvm/utils/lit/
H A Dsetup.py16 author = lit.__author__, variable
/external/chromium_org/v8/tools/push-to-trunk/
H A Dbump_up_version.py195 self.GitCommit("%s\n\nTBR=%s" % (msg, self._options.author),
196 author=self._options.author)
200 self.GitUpload(author=self._options.author,
217 if not options.dry_run and not options.author:
H A Dchromium_roll.py80 author=self._options.author,
83 self.GitUpload(author=self._options.author,
128 if not options.author or not options.reviewer:
129 print "A reviewer (-r) and an author (-a) are required."
H A Dauto_roll.py29 "owner": self._options.author,
92 "--author", self._options.author,
117 if not options.author:
118 print "An author (-a) is required."
H A Dgit_recipes.py196 def GitUpload(self, reviewer="", author="", force=False, cq=False,
199 if author:
200 args += ["--email", Quoted(author)]
213 def GitCommit(self, message="", file_name="", author=None, **kwargs):
220 if author:
221 args += ["--author", "\"%s <%s>\"" % (author, author)]
/external/fonttools/
H A Dsetup.py64 author = "Just van Rossum",
/external/markdown/
H A Dsetup.py33 author = 'Manfred Stienstra and Yuri takhteyev', variable in class:md_install_scripts
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_user_image.js247 $('user-image-author-name').textContent = image.author;
248 $('user-image-author-website').textContent = image.website;
249 $('user-image-author-website').href = image.website;
251 (image.author || image.website) ? 'visible' : 'hidden';
372 * @param {Array.<{url: string, author: string, website: string}>} images
373 * An array of default images data, including URL, author and website.
381 item.author = data.author || '';
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Dchange_picture_options.js230 $('user-image-author-name').textContent = image.author;
231 $('user-image-author-website').textContent = image.website;
232 $('user-image-author-website').href = image.website;
234 (image.author || image.website) ? 'visible' : 'hidden';
306 * @param {Array.<{url: string, author: string, website: string}>}
307 * imagesData An array of default images data, including URL, author and
316 item.author = data.author || '';

Completed in 5620 milliseconds

12345