HomeSort by relevance Sort by last modified time
    Searched refs:revision (Results 1 - 25 of 453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
revisionHistory.css 29 .outline-disclosure.revision-history-drawer {
34 .outline-disclosure.revision-history-drawer ol {
40 .outline-disclosure.revision-history-drawer > ol {
44 .outline-disclosure.revision-history-drawer li {
51 .outline-disclosure.revision-history-drawer li.parent {
55 .revision-history-link {
62 .revision-history-link-row {
66 .outline-disclosure.revision-history-drawer .revision-history-line {
71 .revision-history-drawer .webkit-line-number
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
plugin-version.h 11 static char revision[] = ""; variable
17 devphase, revision,
  /external/chromium_org/native_client_sdk/src/build_tools/
update_sdktools.py 31 SDK_TOOLS_DESCRIPTION_FORMAT = 'Native Client SDK Tools, revision %d'
37 def GetSdkToolsUrl(revision):
38 return HTTPS_BUCKET_PATH + 'trunk.%d/sdk_tools.tgz' % revision
52 for revision, url in reversed(GetTrunkRevisions(delegate)):
55 return revision, sdktools_url
73 def UpdateSdkToolsBundle(sdk_tools_bundle, revision, url, sha1, size):
74 sdk_tools_bundle['description'] = SDK_TOOLS_DESCRIPTION_FORMAT % revision
75 sdk_tools_bundle['revision'] = revision
83 def UpdateManifest(manifest, revision)
    [all...]
build_version.py 32 return 'trunk.%s' % info.revision
59 '''Extract chrome revision from svn.
62 The Chrome revision as a string. e.g. "12345"
64 return lastchange.FetchVersionInfo(None).revision
67 '''Extract NaCl revision from svn.
70 The NaCl revision as a string. e.g. "12345"
73 return lastchange.FetchVersionInfo(None, nacl_dir).revision
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
list.py 37 revision = ' (r%s -> r%s)' % (local_bundle.revision, bundle.revision)
39 revision = ' (r%s)' % (bundle.revision,)
41 revision = ''
48 revision))
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
model.js 45 if (commitData.revision in revertedRevisions)
62 for(var revision = failureAnalysis.newestPassingRevision + 1; revision <= failureAnalysis.oldestFailingRevision; ++revision) {
63 while (commitDataIndex >= 0 && commitDataList[commitDataIndex].revision < revision)
66 if (commitData.revision != revision)
69 failureAnalysis.oldestFailingRevision = revision;
70 failureAnalysis.newestPassingRevision = revision - 1
    [all...]
  /external/chromium_org/chrome/test/chromedriver/
embed_version_in_cpp.py 28 revision = lastchange.FetchVersionInfo(None).revision
29 if revision:
30 version += '.' + revision.strip()
run_buildbot_steps.py 50 def _ArchivePrebuilts(revision):
57 '%s/%s' % (GS_PREBUILTS_URL, 'r%s.zip' % revision)):
120 def _UpdateTestResultsLog(platform, revision, passed):
125 revision: The SVN revision number.
126 passed: Boolean indicating whether the tests passed at this revision.
128 assert isinstance(revision, int), 'The revision must be an integer'
132 assert revision not in log, 'Results already exist for revision %s' % revisio
    [all...]
archive.py 27 """Returns the latest revision (as a string) available for this platform.
36 def DownloadChrome(revision, dest_dir, site=Site.CONTINUOUS):
40 revision: the revision of Chrome to download.
61 zip_path = os.path.join(dest_dir, 'chrome-%s.zip' % revision)
63 url = site + '/%s/%s/%s.zip' % (_GetDownloadPlatform(), revision,
84 """Returns the latest revision of snapshot build."""
  /external/chromium_org/content/test/gpu/page_sets/
pixel_tests.py 12 def __init__(self, url, name, test_rect, revision, page_set):
16 self.revision = revision
35 revision=4,
42 revision=9,
49 revision=8,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
runPatchCommand.pl 61 --- $fileToPatch (revision 0)
62 +++ $fileToPatch (revision 0)
parseSvnDiffHeader.pl 48 --- WebKitTools/Scripts/VCSUtils.pm (revision 53004)
58 --- WebKitTools/Scripts/VCSUtils.pm (revision 53004)
73 --- WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl (revision 0)
74 +++ WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl (revision 0)
83 --- WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl (revision 0)
84 +++ WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl (revision 0)
98 --- WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme (revision 0)
99 +++ WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme (revision 0)
108 --- WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme (revision 0)
109 +++ WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme (revision 0
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
host_file_system_provider.py 29 If not None, the maximum revision that a 'trunk' file system will be
33 specific revision will return |default_trunk_instance| instead.
46 def GetTrunk(self, revision=None):
49 be pinned to a max revision (|max_trunk_revision| in constructor) and can
53 |revision| if non-None determines a specific revision to pin the host file
55 If None then |revision| will track |max_trunk_revision| if is has been
58 if revision is None:
61 return self._Create('trunk', revision=self._max_trunk_revision)
63 revision = min(revision, self._max_trunk_revision
    [all...]
  /external/chromium_org/build/util/
lastchange.py 7 lastchange.py -- Chromium revision fetching utility.
19 def __init__(self, url, revision):
21 self.revision = revision
26 Fetch the Subversion branch and revision for a given directory.
59 revision = attrs['Revision']
63 return VersionInfo(url, revision)
112 Fetch the Subversion URL and revision through Git.
117 A tuple containing the Subversion URL and revision
    [all...]
  /external/chromium_org/third_party/ots/src/
head.h 13 uint32_t revision; member in struct:ots::OpenTypeHEAD
  /external/chromium_org/third_party/skia/tools/
roll_deps.py 12 associated with the SVN revision number.
23 %prog -c CHROMIUM_PATH -r REVISION [OPTIONAL_OPTIONS]
72 search_depth: (int) how far back to look for the revision.
128 '-r', '--revision', type='int', default=None,
129 help='The Skia SVN revision number, defaults to top of tree.')
132 help='A partial Skia Git hash. Do not set this and revision.')
144 help='How far back to look for the revision.')
175 '(git-svn-id: [^@ ]+@|SVN changes up to revision |'
176 'LKGR w/ DEPS up to revision )(?P<return>[0-9]+)')
182 'Revision number missing from Chromium origin/master.'
    [all...]
  /external/skia/tools/
roll_deps.py 12 associated with the SVN revision number.
23 %prog -c CHROMIUM_PATH -r REVISION [OPTIONAL_OPTIONS]
72 search_depth: (int) how far back to look for the revision.
128 '-r', '--revision', type='int', default=None,
129 help='The Skia SVN revision number, defaults to top of tree.')
132 help='A partial Skia Git hash. Do not set this and revision.')
144 help='How far back to look for the revision.')
175 '(git-svn-id: [^@ ]+@|SVN changes up to revision |'
176 'LKGR w/ DEPS up to revision )(?P<return>[0-9]+)')
182 'Revision number missing from Chromium origin/master.'
    [all...]
  /external/iptables/extensions/
libxt_connlimit.c 60 const unsigned int revision = (*cb->match)->u.user.revision; local
73 if (revision < 1)
80 if (revision < 1)
153 const int revision = match->u.user.revision; local
160 if (revision >= 1) {
171 const int revision = match->u.user.revision; local
178 if (revision >= 1)
    [all...]
  /development/libraries/stereocamera/
source.properties 3 Pkg.Desc=Stereo Camera libraries, revision 1
6 Pkg.Revision=1
  /external/chromium_org/chrome/browser/chromeos/login/managed/
supervised_user_authentication_unittest.cc 35 int revision = 1; local
48 key.GetSecret(), revision, signature_key);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
regressionwindow.py 50 self._revisions = range(self._failing_build.revision(), self._build_before_failure.revision(), -1)
  /external/e2fsprogs/intl/
loadinfo.h 93 SPECIAL, SPONSOR, REVISION are the pieces of the locale name, as
107 const char *sponsor, const char *revision,
116 territory, codeset, special, sponsor, revision.
119 *CODESET, *SPECIAL, *SPONSOR, *REVISION gets assigned either a
131 CEN_REVISION for *REVISION.
138 const char **revision);
  /external/chromium_org/remoting/host/installer/linux/
build-deb.sh 97 # Include revision information in changelog when building from a local
101 revision="$(git svn find-rev "$merge_head" 2>/dev/null || true)"
104 revision="$(svn info . | awk '/^Revision: /{print $2}')"
106 if [[ -n "$revision" ]]; then
107 revision_text="(r$revision)"
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 77 String revision = p.getProperty("Pkg.Revision"); //$NON-NLS-1$ local
78 if (revision != null && revision.length() > 0) {
79 stats.ping("ddms", revision); //$NON-NLS-1$
  /development/ndk/platforms/android-3/include/linux/netfilter/
x_tables.h 26 u_int8_t revision; member in struct:xt_entry_match::__anon1391::__anon1392
48 u_int8_t revision; member in struct:xt_entry_target::__anon1394::__anon1395
72 u_int8_t revision; member in struct:xt_get_revision

Completed in 712 milliseconds

1 2 3 4 5 6 7 8 91011>>