HomeSort by relevance Sort by last modified time
    Searched full:specify (Results 376 - 400 of 6342) sorted by null

<<11121314151617181920>>

  /external/clang/tools/scan-build/
scan-build.1 66 Specify the title used on generated HTML pages.
76 one can specify this behavior directly using build options.
98 option to specify an alternate compiler.
101 option to specify an alternate compiler.
112 Specify the contraint engine used by the analyzer. By default the
130 Specify the store model used by the analyzer. By default, the
135 sensitive store model. Users can also specify
  /external/linux-tools-perf/Documentation/
perf-probe.txt 34 Specify vmlinux path which has debuginfo (Dwarf binary).
38 Specify module name in which perf-probe searches probe points
43 Specify path to kernel source.
115 It is also possible to specify a probe point by the source line number or lazy matching by using 'SRC:ALN' or 'SRC;PTN' syntax, where 'SRC' is the source file path, ':ALN' is the line number and ';PTN' is the lazy matching pattern.
124 'NAME' specifies the name of this argument (optional). You can use the name of local variable, local data structure member (e.g. var->field, var.field2), local array with fixed index (e.g. array[1], var->array[0], var->pointer[2]), or kprobe-tracer argument format (e.g. $retval, %ax, etc). Note that the name of this argument will be set as the last member name if you specify a local data structure member (e.g. field2 for 'var->field1.field2'.)
125 'TYPE' casts the type of this argument (optional). If omitted, perf probe automatically set the type based on debuginfo. You can specify 'string' type only for the local variable or structure member which is an array of or a pointer to 'char' or 'unsigned char' type.
136 and 'ALN2' is end line number in the file. It is also possible to specify how
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 42 OutputFilename("o", cl::desc("Specify output filename"),
53 ExtractFuncs("func", cl::desc("Specify function to extract"),
59 ExtractRegExpFuncs("rfunc", cl::desc("Specify function(s) to extract using a "
65 ExtractAliases("alias", cl::desc("Specify alias to extract"),
72 ExtractRegExpAliases("ralias", cl::desc("Specify alias(es) to extract using a "
78 ExtractGlobals("glob", cl::desc("Specify global to extract"),
84 ExtractRegExpGlobals("rglob", cl::desc("Specify global(s) to extract using a "
  /external/openssh/
sftp.0 39 -1 Specify the use of protocol version 1.
41 -2 Specify the use of protocol version 2.
48 Specify the size of the buffer that sftp uses when transferring
89 specify an alternate port use: sftp -oPort=24. For full details
154 Specify how many requests may be outstanding at any one time.
215 local-path is specified, then local-path must specify a
293 remote-path is specified, then remote-path must specify a
  /frameworks/base/docs/html/tools/help/
monkey.jd 158 <td>If you specify one or more packages this way, the Monkey will <i>only</i> allow the system
160 other packages (e.g. to select a contact) you'll need to specify those packages as well.
161 If you don't specify any packages, the Monkey will allow the system to launch activities
162 in all packages. To specify multiple packages, use the -p option multiple times &mdash; one -p
168 <td>If you specify one or more categories this way, the Monkey will <i>only</i> allow the
170 If you don't specify any categories, the Monkey will select activities listed with the category
171 Intent.CATEGORY_LAUNCHER or Intent.CATEGORY_MONKEY. To specify multiple categories, use the -c
197 unhandled exception. If you specify this option, the Monkey will continue to send events to
204 as a "Application Not Responding" dialog. If you specify this option, the Monkey will continue to
211 for example if it attempts to launch an activity that requires certain permissions. If you specify
    [all...]
  /frameworks/base/docs/html/training/basics/intents/
filters.jd 63 <p>Specify this in your intent filter with the <a
65 The value you specify in this element must be the full string name for the action, instead of the
70 <p>Specify this in your intent filter with the <a
72 or more attributes in this element, you can specify just the MIME type, just a URI prefix,
77 of a URI), you should specify only the {@code android:mimeType} attribute to declare the type of
85 <p>Specify this in your intent filter with the <a
118 their behaviors, you should create separate intent filters to specify which actions are acceptable
125 android.content.Intent#ACTION_SENDTO} intent must use the data {@link android.net.Uri} to specify
195 android.app.Activity#setResult(int,Intent) setResult()} to specify the result code and result {@link
207 <p>You must always specify a result code with the result. Generally, it's either {@lin
    [all...]
  /frameworks/base/docs/html/training/beam-files/
send-files.jd 19 <li><a href="#ProvideUri">Specify the Files to Send</a>
73 Allows your app to send data over NFC. To specify this permission, add the following element
84 Allows your app to read from external storage. To specify this permission, add the following
100 <h3>Specify the NFC feature</h3>
102 Specify that your app uses NFC, by adding a
110 The following snippet shows you how to specify the
122 <h3>Specify Android Beam file transfer</h3>
126 specify the <code><a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"
136 To specify in your app manifest that NFC is optional, you use the following element:
269 <h2 id="ProvideUri">Specify the Files to Send</h2
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
headerparserhandler.py 48 # PythonOption to specify the handler root directory.
51 # PythonOption to specify the handler scan directory.
66 # PythonOption to specify to allow draft75 handshake.
109 # to filter logs. So, we need to specify LogLevel in the server
110 # configuration context. Even if we specify "LogLevel debug" in the
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
headerparserhandler.py 48 # PythonOption to specify the handler root directory.
51 # PythonOption to specify the handler scan directory.
67 # PythonOption to specify to allow handshake defined in Hixie 75 version
110 # to filter logs. So, we need to specify LogLevel in the server
111 # configuration context. Even if we specify "LogLevel debug" in the
  /external/clang/test/Analysis/
taint-generic.c 143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}}
144 char *dst = (char*)calloc(ts, sizeof(char)); //expected-warning {{Untrusted data is used to specify the buffer size}}
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
146 __builtin_memcpy(dst, buf1, (ts + 4)*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
149 char *dst2 = (char*)malloc(ts*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
  /external/sepolicy/tools/
insertkeys.py 182 metavar="FILE", help="Specify an output file, default is stdout")
185 metavar="DIR", help="Specify a root (CWD) directory to run this from, it" \
189 help="Specify the TARGET_BUILD_VARIANT, defaults to eng")
192 help="Specify a parent directory for keys")
197 parser.error("Must specify a config file (keys.conf) AND mac_permissions.xml file(s)!")
  /external/srtp/doc/
Doxyfile 28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
35 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
255 # This tag can be used to specify a number of aliases that acts
334 # The WARN_LOGFILE tag can be used to specify a file to which warning
344 # The INPUT tag can be used to specify the files and/or directories that contain
352 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
360 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
366 # The EXCLUDE tag can be used to specify files and/or directories that should
378 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
383 # The EXAMPLE_PATH tag can be used to specify one or more files or
    [all...]
  /ndk/build/tools/
build-gcc.sh 40 register_var_option "--platform=<name>" PLATFORM "Specify platform name"
43 register_var_option "--sysroot=<path>" OPTION_SYSROOT "Specify sysroot directory directly"
47 register_option "--gdb-version=<version>" do_gdb_version "Specify gdb version" "$GDB_VERSION"
55 register_option "--binutils-version=<version>" do_binutils_version "Specify binutils version" "$BINUTILS_VERSION"
62 register_var_option "--gmp-version=<version>" GMP_VERSION "Specify gmp version"
65 register_var_option "--mpfr-version=<version>" MPFR_VERSION "Specify mpfr version"
68 register_var_option "--mpc-version=<version>" MPC_VERSION "Specify mpc version"
71 register_var_option "--cloog-version=<version>" CLOOG_VERSION "Specify cloog version"
74 register_var_option "--isl-version=<version>" ISL_VERSION "Specify ISL version"
77 register_var_option "--ppl-version=<version>" PPL_VERSION "Specify ppl version
    [all...]
  /external/chromium_org/ppapi/c/documentation/
Doxyfile 46 # With the PROJECT_LOGO tag one can specify an logo or icon that is
53 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
69 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
150 # definition is used. Otherwise one should specify the include paths that
202 # This tag can be used to specify a number of aliases that acts
547 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
557 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
561 # You can optionally specify a file name after the option, if omitted
611 # The WARN_LOGFILE tag can be used to specify a file to which warning
621 # The INPUT tag can be used to specify the files and/or directories that contai
    [all...]
  /external/chromium_org/ppapi/cpp/documentation/
Doxyfile 46 # With the PROJECT_LOGO tag one can specify an logo or icon that is
53 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
69 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
150 # definition is used. Otherwise one should specify the include paths that
202 # This tag can be used to specify a number of aliases that acts
547 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
557 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
561 # You can optionally specify a file name after the option, if omitted
611 # The WARN_LOGFILE tag can be used to specify a file to which warning
621 # The INPUT tag can be used to specify the files and/or directories that contai
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/
Doxyfile 42 # With the PROJECT_LOGO tag one can specify an logo or icon that is
49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
65 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
136 # definition is used. Otherwise one should specify the include paths that
188 # This tag can be used to specify a number of aliases that acts
534 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
544 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
548 # You can optionally specify a file name after the option, if omitted
598 # The WARN_LOGFILE tag can be used to specify a file to which warning
608 # The INPUT tag can be used to specify the files and/or directories that contai
    [all...]
  /external/chromium_org/third_party/opus/src/doc/
Doxyfile.in 42 # With the PROJECT_LOGO tag one can specify an logo or icon that is
49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
65 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
136 # definition is used. Otherwise one should specify the include paths that
188 # This tag can be used to specify a number of aliases that acts
534 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
544 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
548 # You can optionally specify a file name after the option, if omitted
598 # The WARN_LOGFILE tag can be used to specify a file to which warning
608 # The INPUT tag can be used to specify the files and/or directories that contai
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/
Doxyfile 42 # With the PROJECT_LOGO tag one can specify an logo or icon that is
49 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
65 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
136 # definition is used. Otherwise one should specify the include paths that
188 # This tag can be used to specify a number of aliases that acts
534 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
544 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
548 # You can optionally specify a file name after the option, if omitted
598 # The WARN_LOGFILE tag can be used to specify a file to which warning
608 # The INPUT tag can be used to specify the files and/or directories that contai
    [all...]
  /frameworks/base/core/res/res/values/
attrs_manifest.xml 87 applications can choose not to specify a default activity to
91 <!-- Option to let applications specify that user data can/cannot be
97 <!-- Option to let applications specify that user data should
116 <!-- Specify a permission that a client is required to have in order to
223 <!-- Specify the name of a user ID that will be shared between multiple
231 <!-- Specify a label for the shared user UID of this package. This is
258 <!-- Flag to specify if this application needs to be present for all users. Only pre-installed
293 and service components that do not specify any intent filters; it
313 <!-- Specify a specific process that the associated code is to run in.
329 <!-- Specify a task name that activities have an "affinity" to
    [all...]
  /external/dnsmasq/po/
de.po 115 msgid "Specify local address(es) to listen on."
120 # @Simon: = "Please specify the local address(es) to listen on."
145 msgid "Specify the size of the cache in entries (defaults to %s)."
150 msgid "Specify configuration file (defaults to %s)."
210 msgid "Specify a hosts file to be read in addition to %s."
214 msgid "Specify interface(s) to listen on."
218 msgid "Specify interface(s) NOT to listen on."
255 msgid "Specify where to store DHCP leases (defaults to %s)."
263 msgid "Specify an MX record."
267 msgid "Specify BOOTP options to DHCP server.
    [all...]
fi.po 101 msgid "Specify local address(es) to listen on."
118 msgid "Specify the size of the cache in entries (defaults to %s)."
123 msgid "Specify configuration file (defaults to %s)."
174 msgid "Specify a hosts file to be read in addition to %s."
178 msgid "Specify interface(s) to listen on."
182 msgid "Specify interface(s) NOT to listen on."
219 msgid "Specify where to store DHCP leases (defaults to %s)."
227 msgid "Specify an MX record."
231 msgid "Specify BOOTP options to DHCP server."
249 msgid "Specify options to be sent to DHCP clients.
    [all...]
it.po 101 msgid "Specify local address(es) to listen on."
118 msgid "Specify the size of the cache in entries (defaults to %s)."
123 msgid "Specify configuration file (defaults to %s)."
174 msgid "Specify a hosts file to be read in addition to %s."
178 msgid "Specify interface(s) to listen on."
182 msgid "Specify interface(s) NOT to listen on."
219 msgid "Specify where to store DHCP leases (defaults to %s)."
227 msgid "Specify an MX record."
231 msgid "Specify BOOTP options to DHCP server."
249 msgid "Specify options to be sent to DHCP clients.
    [all...]
pt_BR.po 101 msgid "Specify local address(es) to listen on."
118 msgid "Specify the size of the cache in entries (defaults to %s)."
123 msgid "Specify configuration file (defaults to %s)."
174 msgid "Specify a hosts file to be read in addition to %s."
178 msgid "Specify interface(s) to listen on."
182 msgid "Specify interface(s) NOT to listen on."
219 msgid "Specify where to store DHCP leases (defaults to %s)."
227 msgid "Specify an MX record."
231 msgid "Specify BOOTP options to DHCP server."
249 msgid "Specify options to be sent to DHCP clients.
    [all...]
  /external/chromium_org/third_party/lcov-1.9/man/
lcov.1 182 Specify several tracefiles using the \-a switch to combine the coverage data
204 Use this option to specify the base directory of a build\-environment
249 Specify whether to generate checksum data when writing tracefiles.
270 Specify whether to enable libtool compatibility mode.
342 option to specify the location where the program was compiled (that's
345 Note that you may specify this option more than once.
400 Specify the location of the gcov tool.
415 Specify a list of errors after which to continue processing.
417 Use this option to specify a list of one or more classes of errors after which
485 Note that you may need to specify the full path to the kernel subdirector
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
doxyfile 28 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
35 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
232 # This tag can be used to specify a number of aliases that acts
304 # The WARN_LOGFILE tag can be used to specify a file to which warning
314 # The INPUT tag can be used to specify the files and/or directories that contain
322 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
330 # The RECURSIVE tag can be used to turn specify whether or not subdirectories
336 # The EXCLUDE tag can be used to specify files and/or directories that should
348 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
353 # The EXAMPLE_PATH tag can be used to specify one or more files o
    [all...]

Completed in 1849 milliseconds

<<11121314151617181920>>