/external/clang/ |
H A D | README.android | 3 * upstream to the llvm.org repository: 9 * merge conflicts with upstream on those parts. 15 * For Honeycomb: Synced to upstream r112347 16 * For Honeycomb MR1: Synced to upstream r119349 17 * For Honeycomb MR2: Synced to upstream r119349 18 * For Ice Cream Sandwich: Synced to upstream r135574 19 * For Ice Cream Sandwich MR1: Synced to upstream r142531 20 * For Ice Cream Sandwich MR2: Synced to upstream r146715 21 * For Jellybean: Synced to upstream r155088 22 * For Jellybean MR1: Synced to upstream r16232 [all...] |
/external/llvm/ |
H A D | README.android | 3 * upstream to the llvm.org repository: 9 * merge conflicts with upstream on those parts. 15 * For Honeycomb: Synced to upstream r112344 16 * For Honeycomb MR1: Synced to upstream r119309 17 * For Honeycomb MR2: Synced to upstream r119309 18 * For Ice Cream Sandwich: Synced to upstream r135569 19 * For Ice Cream Sandwich MR1: Synced to upstream r142530 20 * For Ice Cream Sandwich MR2: Synced to upstream r146714 21 * For Jellybean: Synced to upstream r155090 22 * For Jellybean MR1: Synced to upstream r16231 [all...] |
/external/compiler-rt/ |
H A D | README.android | 3 * cannot push upstream to the llvm.org repository: 9 * merge conflicts with upstream on those parts. 15 * For JellyBean: Synced to upstream r155350 16 * For JellyBean MR1: Synced to upstream r162279 17 * For Jellybean MR2: Synced to upstream r177337 18 * For Key Lime Pie: Synced to upstream r187889
|
/external/strace/ |
H A D | strace.spec | 89 - New upstream release. 96 - New upstream release, work mostly by Andreas Schwab and Dmitry V. Levin. 101 - New upstream release, work mostly by Dmitry V. Levin <ldv@altlinux.org> 232 - new upstream version, misc fixes and updates (#128091, #129166, #128391, #129378, #130965, #131177) 235 - new upstream version, updates ioctl lists (#127398), fixes quotactl (#127393), more ioctl decoding (#126917) 238 - new upstream version, fixes x86-64 biarch support (#126547) 247 - new upstream version, more ioctls (#122257), minor fixes 250 - new upstream version, mq_* calls (#120701), -p vs NPTL (#120462), more fixes (#118694, #120541, #118685) 256 - new upstream version, sched_* calls (#116990), show core flag (#112117) 262 - new upstream versio [all...] |
/external/chromium_org/tools/ |
H A D | safely-roll-blink.py | 57 parser.add_option('--upstream', default='origin/master', 87 ['git', 'checkout', '-b', 'blink_roll', options.upstream]) 110 subprocess2.check_call(['git', 'diff', options.upstream])
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ |
H A D | git.py | 145 # Rewrite UPSTREAM to the upstream branch 147 upstream = self._upstream_branch() 148 if not upstream: 149 raise ScriptError(message='No upstream/tracking branch set.') 150 git_commit = git_commit.replace('UPSTREAM', upstream)
|
/external/chromium_org/build/android/pylib/utils/ |
H A D | flakiness_dashboard_results_uploader.py | 123 upstream = (tests_type != 'Chromium_Android_Instrumentation') 124 if upstream:
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
H A D | CompositeEditCommand.cpp | 671 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset]. 672 int upstream = startOffset; local 673 while (upstream > 0 && isWhitespace(text[upstream - 1])) 674 upstream--; 680 int length = downstream - upstream; 684 VisiblePosition visibleUpstreamPos(Position(textNode, upstream)); 687 String string = text.substring(upstream, length); 691 isStartOfParagraph(visibleUpstreamPos) || upstream == 0, 695 replaceTextInNodePreservingMarkers(textNode.release(), upstream, lengt [all...] |
H A D | VisibleSelection.cpp | 158 // If the selection is a caret, move the range start upstream. This helps us match 161 s = m_start.upstream().parentAnchoredEquivalent(); 177 e = m_end.upstream(); 409 } else if (m_start == m_end || m_start.upstream() == m_end.upstream()) { 437 m_end = m_end.upstream();
|
H A D | htmlediting.cpp | 487 Position upstream(visiblePosition.deepEquivalent().upstream()); 488 if (isRenderedTable(upstream.deprecatedNode()) && upstream.atLastEditingPositionForNode()) 489 return upstream.deprecatedNode(); 1084 return VisiblePosition(first) == VisiblePosition(second.upstream());
|
H A D | VisiblePosition.cpp | 553 Position upstream = candidate.upstream(); local 554 if (upstream.isCandidate()) 555 return upstream; 570 // unless the affinity is upstream. 579 Position candidate = position.upstream(); 586 // When neither upstream or downstream gets us to a candidate (upstream/downstream won't leave
|
H A D | ApplyStyleCommand.cpp | 126 , m_end(endingSelection().end().upstream()) 154 , m_end(endingSelection().end().upstream()) 168 , m_end(endingSelection().end().upstream()) 358 start = start.upstream(); // Move upstream to ensure we do not add redundant spans. 587 // Use the upstream position of the start for removing style. 591 Position removeStart = start.upstream(); 1089 Position pushDownEnd = end.upstream(); 1162 // The tree may have changed and Position::upstream() relies on an up-to-date layout. 1166 && comparePositions(lastPositionInOrAfterNode(node).upstream(), en [all...] |
H A D | InsertParagraphSeparatorCommand.cpp | 182 insertionPosition = insertionPosition.upstream(); 326 // style of the upstream position. 335 // we should move to its upstream or downstream position. 340 insertionPosition = insertionPosition.upstream();
|
H A D | DeleteSelectionCommand.cpp | 181 m_upstreamStart = start.upstream(); 183 m_upstreamEnd = end.upstream(); 235 // extend selection upstream if there is whitespace there 240 // Expand out one character upstream for smart delete and recalculate 242 m_upstreamStart = pos.upstream(); 255 m_upstreamEnd = pos.upstream();
|
H A D | InsertTextCommand.cpp | 172 startPosition = startPosition.upstream();
|
H A D | InsertListCommand.cpp | 372 Position insertionPos(start.deepEquivalent().upstream());
|
H A D | FrameSelection.cpp | 601 pos = isForward ? positionAfterNode(rootUserSelectAll).downstream(CanCrossEditingBoundary) : positionBeforeNode(rootUserSelectAll).upstream(CanCrossEditingBoundary); 1583 candidate = endPos.upstream();
|
/external/libcap-ng/libcap-ng-0.7/ |
H A D | libcap-ng.spec | 115 - New upstream release
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | Position.h | 178 Position upstream(EditingBoundaryCrossingRule = CannotCrossEditingBoundary) const;
|
H A D | Position.cpp | 417 Position prevPosition = upstream(CanCrossEditingBoundary); 564 // upstream() and downstream() want to return positions that are either in a 581 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary, 0] to the first candidate 583 Position Position::upstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position 699 // This function and upstream() are used for moving back and forth between visually equivalent candidates. 702 // and upstream() will return the left one. 1055 if (upstream().deprecatedNode()->hasTagName(brTag)) 1144 position = position.upstream(CanCrossEditingBoundary);
|
/external/chromium_org/third_party/libxml/src/ |
H A D | libxml2.spec | 131 - upstream release 2.7.7 see http://xmlsoft.org/news.html
|
/external/openssh/contrib/redhat/ |
H A D | openssh.spec | 453 - drop debug patch, fixed upstream 481 - merge some of Damien Miller <djm@mindrot.org> changes from the upstream 555 from the upstream version 567 - drop various patches that came from or went upstream or to or from CVS
|
/external/harfbuzz_ng/ |
H A D | git.mk | 13 # Bugs, etc, should be reported upstream at:
|
/external/oprofile/events/x86-64/family11h/ |
H A D | events | 123 event:0xec counters:0,1,2,3 um:probe minimum:500 name:PROBE_RESPONSES_AND_UPSTREAM_REQUESTS : Probe responses and upstream requests
|
/external/oprofile/events/x86-64/hammer/ |
H A D | events | 119 event:0xec counters:0,1,2,3 um:probe minimum:500 name:PROBE_RESPONSES_AND_UPSTREAM_REQUESTS : Probe responses and upstream requests
|