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

1 2

  /bionic/libm/
Android.mk 3 # TODO: these come from from upstream's libc, not libm!
14 upstream-freebsd/lib/msun/bsdsrc/b_exp.c \
15 upstream-freebsd/lib/msun/bsdsrc/b_log.c \
16 upstream-freebsd/lib/msun/bsdsrc/b_tgamma.c \
17 upstream-freebsd/lib/msun/src/e_acos.c \
18 upstream-freebsd/lib/msun/src/e_acosf.c \
19 upstream-freebsd/lib/msun/src/e_acosh.c \
20 upstream-freebsd/lib/msun/src/e_acoshf.c \
21 upstream-freebsd/lib/msun/src/e_asin.c \
22 upstream-freebsd/lib/msun/src/e_asinf.c
    [all...]
  /bionic/libc/
Android.mk 257 upstream-freebsd/lib/libc/stdio/clrerr.c \
258 upstream-freebsd/lib/libc/stdio/fclose.c \
259 upstream-freebsd/lib/libc/stdio/fdopen.c \
260 upstream-freebsd/lib/libc/stdio/feof.c \
261 upstream-freebsd/lib/libc/stdio/ferror.c \
262 upstream-freebsd/lib/libc/stdio/fgetln.c \
263 upstream-freebsd/lib/libc/stdio/fgetpos.c \
264 upstream-freebsd/lib/libc/stdio/fgets.c \
265 upstream-freebsd/lib/libc/stdio/fileno.c \
266 upstream-freebsd/lib/libc/stdio/flags.c
    [all...]
  /external/clang/
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/
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/
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
  /bionic/libc/arch-x86/
x86.mk 48 upstream-freebsd/lib/libc/string/wcscpy.c \
49 upstream-freebsd/lib/libc/string/wcscat.c \
50 upstream-freebsd/lib/libc/string/wmemcmp.c
79 upstream-freebsd/lib/libc/string/wcschr.c \
80 upstream-freebsd/lib/libc/string/wcsrchr.c \
81 upstream-freebsd/lib/libc/string/wcslen.c \
82 upstream-freebsd/lib/libc/string/wcscmp.c
  /external/strace/
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 version, more fixes (#108012, #105366, #105359, #105358
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/tools/
upgrade-upstream.sh 45 cat "$NDK_LIBCXX_DIR"/upstream.config | awk '$1 == "'$1':" { print $2; }'
98 # Get upstream SVN and revision number.
101 echo "ERROR: Can't find SVN upstream in upstream.config!"
107 echo "ERROR: Can't find upstream revision in upstream.config!"
125 run git commit -m "upstream @$REVISION"
141 echo "Updating to newer upstream revision"
178 run git commit -m "upstream @$NEW_REVISION"
209 echo "Updating upstream.config
    [all...]
  /external/chromium_org/tools/
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/Source/core/editing/
CompositeEditCommand.cpp 651 // Set upstream and downstream to define the extent of the whitespace surrounding text[offset].
652 int upstream = startOffset; local
653 while (upstream > 0 && isWhitespace(text[upstream - 1]))
654 upstream--;
660 int length = downstream - upstream;
664 VisiblePosition visibleUpstreamPos(Position(textNode, upstream));
667 String string = text.substring(upstream, length);
671 isStartOfParagraph(visibleUpstreamPos) || upstream == 0,
675 replaceTextInNodePreservingMarkers(textNode.release(), upstream, length, rebalancedString)
    [all...]
InsertTextCommand.cpp 172 startPosition = startPosition.upstream();
177 deleteInsignificantText(startPosition.upstream(), startPosition.downstream());
htmlediting.cpp 494 Position upstream(visiblePosition.deepEquivalent().upstream());
495 if (upstream.deprecatedNode() && upstream.deprecatedNode()->renderer() && upstream.deprecatedNode()->renderer()->isTable() && upstream.atLastEditingPositionForNode())
496 return upstream.deprecatedNode();
    [all...]
VisiblePosition.cpp 66 if (m_affinity == UPSTREAM && (isNull() || inSameLine(VisiblePosition(position, DOWNSTREAM), *this)))
98 // UPSTREAM position can never yield another UPSTREAM position (unless line wrap length is 0!).
99 if (prev.isNotNull() && m_affinity == UPSTREAM) {
101 temp.setAffinity(UPSTREAM);
502 Position upstream = candidate.upstream(); local
503 if (upstream.isCandidate())
504 return upstream;
519 // unless the affinity is upstream
    [all...]
VisibleSelection.cpp 156 // If the selection is a caret, move the range start upstream. This helps us match
159 s = m_start.upstream().parentAnchoredEquivalent();
175 e = m_end.upstream();
407 } else if (m_start == m_end || m_start.upstream() == m_end.upstream()) {
435 m_end = m_end.upstream();
437 // FIXME: Position::downstream() or Position::upStream() might violate editing boundaries
InsertParagraphSeparatorCommand.cpp 180 insertionPosition = insertionPosition.upstream();
311 // style of the upstream position.
320 // we should move to its upstream or downstream position.
325 insertionPosition = insertionPosition.upstream();
ApplyStyleCommand.cpp 125 , m_end(endingSelection().end().upstream())
153 , m_end(endingSelection().end().upstream())
167 , m_end(endingSelection().end().upstream())
357 start = start.upstream(); // Move upstream to ensure we do not add redundant spans.
586 // Use the upstream position of the start for removing style.
590 Position removeStart = start.upstream();
    [all...]
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();
310 // Upstream end will appear before BR due to canonicalization
    [all...]
InsertListCommand.cpp 368 Position insertionPos(start.deepEquivalent().upstream());
  /external/chromium_org/build/android/pylib/utils/
flakiness_dashboard_results_uploader.py 123 upstream = (tests_type != 'Chromium_Android_Instrumentation')
124 if upstream:
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 115 - New upstream release
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 177 Position upstream(EditingBoundaryCrossingRule = CannotCrossEditingBoundary) const;
Position.cpp 421 Position prevPosition = upstream(CanCrossEditingBoundary);
568 // upstream() and downstream() want to return positions that are either in a
585 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary, 0] to the first candidate
587 Position Position::upstream(EditingBoundaryCrossingRule rule) const function in class:WebCore::Position
703 // This function and upstream() are used for moving back and forth between visually equivalent candidates.
706 // and upstream() will return the left one.
    [all...]
  /external/chromium_org/third_party/libxml/src/
libxml2.spec 131 - upstream release 2.7.7 see http://xmlsoft.org/news.html
  /external/openssh/contrib/redhat/
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/oprofile/events/x86-64/family11h/
events 123 event:0xec counters:0,1,2,3 um:probe minimum:500 name:PROBE_RESPONSES_AND_UPSTREAM_REQUESTS : Probe responses and upstream requests

Completed in 804 milliseconds

1 2