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

1 2 3 4 5 6 7 891011

  /external/v8/src/
platform-openbsd.cc 370 Thread::Thread(Isolate* isolate, const Options& options)
373 stack_size_(options.stack_size) {
374 set_name(options.name);
platform-cygwin.cc 374 Thread::Thread(Isolate* isolate, const Options& options)
377 stack_size_(options.stack_size) {
378 set_name(options.name);
platform-freebsd.cc 425 Thread::Thread(Isolate* isolate, const Options& options)
428 stack_size_(options.stack_size) {
429 set_name(options.name);
platform-macos.cc 401 Thread::Thread(Isolate* isolate, const Options& options)
404 stack_size_(options.stack_size) {
405 set_name(options.name);
platform-solaris.cc 384 Thread::Thread(Isolate* isolate, const Options& options)
387 stack_size_(options.stack_size) {
388 set_name(options.name);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.cpp 65 base::Thread::Options options;
66 options.message_loop_type = MessageLoop::TYPE_IO;
67 if (!networkThread->StartWithOptions(options)) {
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queries.py 51 options = [
52 steps.Options.git_commit,
54 AbstractDeclarativeCommand.__init__(self, options=options)
56 def execute(self, options, args, tool):
57 reviewers = tool.checkout().suggested_reviewers(options.git_commit)
65 def execute(self, options, args, tool):
76 def execute(self, options, args, tool):
87 options = [
90 AbstractDeclarativeCommand.__init__(self, options=options
    [all...]
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 63 class Options {
65 Options() : emitGitCommands(false), emitPerforceCommands(false),
97 Options options; variable
130 bool Options::finish()
132 ::assert_debug = options.debug;
768 if (options.emitPerforceCommands)
880 if (options.debug)
    [all...]
  /frameworks/base/media/libstagefright/chromium_http/
support.cpp 104 base::Thread::Options options; local
105 options.message_loop_type = MessageLoop::TYPE_IO;
106 CHECK(gNetworkThread->StartWithOptions(options));
279 const net::CookieOptions &options,
  /build/tools/releasetools/
common.py 40 class Options(object): pass
41 OPTIONS = Options()
42 OPTIONS.search_path = "out/host/linux-x86"
43 OPTIONS.verbose = False
44 OPTIONS.tempfiles = []
45 OPTIONS.device_specific = None
46 OPTIONS.extras = {}
47 OPTIONS.info_dict = None
60 if OPTIONS.verbose
170 options = None variable in class:LoadRecoveryFSTab.Partition
175 options = pieces[4] variable in class:LoadRecoveryFSTab.Partition
178 options = pieces[3] variable in class:LoadRecoveryFSTab.Partition
183 options = options.split(",") variable in class:LoadRecoveryFSTab.Partition
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 49 private BitmapFactory.Options mOptions;
56 mOptions = new BitmapFactory.Options();
  /external/llvm/tools/llvm-config/
llvm-config.in.in 11 # Synopsis: Prints out compiler options needed to build against an installed
14 # Syntax: llvm-config OPTIONS... [COMPONENTS...]
143 # If no options were specified, fail.
178 Options:
  /external/ppp/pppd/plugins/radius/
radius.c 59 static option_t Options[] = {
168 add_options(Options);
235 * popts -- set to a list of additional pppd options
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java 630 * @param options the decoding options, can be set to null
635 int placeholderImageResource, BitmapFactory.Options options) {
637 return loadPlaceholderPhoto(placeholderImageResource, context, options);
641 Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null;
643 bm = loadPlaceholderPhoto(placeholderImageResource, context, options);
649 BitmapFactory.Options options) {
654 placeholderImageResource, options);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 860 static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options();
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 139 private final BitmapFactory.Options mOptionsARGB = new BitmapFactory.Options();
  /external/bison/doc/
refcard.tex 315 Options can be used as: \kbd{bison {\it options} {\it filename}}
317 \section{Command Line Options}
  /external/chromium/base/files/
file_path_watcher_browsertest.cc 154 base::Thread::Options options(MessageLoop::TYPE_IO, 0);
155 ASSERT_TRUE(file_thread_.StartWithOptions(options));
  /external/chromium/chrome/browser/safe_browsing/
malware_details_unittest.cc 177 base::Thread::Options(MessageLoop::TYPE_IO, 0)));
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 26 $warning = "###################\n# WARNING: This table is generated by filterRFC3454.pl tool with\n# options: @ARGV \n###################\n\n";
638 Options:
  /external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 29 # See docs for more configuration options.
80 # Options to specify which transformations to make:
104 # Do everything, turn all options on.
111 # Do everything, turn all options on, use old school dash shorthand.
118 # Do everything, turn all options on, use inverted old school dash shorthand.
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java     [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 679 private Bitmap loadPlaceholderPhoto(BitmapFactory.Options options) {
684 mNoPhotoResource, options);
  /dalvik/dexdump/
DexDump.cpp 60 /* command-line options */
61 struct Options {
74 struct Options gOptions;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 365 BitmapFactory.Options bmpOptions = new BitmapFactory.Options();
    [all...]

Completed in 1042 milliseconds

1 2 3 4 5 6 7 891011