HomeSort by relevance Sort by last modified time
    Searched refs:option (Results 201 - 225 of 691) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/iptables/extensions/
libxt_dccp.c 54 {.name = "dccp-option", .id = O_DCCP_OPTION, .type = XTTYPE_UINT8,
56 XTOPT_POINTER(s, option)},
200 print_option(uint8_t option, int invert, int numeric)
202 if (option || invert)
203 printf(" option=%s%u", invert ? "!" : "", option);
233 print_option(einfo->option,
269 printf(" --dccp-option %s%u",
271 einfo->option);
  /external/llvm/autoconf/m4/
link_options.m4 23 # Determine if the system can handle the -R option being passed to the linker.
28 [AC_CACHE_CHECK([for compiler -Wl,-R<path> option],[llvm_cv_link_use_r],
43 # Determine if the system can handle the -R option being passed to the linker.
48 [AC_CACHE_CHECK([for compiler -Wl,-export-dynamic option],
64 # Determine if the system can handle the --version-script option being
70 [AC_CACHE_CHECK([for compiler -Wl,--version-script option],
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtMaemoWebPopup.cpp 7 * version 2 of the License, or (at your option) any later version.
44 if (m_data.itemType(i) == QWebSelectData::Option) {
160 void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const
162 QStyledItemDelegate::paint(painter, option, index);
164 if (option.state & QStyle::State_Selected)
165 painter->drawPixmap(option.rect.width() - tickMark.rect().width(), option.rect.y() + (option.rect.height() / 2 - tickMark.rect().height() / 2), tickMark);
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebPlugin.cpp 7 * version 2 of the License, or (at your option) any later version.
41 if (m_data.itemType(i) == QWebSelectData::Option) {
156 void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const
158 QStyledItemDelegate::paint(painter, option, index);
160 if (option.state & QStyle::State_Selected)
161 painter->drawPixmap(option.rect.width() - tickMark.rect().width(), option.rect.y() + (option.rect.height() / 2 - tickMark.rect().height() / 2), tickMark);
  /frameworks/base/media/libmedia/
IMediaMetadataRetriever.cpp 119 sp<IMemory> getFrameAtTime(int64_t timeUs, int option)
121 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
125 data.writeInt32(option);
210 int option = data.readInt32(); local
211 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
215 sp<IMemory> bitmap = getFrameAtTime(timeUs, option);
mediametadataretriever.cpp 127 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option)
129 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option);
135 return mRetriever->getFrameAtTime(timeUs, option);
  /external/doclava/src/com/google/doclava/
Doclava.java 441 public static int optionLength(String option) {
442 if (option.equals("-d")) {
445 if (option.equals("-templatedir")) {
448 if (option.equals("-hdf")) {
451 if (option.equals("-knowntags")) {
454 if (option.equals("-toroot")) {
457 if (option.equals("-samplecode")) {
460 if (option.equals("-htmldir")) {
463 if (option.equals("-title")) {
466 if (option.equals("-werror"))
    [all...]
  /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/webkit/LayoutTests/dom/html/level2/html/
HTMLSelectElement08.js 78 The options attribute returns a collection of OPTION elements contained
101 expectedOptions[0] = "option";
102 expectedOptions[1] = "option";
103 expectedOptions[2] = "option";
104 expectedOptions[3] = "option";
105 expectedOptions[4] = "option";
HTMLOptionElement01.js 49 docsLoaded += preload(docRef, "doc", "option");
100 doc = load(docRef, "doc", "option");
101 nodeList = doc.getElementsByTagName("option");
HTMLOptionElement02.js 49 docsLoaded += preload(docRef, "doc", "option");
81 Retrieve the first OPTION attribute from the second select element and
100 doc = load(docRef, "doc", "option");
101 nodeList = doc.getElementsByTagName("option");
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLSelectElement08.js 78 The options attribute returns a collection of OPTION elements contained
101 expectedOptions[0] = "option";
102 expectedOptions[1] = "option";
103 expectedOptions[2] = "option";
104 expectedOptions[3] = "option";
105 expectedOptions[4] = "option";
  /external/grub/util/
grub-install.in 9 # (at your option) any later version.
61 Usage: grub-install [OPTION] install_device
232 for option in "$@"; do
233 case "$option" in
241 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
243 grub_shell=`echo "$option" | sed 's/--grub-shell=//'` ;;
254 echo "Unrecognized option \`$option'" 1>&2
264 install_device="${option}" ;;
403 You must set the root directory by the option --root-directory, becaus
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLLabelElement/script-tests/
label-control.js 31 debug("Find a control in option in label.");
32 debug("Note that option is a form control that is not labelable.");
33 document.write("<label id='test7'><option><input id='inputId7'></option></label>");
60 debug("Test label with 'for' attribute which is not a labelable form control - option");
61 document.write("<label for='optionId' id='test13'><input id='inputId13'></label><option id='optionId'></option>");
  /external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp 7 version 2 of the License, or (at your option) any later version.
212 QStyleOptionGraphicsItem option; local
213 option.exposedRect = webView->geometry();
214 QImage img(option.exposedRect.width(), option.exposedRect.height(), QImage::Format_ARGB32_Premultiplied);
217 webView->paint(&painter, &option);
219 webView->paint(&painter, &option);
220 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(255, 255, 255, 255));
221 painter.fillRect(option.exposedRect, Qt::black)
    [all...]
  /bootable/recovery/
roots.c 35 char* option; local
36 while (option = strtok(options, ",")) {
39 if (strncmp(option, "length=", 7) == 0) {
40 volume->length = strtoll(option+7, NULL, 10);
42 LOGE("bad option \"%s\"\n", option);
  /external/bluetooth/bluez/tools/
hid2hci.c 12 * (at your option) any later version.
223 static const struct option options[] = {
246 int option; local
248 option = getopt_long(argc, argv, "m:p:M:h", options, NULL);
249 if (option == -1)
252 switch (option) {
hcitool.c 13 * (at your option) any later version.
408 static struct option dev_options[] = {
437 static struct option inq_options[] = {
523 static struct option scan_options[] = {
803 static struct option name_options[] = {
851 static struct option info_options[] = {
991 static struct option spinq_options[] = {
1048 static struct option epinq_options[] = {
1090 static struct option cmd_options[] = {
1174 static struct option con_options[] =
    [all...]
  /external/icu4c/tools/genrb/
prscmnts.cpp 137 UParseCommentsOption option, UErrorCode *status){
153 RegexMatcher matcher(patternStrings[option], UREGEX_DOTALL, *status);
164 if(option == UPC_TRANSLATE && count > 1){
175 UParseCommentsOption option,
192 RegexMatcher matcher(patternStrings[option], UREGEX_DOTALL, *status);
  /external/oprofile/libabi/
opimport.cpp 41 popt::option options_array[] = {
42 popt::option(verbose, "verbose", 'V', "verbose output"),
43 popt::option(output_filename, "output", 'o', "output to file", "filename"),
44 popt::option(abi_filename, "abi", 'a', "abi description", "filename"),
45 popt::option(force, "force", 'f', "force conversion, even if identical")
  /external/libvpx/examples/includes/geshi/contrib/
example.php 183 echo '<option>No languages available!</option>';
202 echo '<option value="' . $lang . '" '. $selected .'>' . $lang . "</option>\n";
  /external/proguard/src/proguard/gui/
MemberSpecificationsPanel.java 9 * Software Foundation; either version 2 of the License, or (at your option)
229 MemberSpecification option = wrapper.memberSpecification; local
230 String name = option.name;
231 String descriptor = option.descriptor;
290 * the option refers to a field or to a method.
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 63 HTMLOptionElement* option = V8HTMLOptionElement::toNative(v8::Handle<v8::Object>(v8::Handle<v8::Object>::Cast(args[0]))); local
67 imp->add(option, ec);
79 imp->add(option, index, ec);
  /bionic/libc/unistd/
getopt_long.c 72 char *optarg; /* argument associated with option */
79 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
90 const struct option *, int *, int);
92 const struct option *, int *, int);
96 static char *place = EMSG; /* option letter processing */
99 static int nonopt_start = -1; /* first non option argument (for permute) */
100 static int nonopt_end = -1; /* first option after non options (for permute) */
103 static const char recargchar[] = "option requires an argument -- %c";
104 static const char recargstring[] = "option requires an argument -- %s";
105 static const char ambig[] = "ambiguous option -- %.*s"
    [all...]
  /external/pcre/
pcrecpp.h 165 // NOTE: The UTF8 option is ignored if pcre was not configured with the
492 RE(const string& pat, const RE_Options& option) { Init(pat, &option); }
494 RE(const char* pat, const RE_Options& option) { Init(pat, &option); }
498 RE(const unsigned char* pat, const RE_Options& option) {
499 Init(reinterpret_cast<const char*>(pat), &option); local

Completed in 1628 milliseconds

1 2 3 4 5 6 7 891011>>