/external/chromium_org/third_party/icu/source/test/perf/normperf/ |
normperf.h | 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status); 29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status); 42 int32_t options; member in class:QuickCheckPerfFunction 49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status); 53 retVal = (*fn)(lines[i].name,-1,mode, options, status); 59 retVal = (*fn)(src,srcLen,mode, options, status); 61 retVal = (*fn)(src,-1,mode, options, status); 77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 113 int32_t options; member in class:NormPerfFunction 187 int32_t options; member in class:NormalizerPerformanceTest [all...] |
/external/icu4c/test/perf/normperf/ |
normperf.h | 28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status); 29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status); 42 int32_t options; member in class:QuickCheckPerfFunction 49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status); 53 retVal = (*fn)(lines[i].name,-1,mode, options, status); 59 retVal = (*fn)(src,srcLen,mode, options, status); 61 retVal = (*fn)(src,-1,mode, options, status); 77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 113 int32_t options; member in class:NormPerfFunction 187 int32_t options; member in class:NormalizerPerformanceTest [all...] |
/development/ndk/sources/android/libportable/arch-mips/ |
waitpid.c | 60 pid_t WRAP(waitpid)(pid_t pid, int *status, int options) 64 ALOGV("%s(pid:%d, status:%p, options:0x%x) {", __func__, 65 pid, status, options); 67 rv = REAL(waitpid)(pid, status, options); 92 pid_t WRAP(wait3)(int *status, int options, struct rusage *rusage) 96 ALOGV("%s(status:%p, options:0x%x, rusage:%p) {", __func__, 97 status, options, rusage); 99 rv = REAL(wait3)(status, options, rusage); 113 pid_t WRAP(wait4)(pid_t pid, int *status, int options, struct rusage *rusage) 117 ALOGV("%s(pid:%d, status:%p, options:0x%x, rusage:%p) {", __func__ [all...] |
/external/chromium_org/chrome/browser/sync/ |
test_profile_sync_service.cc | 39 scoped_ptr<DoInitializeOptions> options) { 40 options->http_bridge_factory = 43 options->sync_manager_factory.reset( 45 options->credentials.email = "testuser@gmail.com"; 46 options->credentials.sync_token = "token"; 47 options->restored_key_for_bootstrapping = ""; 53 options->internal_components_factory->GetSwitches(); 54 options->internal_components_factory.reset( 58 SyncBackendHostImpl::InitCore(options.Pass());
|
/external/chromium_org/chrome/installer/linux/sysroot_scripts/ |
install-debian.wheezy.sysroot.py | 38 if options.arch not in ['amd64', 'i386']: 39 print 'Unknown architecture: %s' % options.arch 42 if options.linux_only: 74 if host_arch != options.arch: 81 if options.arch == 'amd64': 94 (options.arch, sysroot) 97 print 'Installing Debian Wheezy %s root image: %s' % (options.arch, sysroot) 112 parser = optparse.OptionParser('usage: %prog [OPTIONS]') 118 options, args = parser.parse_args() 119 sys.exit(main(options)) [all...] |
/external/chromium_org/net/cookies/ |
canonical_cookie_unittest.cc | 83 CookieOptions options; local 86 CanonicalCookie::Create(url, "A=2", creation_time, options)); 95 cookie.reset(CanonicalCookie::Create(url2, "B=1", creation_time, options)); 106 CanonicalCookie::Create(url, "A=2; Secure", creation_time, options)); 112 CanonicalCookie::Create(url, "A=2; HttpOnly", creation_time, options)); 147 CookieOptions options; local 152 url, cookie_line, creation_time, options)); 159 options.set_server_time(creation_time - base::TimeDelta::FromHours(1)); 161 url, cookie_line, creation_time, options)); 168 options.set_server_time(creation_time + base::TimeDelta::FromHours(1)) 266 CookieOptions options; local 299 CookieOptions options; local 323 CookieOptions options; local [all...] |
/external/chromium_org/tools/protoc_wrapper/ |
protoc_wrapper.py | 83 (options, args) = parser.parse_args(sys.argv) 87 proto_path = options.proto_in_dir 88 if options.use_system_protobuf == 1: 94 os.path.join(proto_path, options.proto_in_file)] 99 if options.use_system_protobuf == 1: 104 if not options.extra_header or not options.generated_header: 106 return ModifyHeader(options.generated_header, options.extra_header)
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_filter.py | 17 def __init__(self, options): 18 if options.page_filter: 20 self._page_regex = re.compile(options.page_filter) 26 if options.page_filter_exclude: 28 self._page_exclude_regex = re.compile(options.page_filter_exclude) 36 if options.page_label_filter: 37 self._include_labels = options.page_label_filter.split(',') 38 if options.page_label_filter_exclude: 39 self._exclude_labels = options.page_label_filter_exclude.split(',') 61 group = optparse.OptionGroup(parser, 'Page filtering options') [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoSource.java | 129 public Bitmap next(BitmapFactory.Options options, int longSide, int shortSide) { 143 image = load(imageData, options, longSide, shortSide); 153 options, longSide, shortSide); 159 public Bitmap load(ImageData data, BitmapFactory.Options options, int longSide, int shortSide) { 168 options.inJustDecodeBounds = true; 169 options.inSampleSize = 1; 170 image = BitmapFactory.decodeStream(new BufferedInputStream(bis), null, options); 171 int rawLongSide = Math.max(options.outWidth, options.outHeight) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
rule-tracer.rb | 21 def initialize( options = {} ) 22 @input = options[ :input ] 24 @spaces_per_indent = options[ :spaces_per_indent ] || 2 25 @device = options[ :device ] || options[ :output ] || $stderr
|
/external/chromium_org/build/ |
env_dump.py | 26 options, args = parser.parse_args() 27 if options.dump_mode: 28 if args or options.output_json: 32 if not options.output_json: 51 with open(options.output_json, 'w') as f:
|
/external/chromium_org/chrome/browser/extensions/api/file_system/ |
file_system_api_unittest.cc | 71 std::vector<linked_ptr<AcceptOption> > options; local 72 options.push_back(linked_ptr<AcceptOption>(BuildAcceptOption( 76 base::FilePath::StringType(), &options, &acceptsAllTypes); 90 options.clear(); 91 options.push_back(linked_ptr<AcceptOption>( 95 ToStringType(".jso"), &options, &acceptsAllTypes); 100 options.clear(); 101 options.push_back(linked_ptr<AcceptOption>( 103 options.push_back(linked_ptr<AcceptOption>( 107 base::FilePath::StringType(), &options, &acceptsAllTypes) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
bluetooth_pair_device.js | 5 var OptionsPage = options.OptionsPage; 6 var BluetoothPairing = options.BluetoothPairing; 7 var FakeBluetoothOverlayParent = options.FakeBluetoothOverlayParent; 29 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox); 30 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); 31 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); 32 cr.ui.decorate('input[pref][type=range]', options.PrefRange); 33 cr.ui.decorate('select[pref]', options.PrefSelect); 34 cr.ui.decorate('input[pref][type=text]', options.PrefTextField); 35 cr.ui.decorate('input[pref][type=url]', options.PrefTextField) [all...] |
proxy_settings.js | 5 var OptionsPage = options.OptionsPage; 6 var Preferences = options.Preferences; 7 var DetailsInternetPage = options.internet.DetailsInternetPage; 17 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox); 18 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); 19 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); 20 cr.ui.decorate('input[pref][type=range]', options.PrefRange); 21 cr.ui.decorate('select[pref]', options.PrefSelect); 22 cr.ui.decorate('input[pref][type=text]', options.PrefTextField); 23 cr.ui.decorate('input[pref][type=url]', options.PrefTextField) [all...] |
/external/chromium_org/chromeos/dbus/ |
bluetooth_profile_manager_client.cc | 21 BluetoothProfileManagerClient::Options::Options() 28 BluetoothProfileManagerClient::Options::~Options() { 43 const Options& options, 62 dict_writer.AppendVariantOfString(options.name); 66 if (options.service.length()) { 70 dict_writer.AppendVariantOfString(options.service); 75 if (options.role != SYMMETRIC) [all...] |
/external/chromium_org/components/breakpad/tools/ |
generate_breakpad_symbols.py | 110 def GetSharedLibraryDependencies(options, binary, exe_path): 122 build_dir = os.path.abspath(options.build_dir) 140 def GenerateSymbols(options, binaries): 150 if options.verbose: 154 syms = GetCommandOutput([GetDumpSymsBinary(options.build_dir), '-r', 157 output_path = os.path.join(options.symbols_dir, module_line.group(2), 170 for _ in range(options.jobs): 194 (options, _) = parser.parse_args() 196 if not options.symbols_dir: 200 if not options.build_dir [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
abstractsequencedcommand.py | 42 AbstractDeclarativeCommand.__init__(self, self._sequence.options()) 44 def _prepare_state(self, options, args, tool): 47 def execute(self, options, args, tool): 49 state = self._prepare_state(options, args, tool) 54 self._sequence.run_and_handle_errors(tool, options, state)
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
idnaref.h | 42 * @param options A bit set of options: 65 int32_t options, 81 * @param options A bit set of options: 104 int32_t options, 118 * and then convert. This function does not offer that level of granularity. The options once 125 * @param options A bit set of options: 148 int32_t options, [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
wrap_yasm.py | 20 def mk_tao(CPPFLAGS = "", CPP = "gcc -E", modname = '_yasm', oname = None, YASM_DIR = ".", **options): 37 CPPFLAGS=CPPFLAGS, CPP=CPP, **options) 45 options = {} 49 options[key]=val 50 mk_tao(**options)
|
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
tab_test_case.py | 17 options = options_for_unittests.GetCopy() 19 self.CustomizeBrowserOptions(options) 22 options.AppendExtraBrowserArgs(self._extra_browser_args) 24 browser_to_create = browser_finder.FindBrowser(options) 43 def CustomizeBrowserOptions(self, options): 44 """Override to add test-specific options to the BrowserOptions object"""
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
AnalysisManager.h | 45 AnalyzerOptions &options; member in class:clang::ento::AnalysisManager 53 AnalyzerOptions &Options); 70 return options; 102 return options.visualizeExplodedGraphWithGraphViz || 103 options.visualizeExplodedGraphWithUbiGraph; 107 return options.getIPAMode() != IPAK_None;
|
/external/icu4c/test/intltest/ |
idnaref.h | 42 * @param options A bit set of options: 64 int32_t options, 80 * @param options A bit set of options: 102 int32_t options, 116 * and then convert. This function does not offer that level of granularity. The options once 123 * @param options A bit set of options: 145 int32_t options, [all...] |
/external/openssh/ |
platform.c | 38 extern ServerOptions options; 117 if (options.use_pam) { 145 if (options.use_pam) { 175 if (options.chroot_directory != NULL && 176 strcasecmp(options.chroot_directory, "none") != 0)
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
__init__.py | 165 def RegenerateAppendFlag(flag, values, predicate, env_name, options): 169 an initial list of options, then the options that were specified on the 176 if options.use_environment and env_name: 187 def RegenerateFlags(options): 188 """Given a parsed options object, and taking the environment variables into 189 account, returns a list of flags that should regenerate an equivalent options 192 Any path options will be normalized relative to depth. 198 path = gyp.common.FixIfRelativePath(path, options.depth) 209 for name, metadata in options._regeneration_metadata.iteritems() [all...] |
/development/testrunner/test_defs/ |
instrumentation_test.py | 86 def GetBuildDependencies(self, options): 87 if options.coverage_target_path: 88 return [options.coverage_target_path] 91 def Run(self, options, adb): 97 options: command line options to provide to test run 105 if options.test_class is not None: 106 test_class = options.test_class.lstrip() 109 if options.test_method is not None: 110 test_class = "%s#%s" % (test_class, options.test_method [all...] |