HomeSort by relevance Sort by last modified time
    Searched full:opts (Results 176 - 200 of 1454) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
rtcd.pl 13 my %opts = ();
27 \%opts,
34 if (!defined($opts{$opt})) {
47 open CONFIG_FILE, $opts{config} or
48 die "Error opening config file '$opts{config}': $!\n";
201 my $include_guard = uc($opts{sym})."_H_";
223 void $opts{sym}(void);
357 if ($opts{arch} eq 'x86') {
360 } elsif ($opts{arch} eq 'x86_64') {
365 } elsif ($opts{arch} eq 'mips32')
    [all...]
  /external/curl/docs/libcurl/
Makefile.am 25 SUBDIRS = opts
100 cd opts; make html
106 cd opts; make pdf
121 check-easy: $(srcdir)/curl_easy_setopt.3 $(srcdir)/opts/CURLOPT*.3
122 OPTS="$$(ls $(srcdir)/opts/CURLOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" && \
123 for opt in $$OPTS; do grep "^\.IP $$opt$$" $(srcdir)/curl_easy_setopt.3 >/dev/null || echo Missing $$opt; done > $@
125 check-multi: $(srcdir)/curl_multi_setopt.3 $(srcdir)/opts/CURLMOPT*.3
126 OPTS="$$(ls $(srcdir)/opts/CURLMOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" &&
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
BitmapUtil.java 50 final BitmapFactory.Options opts = new BitmapFactory.Options(); local
51 opts.inJustDecodeBounds = true;
52 BitmapFactory.decodeByteArray(src, 0, src.length, opts);
53 if (opts.mCancel || opts.outWidth == -1 || opts.outHeight == -1) {
56 opts.inSampleSize = Math.min(opts.outWidth / w, opts.outHeight / h);
57 opts.inJustDecodeBounds = false
    [all...]
  /external/autotest/client/tests/kernbench/
kernbench.old 14 opts, args = getopt.getopt(argv, "hj:i:c:k:", ["help"])
21 for o, a in opts:
  /external/iproute2/tipc/
cmdl.h 37 struct opt *get_opt(struct opt *opts, char *key);
38 int parse_opts(struct opt *opts, struct cmdl *cmdl);
  /external/libnl/tests/
Makefile 12 ifeq ($(shell [ ! -r ../Makefile.opts ] && echo 1),)
13 include ../Makefile.opts
  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.h 16 namespace opts { namespace
18 } // namespace opts
  /external/llvm/utils/git/
find-rev 11 (opts, args) = parser.parse_args()
24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapFactoryTest.java 30 BitmapFactory.Options opts = new BitmapFactory.Options(); local
31 Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an_image, opts);
35 assertEquals(100, opts.outWidth);
36 assertEquals(100, opts.outHeight);
70 BitmapFactory.Options opts = new BitmapFactory.Options(); local
71 Bitmap bitmap = BitmapFactory.decodeResource(Robolectric.application.getResources(), R.drawable.an_image, opts);
75 assertEquals(123, opts.outWidth);
76 assertEquals(456, opts.outHeight);
  /external/webrtc/webrtc/p2p/base/
basicpacketsocketfactory.h 35 int opts) override;
40 int opts) override;
packetsocketfactory.h 39 int opts) = 0;
48 int opts) = 0;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/
RecentsTvImpl.java 71 ActivityOptions opts = ActivityOptions.makeCustomAnimation(mContext, -1, -1); local
72 startRecentsActivity(runningTask, opts, false /* fromHome */, false /* fromThumbnail*/);
81 ActivityOptions opts = getThumbnailTransitionActivityOptionsForTV(runningTask, local
83 if (opts != null) {
84 startRecentsActivity(runningTask, opts, false /* fromHome */, true /* fromThumbnail */);
98 ActivityOptions opts, boolean fromHome, boolean fromThumbnail) {
113 if (opts != null) {
114 mContext.startActivityAsUser(intent, opts.toBundle(), UserHandle.CURRENT);
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 25 if not opts.showIDs:
40 if opts.maxDepth is not None and depth >= opts.maxDepth:
62 global opts
72 (opts, args) = parser.parse_args()
  /external/selinux/libselinux/src/
label_internal.h 23 const struct selinux_opt *opts,
26 const struct selinux_opt *opts,
29 const struct selinux_opt *opts,
32 const struct selinux_opt *opts,
35 const struct selinux_opt *opts,
  /frameworks/base/libs/hwui/tests/macrobench/
TestSceneRunner.cpp 65 void run(const TestScene::Info& info, const TestScene::Options& opts) {
69 std::unique_ptr<TestScene> scene(info.createScene(opts));
104 ModifiedMovingAverage<double> avgMs(opts.reportFrametimeWeight);
106 for (int i = 0; i < opts.count; i++) {
115 if (opts.reportFrametimeWeight) {
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 58 namespace opts { namespace
199 if (opts::DumpHeaders) {
222 if (opts::DumpHeaders)
235 if (opts::DumpHeaders)
248 if (opts::DumpHeaders) {
334 if (opts::DumpHeaders)
336 if (opts::DumpStreamSizes)
341 if (opts::DumpStreamBlocks) {
354 StringRef DumpStreamStr = opts::DumpStreamData;
381 if (opts::DumpHeaders || !opts::DumpStreamData.empty())
    [all...]
  /external/selinux/prebuilts/bin/
sesearch.py 82 opts = parser.add_argument_group("Search options") variable
83 opts.add_argument("-eb", action="store_true", dest="boolean_equal",
85 opts.add_argument("-ep", action="store_true", dest="perms_equal",
87 opts.add_argument("-ds", action="store_false", dest="source_indirect",
89 opts.add_argument("-dt", action="store_false", dest="target_indirect",
91 opts.add_argument("-rs", action="store_true", dest="source_regex",
93 opts.add_argument("-rt", action="store_true", dest="target_regex",
95 opts.add_argument("-rc", action="store_true", dest="tclass_regex",
97 opts.add_argument("-rd", action="store_true", dest="default_regex",
99 opts.add_argument("-rb", action="store_true", dest="boolean_regex"
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
SnapshotDialogFragment.java 68 BitmapFactory.Options opts = new BitmapFactory.Options(); local
69 opts.inJustDecodeBounds = true;
71 jpegImage.length, opts);
73 if (opts.outWidth > 1024 || opts.outHeight > 1024) {
74 int scaleFactorX = opts.outWidth / 1024 + 1;
75 int scaleFactorY = opts.outHeight / 1024 + 1;
78 opts.inSampleSize = scaleFactor;
80 opts.inJustDecodeBounds = false;
82 jpegImage.length, opts);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 65 opts = {u'???': True, u'á': False}
66 orig_opts = opts.copy()
68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False})
69 # opts should remain unchanged
70 self.assertEqual(opts, orig_opts)
105 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á'))) // 2
106 self.assertEqual(amount_opts, len(opts) - 1)
109 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á', 'b'))) // 2
110 self.assertEqual(amount_opts, len(opts) - 1)
113 self.assertFalse(ttk._format_optdict(opts, ignore=opts.keys())
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 65 opts = {u'???': True, u'á': False}
66 orig_opts = opts.copy()
68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False})
69 # opts should remain unchanged
70 self.assertEqual(opts, orig_opts)
105 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á'))) // 2
106 self.assertEqual(amount_opts, len(opts) - 1)
109 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á', 'b'))) // 2
110 self.assertEqual(amount_opts, len(opts) - 1)
113 self.assertFalse(ttk._format_optdict(opts, ignore=opts.keys())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 65 opts = {u'???': True, u'á': False}
66 orig_opts = opts.copy()
68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False})
69 # opts should remain unchanged
70 self.assertEqual(opts, orig_opts)
105 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á'))) // 2
106 self.assertEqual(amount_opts, len(opts) - 1)
109 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á', 'b'))) // 2
110 self.assertEqual(amount_opts, len(opts) - 1)
113 self.assertFalse(ttk._format_optdict(opts, ignore=opts.keys())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_functions.py 65 opts = {u'???': True, u'á': False}
66 orig_opts = opts.copy()
68 check_against(ttk._format_optdict(opts), {u'-???': True, u'-á': False})
69 # opts should remain unchanged
70 self.assertEqual(opts, orig_opts)
105 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á'))) // 2
106 self.assertEqual(amount_opts, len(opts) - 1)
109 amount_opts = len(ttk._format_optdict(opts, ignore=(u'á', 'b'))) // 2
110 self.assertEqual(amount_opts, len(opts) - 1)
113 self.assertFalse(ttk._format_optdict(opts, ignore=opts.keys())
    [all...]
  /external/opencv3/samples/python2/
deconvolution.py 68 opts, args = getopt.getopt(sys.argv[1:], '', ['circle', 'angle=', 'd=', 'snr='])
69 opts = dict(opts) variable
88 defocus = '--circle' in opts
116 cv2.createTrackbar('angle', win, int(opts.get('--angle', 135)), 180, update)
117 cv2.createTrackbar('d', win, int(opts.get('--d', 22)), 50, update)
118 cv2.createTrackbar('SNR (db)', win, int(opts.get('--snr', 25)), 50, update)
  /external/skia/gyp/
opts.gyp 5 # Gyp file for building opts target.
7 # Source lists live in opts.gypi. This makes it easier to maintain our Chrome GYP/GN setup.
10 'includes': [ 'common.gypi', 'opts.gypi' ],
13 # Generally we shove things into one 'opts' target conditioned on platform.
19 'target_name': 'opts',
30 '../src/opts',
187 '../src/opts',
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 76 RewriteOptions opts = RewriteOptions()) const;
78 RewriteOptions opts = RewriteOptions()) const;
121 RewriteOptions opts = RewriteOptions());
125 RewriteOptions opts = RewriteOptions()) {
126 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);
130 bool RemoveText(SourceRange range, RewriteOptions opts = RewriteOptions()) {
131 return RemoveText(range.getBegin(), getRangeSize(range, opts), opts);

Completed in 4913 milliseconds

1 2 3 4 5 6 78 91011>>