Home
last modified time | relevance | path

Searched +full:- +full:- +full:preserve +full:- +full:paths (Results 1 – 25 of 200) sorted by relevance

12345678

/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorPreserveSpace.java10 * http://www.apache.org/licenses/LICENSE-2.0
19 * $Id: ProcessorPreserveSpace.java 468640 2006-10-28 06:53:53Z minchau $
32 * TransformerFactory for xsl:preserve-space markup.
34 * <!ELEMENT xsl:preserve-space EMPTY>
35 * <!ATTLIST xsl:preserve-space elements CDATA #REQUIRED>
40 static final long serialVersionUID = -5552836470051177302L;
43 * Receive notification of the start of an preserve-space element.
64 WhitespaceInfoPaths paths = new WhitespaceInfoPaths(thisSheet); in startElement() local
65 setPropertiesFromAttributes(handler, rawName, attributes, paths); in startElement()
67 Vector xpaths = paths.getElements(); in startElement()
[all …]
/external/llvm/test/tools/llvm-cov/
Dllvm-cov.test1 # Tests for compatibility between llvm-cov and gcov. These work by
2 # comparing llvm-cov against reference outputs generated by gcov 4.2.
8 RUN: rm -rf %t
14 RUN: llvm-cov gcov test.c | diff -u test_no_options.output -
15 RUN: diff -aub test_no_options.cpp.gcov test.cpp.gcov
16 RUN: diff -aub test_no_options.h.gcov test.h.gcov
19 RUN: mkdir -p %t/objdir
21 RUN: llvm-cov gcov -o objdir test.c | diff -u test_no_options.output -
22 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov
23 RUN: diff -aub test_objdir.h.gcov test.h.gcov
[all …]
/external/llvm/docs/CommandGuide/
Dllvm-cov.rst1 llvm-cov - emit coverage information
5 --------
7 :program:`llvm-cov` *command* [*args...*]
10 -----------
12 The :program:`llvm-cov` tool shows code coverage information for
14 work with ``gcov``\-style coverage or with ``clang``\'s instrumentation
18 the :program:`llvm-cov gcov` command were called. Otherwise, a command should
22 --------
24 * :ref:`gcov <llvm-cov-gcov>`
25 * :ref:`show <llvm-cov-show>`
[all …]
/external/openssh/
Dsftp-client.h1 /* $OpenBSD: sftp-client.h,v 1.26 2015/01/14 13:54:13 djm Exp $ */
4 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
61 /* Read contents of 'path' to NULL-terminated array 'dir' */
64 /* Frees a NULL-terminated array of SFTP_DIRENTs (eg. from do_readdir) */
88 /* Canonicalise 'path' - caller must free result */
107 * Download 'remote_path' to 'local_path'. Preserve permissions and times
114 * Recursively download 'remote_directory' to 'local_directory'. Preserve
121 * Upload 'local_path' to 'remote_path'. Preserve permissions and times
127 * Recursively upload 'local_directory' to 'remote_directory'. Preserve
133 /* Concatenate paths, taking care of slashes. Caller must free result. */
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/llvm/docs/HistoricalNotes/
D2003-06-26-Reoptimizer2.txt4 ------------------------------
8 in SSA form (kind of like LLVM's MachineInstrs.) Then re-allocate
19 The BinInterface tries to find live-outs for traces so that it can do
21 the original code. It has to preserve the live-ins and live-outs when
23 epilogues that copy live-outs back into the right registers, but
24 live-ins have to be in the right registers.)
28 ---------------------------
34 It does not handle integer or floating-point condition codes and it
35 does not handle floating-point register allocation.
42 disable trace generation on functions that have variable-sized
[all …]
/external/parameter-framework/
D.travis.yml7 - PREFIX=$HOME/prefix
10 - gcc
11 - clang
20 - ubuntu-toolchain-r-test
22 - swig
23 - valgrind
24 - g++-4.8
27 - pip install --user cpp-coveralls; export PATH=$HOME/.local/bin:$PATH
28 - wget --directory-prefix $PREFIX/include
32 - if [ "$CC" = "gcc" ]; then export CC=gcc-4.8 CXX=g++-4.8; fi
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
Dant10 # http://www.apache.org/licenses/LICENSE-2.0
25 if [ "$arg" = "--noconfig" ] ; then
27 elif [ "$arg" = "--usejikes" ] ; then
29 elif [ "$arg" = "--execdebug" ] ; then
31 elif [ my"$arg" = my"--h" -o my"$arg" = my"--help" ] ; then
33 ant_exec_args="$ant_exec_args -h"
35 if [ my"$arg" = my"-h" -o my"$arg" = my"-help" ] ; then
47 # load system-wide ant configuration (ONLY if ANT_HOME has NOT been set)
48 if [ -z "$ANT_HOME" -o "$ANT_HOME" = "/usr/share/ant" ]; then
49 if [ -f "/etc/ant.conf" ] ; then
[all …]
/external/llvm/lib/CodeGen/
DLiveRangeCalc.h1 //===---- LiveRangeCalc.h - Calculate live ranges ---------------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
12 // on the same live range. The cache can be shared by non-overlapping live
15 // A low-level interface is available to clients that know where a variable is
17 // propagate values down the dominator tree, and even insert PHI-defs where
20 //===----------------------------------------------------------------------===//
43 /// LiveOutPair - A value and the block that defined it. The domtree node is
44 /// redundant, it can be computed as: MDT[Indexes.getMBBFromIndex(VNI->def)].
47 /// LiveOutMap - Map basic blocks to the value leaving the block.
56 /// Map each basic block where a live range is live out to the live-out value
[all …]
/external/llvm/tools/llvm-cov/
Dgcov.cpp1 //===- gcov.cpp - GCOV compatible LLVM coverage tool ----------------------===//
8 //===----------------------------------------------------------------------===//
10 // llvm-cov is a command line tools to analyze and report coverage information.
12 //===----------------------------------------------------------------------===//
32 // If no directory was specified with -o, look next to the source file. in reportCoverage()
70 GCDA = "-"; in reportCoverage()
98 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
102 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); in gcovMain()
106 "of percentages (requires -b)")); in gcovMain()
107 cl::alias BranchCountA("branch-counts", cl::aliasopt(BranchCount)); in gcovMain()
[all …]
/external/parameter-framework/tools/xmlGenerator/
DhostDomainGenerator.sh3 # Copyright (c) 2011-2014, Intel Corporation
31 set -ueo pipefail
34 # - 1 info
35 # - 2 error
36 # - 3 (reserved)
37 # - 4 standard
38 # - 5 warning
43 if test "$1" == --nonverbose
56 if [ "$1" = "--validate" ]; then
65 testPlatform="test-platform_host"
[all …]
/external/proguard/docs/manual/
Dgradle.html1 <!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
4 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
5 <meta http-equiv="content-style-type" content="text/css">
12 <!--
15 //-->
26 <b>ProGuard</b> can be run as a task in the Java-based build tool Gradle
62 <li>Like in ProGuard-style configurations, we're using all lower-case names
83 <dd>Read and merge options from the given ProGuard-style configuration
106 <dd>Ignore non-public library classes.</dd>
126 <dd>Preserve the specified classes <i>and</i> class members.</dd>
[all …]
/external/e2fsprogs/config/
Dinstall-sh3 # install - install a program, script, or datafile
6 # Calling this script install-sh is preferred over install.sh, to prevent
17 # Don't use :- since 4.3BSD and earlier shells don't like it.
18 doit="${DOITPROG-}"
21 # put in absolute paths if you don't have them in your path; or use env. vars.
23 mvprog="${MVPROG-mv}"
24 cpprog="${CPPROG-cp}"
25 chmodprog="${CHMODPROG-chmod}"
26 chownprog="${CHOWNPROG-chown}"
27 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/llvm/test/Transforms/IndVarSimplify/
Dno-iv-rewrite.ll1 ; RUN: opt < %s -indvars -S | FileCheck %s
6 …alayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-
21 ; CHECK-NOT: phi
24 ; CHECK-NOT: sext
60 ; CHECK-NOT: phi
63 ; CHECK-NOT: sext
95 ; CHECK-NOT: sext
101 ; Preserve exactly one pointer type IV.
103 ; CHECK-NOT: phi
106 ; CHECK-NOT: add
[all …]
/external/clang/lib/Driver/
DToolChain.cpp1 //===--- ToolChain.cpp - Collections of tools for one platform ------------===//
8 //===----------------------------------------------------------------------===//
37 // Explicit rtti/no-rtti args in CalculateRTTIMode()
39 if (CachedRTTIArg->getOption().matches(options::OPT_frtti)) in CalculateRTTIMode()
45 // -frtti is default, except for the PS4 CPU. in CalculateRTTIMode()
50 // We're assuming that, if we see -fexceptions, rtti gets turned on. in CalculateRTTIMode()
55 (Exceptions->getOption().matches(options::OPT_fexceptions) || in CalculateRTTIMode()
56 Exceptions->getOption().matches(options::OPT_fcxx_exceptions))) in CalculateRTTIMode()
67 if (!isThreadModelSupported(A->getValue())) in ToolChain()
69 << A->getValue() << A->getAsString(Args); in ToolChain()
[all …]
/external/srtp/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/tcpdump/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/iputils/ninfod/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/jemalloc/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/icu/icu4c/source/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/libpcap/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/liblzf/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/jpeg/
Dinstall-sh3 # install - install a program, script, or datafile
18 # Calling this script install-sh is preferred over install.sh, to prevent
29 # Don't use :- since 4.3BSD and earlier shells don't like it.
30 doit="${DOITPROG-}"
33 # put in absolute paths if you don't have them in your path; or use env. vars.
35 mvprog="${MVPROG-mv}"
36 cpprog="${CPPROG-cp}"
37 chmodprog="${CHMODPROG-chmod}"
38 chownprog="${CHOWNPROG-chown}"
39 chgrpprog="${CHGRPPROG-chgrp}"
[all …]
/external/selinux/policycoreutils/
DChangeLog1 * setfiles/restorecon: fix -r/-R option, from Petr Lautrbach.
7 * Fix -Wformat errors with gcc-5.0.0, from Petr Lautrbach.
9 * Fix typo in semanage-port man page, from Andrew Spiers.
11 2.4 2015-02-02
28 now call --install on the backend, from Yuli Khodorkovskiy
36 2.3 2014-05-06
37 * Add -P semodule option to man page from Dan Walsh.
41 * Add domain to short list of domains, when -t and -d from Dan Walsh.
50 2.2.5 2013-12-09
53 2.2.4 2013-11-26
[all …]
/external/selinux/libsepol/
DChangeLog20 2.4 2015-02-02
31 2.3 2014-05-06
32 * Improve error message for name-based transition conflicts.
38 2.2 2013-10-30
40 - Add kernel policy version 29.
41 - Add modular policy version 17.
42- Add sepol_compute_av_reason_buffer(), sepol_string_to_security_class(), sepol_string_to_av_perm(…
46 2.1.9 2013-02-01
52 2.1.8 2012-09-13
57 * role_fix_callback skips out-of-scope roles during expansion.
[all …]

12345678