HomeSort by relevance Sort by last modified time
    Searched full:option (Results 876 - 900 of 24237) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/lcov-1.9/man/
geninfo.1 44 Unless the \-\-output\-filename option is specified,
99 Use this option to specify the base directory of a build\-environment
108 This option is required when using geninfo on projects built with libtool or
113 Note that this option will not work in environments where multiple base
115 directory while using the \-\-ignore\-errors option to prevent geninfo from
118 combined using the \-a option.
138 If you don't work with different source code versions, disable this option
159 libtool, disable this option to prevent problems when capturing coverage data.
189 Use this option to specify a list of one or more classes of errors after which
208 Run geninfo with this option on the directories containing .bb, .bbg or .gcn
    [all...]
  /external/oprofile/libpopt/
popt.c 278 if (longName && !(item->option.longName &&
279 !strcmp(longName, item->option.longName)))
281 else if (shortName != item->option.shortName)
296 /* We already have an exec to do; remember this option for next
328 con->os->currAlias, con->os->currAlias->option.longName @*/
336 if (longName && (item->option.longName &&
337 !strcmp(longName, item->option.longName)))
339 if (shortName && shortName == item->option.shortName)
348 if (longName && !(item->option.longName &&
349 !strcmp(longName, item->option.longName))
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Posix.java 67 public native int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException;
68 public native InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException;
69 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException;
70 public native StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException;
71 public native StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException;
72 public native StructUcred getsockoptUcred(FileDescriptor fd, int level, int option) throws ErrnoException;
164 public native void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
165 public native void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException;
166 public native void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
167 public native void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException
    [all...]
  /frameworks/av/libvideoeditor/vss/3gpwriter/src/
M4MP4W_Interface.c 300 * For Video, set the M4MP4W_trackSize Option */
384 * @param pptionId: (IN) ID of the option to set.
385 * @param OptionValue : (IN) Value of the option to set.
388 * @return M4ERR_BAD_OPTION_ID: the ID of the option is not valid.
417 M4OSA_TRACE2_0("setting M4WRITER_kMaxAUSize option");
429 M4OSA_TRACE2_0("setting M4WRITER_kMaxChunckSize option");
441 M4OSA_TRACE2_0("setting M4WRITER_kEmbeddedString option");
458 M4OSA_TRACE2_0("setting M4WRITER_kIntegrationTag option");
475 M4OSA_TRACE2_0("setting M4WRITER_kEmbeddedVersion option");
495 M4OSA_TRACE2_1("trying to set a read-only option! (ID=0x%x)"
    [all...]
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
troubleshooting.html 118 with an option like "<code>-keep class MyClass</code>", or their
119 implementations with an option like "<code>-keep class * implements
121 <a href="usage.html#dontnote"><code>-dontnote</code></a> option.</dd>
128 keep them with an option like "<code>-keep class MyClass { MyFieldType
133 href="usage.html#dontnote"><code>-dontnote</code></a> option.</dd>
137 <dd>Your configuration contains a <code>-keep</code> option to preserve the
138 given method (or field), but no <code>-keep</code> option for the given
144 href="usage.html#dontnote"><code>-dontnote</code></a> option.</dd>
149 a <code>-keepclassmembers/-keepclasseswithmembers</code> option to
151 which fields or methods. This way, the option simply won't have an
    [all...]
  /cts/suite/pts/deviceTests/browserbench/assets/octane/js/
bootstrap-collapse.js 126 $.fn.collapse = function (option) {
130 , options = typeof option == 'object' && option
132 if (typeof option == 'string') data[option]()
152 , option = $(target).data('collapse') ? 'toggle' : $this.data()
153 $(target).collapse(option)
  /external/chromium/chrome/browser/resources/options/
import_data_overlay.js 123 browserSelect.remove(0); // Remove the 'Loading...' option.
128 var option = new Option(templateData.noProfileFound, 0);
129 browserSelect.appendChild(option);
136 var option = new Option(browser['name'], browser['index']);
137 browserSelect.appendChild(option);
  /external/chromium/testing/gtest/
CMakeLists.txt 10 option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF)
14 option(
19 option(gtest_build_tests "Build all of gtest's own tests." OFF)
21 option(gtest_build_samples "Build gtest's sample programs." OFF)
23 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF)
79 # gtest_build_samples option to ON. You can do it by running ccmake
103 # gtest_build_tests option to ON. You can do it by running ccmake
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api_unittest.cc 31 AcceptOption* option = new AcceptOption(); local
34 option->description.reset(new std::string(description));
37 option->mime_types.reset(new std::vector<std::string>());
38 base::SplitString(mime_types, ',', option->mime_types.get());
42 option->extensions.reset(new std::vector<std::string>());
43 base::SplitString(extensions, ',', option->extensions.get());
46 return option;
  /external/chromium_org/chrome/browser/resources/net_internals/
tab_switcher_view.js 89 var menuItem = addNode(this.dropdownMenu_, 'option');
107 var option = this.dropdownMenu_.options[i];
108 if (option.style.display != 'none') {
109 this.switchToTab(option.value);
162 var option = this.dropdownMenu_.options[i];
163 if (option.value == tabId) {
164 return option;
  /external/chromium_org/third_party/icu/source/common/
ucln_imp.h 30 * c) Sun Studio, AIX VA, and HP-UX aCC uses a linker option to set the exit function
34 * For option 1, ensure that UCLN_NO_AUTO_CLEANUP is set to 0 by using --enable-auto-cleanup
35 * configure option or by setting UCLN_NO_AUTO_CLEANUP to 0 in pwin32.h (For Visual Studio
37 * For option 2, follow option 1 and also define UCLN_AUTO_ATEXIT
38 * For option 3, follow option 1 and also define UCLN_AUTO_LOCAL (see below for more information)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/
yasm_objfmts.xml 39 <option>-f <replaceable>objfmt</replaceable></option>
42 <option><replaceable>...</replaceable></option>
60 command line by use of the <option>-f
61 <replaceable>objfmt</replaceable></option> command line
62 option.</para>
  /external/icu4c/common/
ucln_imp.h 30 * c) Sun Studio, AIX VA, and HP-UX aCC uses a linker option to set the exit function
34 * For option 1, ensure that UCLN_NO_AUTO_CLEANUP is set to 0 by using --enable-auto-cleanup
35 * configure option or by otherwise setting UCLN_NO_AUTO_CLEANUP to 0
36 * For option 2, follow option 1 and also define UCLN_AUTO_ATEXIT
37 * For option 3, follow option 1 and also define UCLN_AUTO_LOCAL (see below for more information)
  /external/libvpx/libvpx/third_party/googletest/src/
CMakeLists.txt 10 option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF)
14 option(
19 option(gtest_build_tests "Build all of gtest's own tests." OFF)
21 option(gtest_build_samples "Build gtest's sample programs." OFF)
23 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF)
79 # gtest_build_samples option to ON. You can do it by running ccmake
103 # gtest_build_tests option to ON. You can do it by running ccmake
  /external/llvm/include/llvm/Support/
Debug.h 40 /// DebugFlag - This boolean is set to true if the '-debug' command line option
48 /// with the -debug-only=X option.
53 /// option were specified. Note that DebugFlag also needs to be set to true for
59 /// information. In the '-debug' option is specified on the commandline, and if
60 /// this is a debug build, then the code specified as the option to the macro
91 // In the '-debug' option is specified on the commandline, and if this is a
92 // debug build, then the code specified as the option to the macro will be
  /external/smack/src/org/xbill/DNS/
ClientSubnetOption.java 9 * The Client Subnet EDNS Option, defined in
13 * The option is used to convey information about the IP address of the
18 * The option is transmitted as part of an OPTRecord in the additional section
21 * An option code has not been assigned by IANA; the value 20730 (used here) is
24 * The wire format of the option contains a 2-byte length field (1 for IPv4, 2
59 * Construct a Client Subnet option. Note that the number of significant bits in
86 * Construct a Client Subnet option with scope netmask set to 0.
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/man/man1/
arm-eabi-dlltool.1 164 line. It then processes these inputs and if the \fB\-e\fR option has
165 been specified it creates a exports file. If the \fB\-l\fR option
166 has been specified it creates a library file and if the \fB\-z\fR option
178 to create it using the \fB\-z\fR option. In this case \fBdlltool\fR
198 binary file and it can be created by giving the \fB\-e\fR option to
203 library'). This file can be created by giving the \fB\-l\fR option to
206 If the \fB\-y\fR option is specified, dlltool generates a delay-import
215 and then assembling these. The \fB\-S\fR command line option can be
217 and the \fB\-f\fR option can be used to pass specific flags to that
236 description of the \fB\-I\fR or \fB\-\-identify\fR option
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/man/man1/
arm-linux-androideabi-dlltool.1 164 line. It then processes these inputs and if the \fB\-e\fR option has
165 been specified it creates a exports file. If the \fB\-l\fR option
166 has been specified it creates a library file and if the \fB\-z\fR option
178 to create it using the \fB\-z\fR option. In this case \fBdlltool\fR
198 binary file and it can be created by giving the \fB\-e\fR option to
203 library'). This file can be created by giving the \fB\-l\fR option to
206 If the \fB\-y\fR option is specified, dlltool generates a delay-import
215 and then assembling these. The \fB\-S\fR command line option can be
217 and the \fB\-f\fR option can be used to pass specific flags to that
236 description of the \fB\-I\fR or \fB\-\-identify\fR option
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/man/man1/
arm-eabi-dlltool.1 164 line. It then processes these inputs and if the \fB\-e\fR option has
165 been specified it creates a exports file. If the \fB\-l\fR option
166 has been specified it creates a library file and if the \fB\-z\fR option
178 to create it using the \fB\-z\fR option. In this case \fBdlltool\fR
198 binary file and it can be created by giving the \fB\-e\fR option to
203 library'). This file can be created by giving the \fB\-l\fR option to
206 If the \fB\-y\fR option is specified, dlltool generates a delay-import
215 and then assembling these. The \fB\-S\fR command line option can be
217 and the \fB\-f\fR option can be used to pass specific flags to that
236 description of the \fB\-I\fR or \fB\-\-identify\fR option
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/man/man1/
arm-linux-androideabi-dlltool.1 164 line. It then processes these inputs and if the \fB\-e\fR option has
165 been specified it creates a exports file. If the \fB\-l\fR option
166 has been specified it creates a library file and if the \fB\-z\fR option
178 to create it using the \fB\-z\fR option. In this case \fBdlltool\fR
198 binary file and it can be created by giving the \fB\-e\fR option to
203 library'). This file can be created by giving the \fB\-l\fR option to
206 If the \fB\-y\fR option is specified, dlltool generates a delay-import
215 and then assembling these. The \fB\-S\fR command line option can be
217 and the \fB\-f\fR option can be used to pass specific flags to that
236 description of the \fB\-I\fR or \fB\-\-identify\fR option
    [all...]
  /external/valgrind/main/drd/docs/
drd-manual.xml 11 <option>--tool=drd</option>
328 <option><![CDATA[--check-stack-var=<yes|no> [default: no]]]></option>
340 <option><![CDATA[--exclusive-threshold=<n> [default: off]]]></option>
346 option enables the detection of lock contention.
352 <option><![CDATA[--join-list-vol=<n> [default: 10]]]></option>
358 discarded immediately after a thread has been joined. This option
    [all...]
  /art/dex2oat/
dex2oat.cc 614 const StringPiece option(argv[i]);
617 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
619 if (option.starts_with("--dex-file=")) {
620 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
621 } else if (option.starts_with("--dex-location=")) {
622 dex_locations.push_back(option.substr(strlen("--dex-location=")).data());
623 } else if (option.starts_with("--zip-fd=")) {
624 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
628 } else if (option.starts_with("--zip-location=")) {
629 zip_location = option.substr(strlen("--zip-location=")).data()
    [all...]
  /external/blktrace/doc/
btreplay.8 38 specify the \fI-a queue\fR command line option to \fIblktrace\fR.
74 This option requires a single parameter providing the directory
84 This option instructs \fIbtreplay\fR to go find all the record files in the
85 directory specified (either via the \fI-d\fR option, or in the default
111 This option requires a single parameter that will override the default name
120 This option requires a single parameter which specifies the number of times
129 This option requires a single parameter which specifies the name of a
176 When specified on the command line, this option instructs \fIbtreplay\fR
203 \fI\-W\fR option.
  /external/chromium_org/ppapi/api/
ppb_udp_socket.idl 17 * Option names used by <code>SetOption()</code>.
24 * This option can only be set before calling <code>Bind()</code>.
31 * This option can only be set before calling <code>Bind()</code>.
38 * This option can only be set after a successful <code>Bind()</code> call.
49 * This option can only be set after a successful <code>Bind()</code> call.
179 * Sets a socket option on the UDP socket.
180 * Please see the <code>PP_UDPSocket_Option</code> description for option
185 * @param[in] name The option to set.
186 * @param[in] value The option value to set.
  /external/chromium_org/ppapi/c/
ppb_udp_socket.h 33 * Option names used by <code>SetOption()</code>.
39 * This option can only be set before calling <code>Bind()</code>.
45 * This option can only be set before calling <code>Bind()</code>.
51 * This option can only be set after a successful <code>Bind()</code> call.
61 * This option can only be set after a successful <code>Bind()</code> call.
192 * Sets a socket option on the UDP socket.
193 * Please see the <code>PP_UDPSocket_Option</code> description for option
198 * @param[in] name The option to set.
199 * @param[in] value The option value to set.

Completed in 2734 milliseconds

<<31323334353637383940>>