HomeSort by relevance Sort by last modified time
    Searched refs:option (Results 226 - 250 of 1471) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_prolog.h 17 # pragma option push
18 # pragma option -Vx- -Ve- -a8 -b -pc
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter/
xt_dccp.h 30 u_int8_t option; member in struct:xt_dccp_info
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_prolog.h 17 # pragma option push
18 # pragma option -Vx- -Ve- -a8 -b -pc
  /cts/suite/cts/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_org/chrome/installer/util/
product.h 69 bool HasOption(const std::wstring& option) const {
70 return options_.find(option) != options_.end();
74 bool SetOption(const std::wstring& option, bool set) {
76 return options_.insert(option).second;
78 return options_.erase(option) != 0;
  /packages/services/Telephony/src/com/android/phone/sip/
SipSharedPreferences.java 81 public void setSipCallOption(String option) {
83 Settings.System.SIP_CALL_OPTIONS, option); local
87 String option = Settings.System.getString(mContext.getContentResolver(), local
89 return (option != null) ? option
103 Log.d("SIP", "ReceiveCall option is not set; use default value");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cmd.py 21 two is necessary because option values might come from the outside
80 # Some commands define a 'self.force' option to ignore file
120 # (command-line, option file, etc.) has been processed
123 # controlled by the command's various option values
140 This is always called as late as possible, ie. after any option
142 done. Thus, this is the place to code option dependencies: if
159 for (option, _, _) in self.user_options:
160 option = option.translate(longopt_xlate)
161 if option[-1] == "="
    [all...]
fancy_getopt.py 47 # The option table is (currently) a list of tuples. The
50 # if an option takes an argument, its long_option should have '='
53 # short_option, short_option should be None. All option tuples
57 # 'option_index' maps long option names to entries in the option
68 # opposite of some other option
71 # These keep track of the information in the option table. We
91 for option in self.option_table:
92 self.option_index[option[0]] = option
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cmd.py 21 two is necessary because option values might come from the outside
80 # Some commands define a 'self.force' option to ignore file
120 # (command-line, option file, etc.) has been processed
123 # controlled by the command's various option values
140 This is always called as late as possible, ie. after any option
142 done. Thus, this is the place to code option dependencies: if
159 for (option, _, _) in self.user_options:
160 option = option.translate(longopt_xlate)
161 if option[-1] == "="
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 227 for (String option = line.getToken(); option != null; option = line.getToken()) {
228 if (option.startsWith("-")) { //$NON-NLS-1$
230 if (option.equals("-I")) { //$NON-NLS-1$
233 addArg(option + dir);
234 } else if (option.startsWith("-I")) { //$NON-NLS-1$
235 addArg(option);
236 } else if (option.equals("-D")) { //$NON-NLS-1$
239 addArg(option + def)
    [all...]
  /external/elfutils/libcpu/
i386_lex.l 47 %option yylineno
48 %option never-interactive
49 %option noyywrap
  /external/smack/src/org/xbill/DNS/
EDNSOption.java 9 * is defined as a list of options; this represents a single option.
25 private static Mnemonic codes = new Mnemonic("EDNS Option Codes",
38 * Converts an EDNS Option Code into its textual representation
46 * Converts a textual representation of an EDNS Option Code into its
48 * @param s The textual representation of the option code
49 * @return The option code, or -1 on error.
61 * Creates an option with the given option code and data.
82 * Returns the EDNS Option's code.
84 * @return the option cod
126 EDNSOption option; local
    [all...]

Completed in 1106 milliseconds

1 2 3 4 5 6 7 8 91011>>