Home
last modified time | relevance | path

Searched refs:auto (Results 1 – 25 of 1022) sorted by relevance

12345678910>>...41

/external/v8/tools/clang/plugins/tests/
Dauto_raw_pointer.txt1 auto_raw_pointer.cpp:20:3: warning: [chromium-style] auto variable type must not deduce to a raw po…
2 auto raw_int_ptr = &integer;
4 auto*
5 auto_raw_pointer.cpp:21:3: warning: [chromium-style] auto variable type must not deduce to a raw po…
6 const auto const_raw_int_ptr = &integer;
8 auto* const
9 auto_raw_pointer.cpp:22:3: warning: [chromium-style] auto variable type must not deduce to a raw po…
10 const auto& const_raw_int_ptr_ref = &integer;
12 auto* const
13 auto_raw_pointer.cpp:27:3: warning: [chromium-style] auto variable type must not deduce to a raw po…
[all …]
/external/ltp/testscripts/
Dautofs1.sh124 echo "/AUTOFS/MEDIA /etc/auto.media" > /etc/auto.master
125 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
140 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
150 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
163 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
183 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
206 cp /etc/auto.master /etc/auto.media /AUTOFS/MEDIA/floppy/test
220 echo "/AUTOFS/DISK /etc/auto.disk" >> /etc/auto.master
221 echo "disk -fstype=auto,rw,sync :$disk_partition " > /etc/auto.disk
[all …]
Dautofs4.sh116 echo "/AUTOFS/MEDIA /etc/auto.media " > /etc/auto.master
117 echo "floppy -fstype=ext2 :$floppy_dev" > /etc/auto.media
132 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
142 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
154 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
165 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
174 rm -rf /etc/auto.master /etc/auto.media /AUTOFS
195 cp /etc/auto.master /etc/auto.media /AUTOFS/MEDIA/floppy/test
209 echo "/AUTOFS/DISK /etc/auto.disk " >> /etc/auto.master
210 echo "disk -fstype=ext2 :$disk_partition " > /etc/auto.disk
[all …]
/external/guice/core/test/com/googlecode/guice/
DGuiceTck.java27 import org.atinject.tck.auto.Car;
28 import org.atinject.tck.auto.Convertible;
29 import org.atinject.tck.auto.Drivers;
30 import org.atinject.tck.auto.DriversSeat;
31 import org.atinject.tck.auto.Engine;
32 import org.atinject.tck.auto.FuelTank;
33 import org.atinject.tck.auto.Seat;
34 import org.atinject.tck.auto.Tire;
35 import org.atinject.tck.auto.V8Engine;
36 import org.atinject.tck.auto.accessories.Cupholder;
[all …]
/external/clang/test/SemaObjCXX/
Darc-0x.mm8 // Deduction with 'auto'.
19 auto a = [[A alloc] init];
22 auto a2([[A alloc] init]);
25 __strong id *idp = new auto(obj); function
28 for (auto x : array) { // expected-warning{{'auto' deduced as 'id' in declaration of 'x'}}
33 } @catch (auto e) { // expected-error {{'auto' not allowed in exception declaration}}
60 // warn when initializing an 'auto' variable with an 'id' initializer expression
63 auto x = obj; // expected-warning{{'auto' deduced as 'id' in declaration of 'x'}}
74 auto x = param; // no-warning
75 auto y = obj; // expected-warning{{'auto' deduced as 'id' in declaration of 'y'}}
[all …]
/external/dagger2/
DAndroid.mk74 dagger2-auto-common-host \
75 dagger2-auto-factory-host \
76 dagger2-auto-service-host \
77 dagger2-auto-value-host \
84 dagger2-auto-common-host \
85 dagger2-auto-factory-host \
86 dagger2-auto-service-host \
87 dagger2-auto-value-host \
91 com.google.auto.factory.processor.AutoFactoryProcessor \
92 com.google.auto.service.processor.AutoServiceProcessor \
[all …]
DAndroid.bp16 name: "dagger2-auto-common-host",
17 jars: ["lib/auto-common-1.0-20151022.071545-39.jar"],
21 name: "dagger2-auto-factory-host",
22 jars: ["lib/auto-factory-1.0-20150915.183854-35.jar"],
26 name: "dagger2-auto-service-host",
27 jars: ["lib/auto-service-1.0-rc2.jar"],
31 name: "dagger2-auto-value-host",
32 jars: ["lib/auto-value-1.4.1.jar"],
/external/harfbuzz_ng/m4/
Dax_cxx_compile_stdcxx.m4254 auto
266 auto ac = c;
267 auto av = v;
268 auto sumi = ac + av + 'x';
269 auto sumf = ac + av + 1.0;
360 auto lambda1 = [](){};
361 auto lambda2 = lambda1;
369 auto a = [](int i, int j){ return i + j; }(1, 2);
370 auto b = []() -> int { return '0'; }();
371 auto c = [=](){ return a + b; }();
[all …]
/external/tensorflow/tensorflow/docs_src/api_guides/cc/
Dguide.md37 auto A = Const(root, { {3.f, 2.f}, {-1.f, 0.f} });
39 auto b = Const(root, { {3.f, 5.f} });
41 auto v = MatMul(root.WithOpName("v"), A, b, MatMul::TransposeB(true));
147 auto m = MatMul(scope, a, b);
164 auto m = MatMul(scope, a, b, MatMul::TransposeA(true));
171 auto m = MatMul(scope, a, b, MatMul::TransposeA(true).TransposeB(true));
174 auto m = MatMul(scope, a, b, MatMul::Attrs().TransposeA(true).TransposeB(true));
185 auto m = MatMul(scope, x, W);
186 auto sum = Add(scope, m, bias);
195 auto u = Unique(scope, a);
[all …]
/external/v8/src/compiler/
DSTYLE18 Use of C++11 auto keyword
20 Use auto to avoid type names that are just clutter. Continue to use manifest
21 type declarations when it helps readability, and never use auto for anything
22 but local variables, in particular auto should only be used where it is obvious
25 for (auto block : x->blocks()) // clearly a Block of some kind
26 for (auto instr : x->instructions()) // clearly an Instruction of some kind
28 for (auto b : x->predecessors()) // less clear, better to make it explicit
/external/lisa/libs/utils/android/
Dscreen.py28 def set_orientation(target, auto=True, portrait=None): argument
33 acc_mode = 1 if auto else 0
67 def set_brightness(target, auto=True, percent=None): argument
72 bri_mode = 1 if auto else 0
95 def set_dim(target, auto=True): argument
100 dim_mode = 1 if auto else 0
101 dim_mode_str = 'ON' if auto else 'OFF'
/external/clang/test/PCH/
Dcxx1y-lambdas.mm9 return [](auto z, int y = 0) { return z + y; }(5);
14 auto lambda = [](auto z) { return z + z; };
19 auto lambda = [](auto N) -> int {
32 auto lambda = [=](int m) { return n + m; };
/external/toolchain-utils/
Dlock_machine_test.py19 file_lock_machine.Machine(machine, auto=True).Lock(exclusive=True)
33 mach = file_lock_machine.Machine('qqqraymes.mtv', auto=True)
57 mach = file_lock_machine.Machine('chrotomation.mtv', auto=True)
73 mach = file_lock_machine.Machine('atree.mtv', auto=True)
87 mach = file_lock_machine.Machine('testExclusiveState', auto=True)
94 mach = file_lock_machine.Machine('lockgone', auto=True)
102 mach = file_lock_machine.Machine('other_lock', auto=True)
112 mach = file_lock_machine.Machine('other_unlock', auto=True)
Dfile_lock_machine.py69 self.auto = desc['auto']
76 self.auto = False
85 'Reason: %s' % self.reason, 'Auto: %s' % self.auto
126 file_lock.getDescription().reason, file_lock.getDescription().auto))
160 if self._description.exclusive and self._description.auto:
193 def __init__(self, lock_file, auto=True): argument
197 self._auto = auto
219 lock.auto = self._auto
240 if lock.auto != self._auto:
271 def __init__(self, name, locks_dir=LOCKS_DIR, auto=True): argument
[all …]
/external/eigen/doc/
DPitfalls.dox9 \section TopicPitfalls_auto_keyword C++11 and the auto keyword
11 …o not use the auto keywords with Eigen's expressions, unless you are 100% sure about what you are …
15 auto C = A*B;
23 auto C = ((A+B).eval()).transpose();
29 auto C = u + (A*v).normalized();
34 auto C = (u + (A*v).normalized()).eval();
/external/harfbuzz_ng/
Dconfigure.ac147 [AS_HELP_STRING([--with-glib=@<:@yes/no/auto@:>@],
148 [Use glib @<:@default=auto@:>@])],,
149 [with_glib=auto])
167 [AS_HELP_STRING([--with-gobject=@<:@yes/no/auto@:>@],
206 [AS_HELP_STRING([--with-cairo=@<:@yes/no/auto@:>@],
207 [Use cairo @<:@default=auto@:>@])],,
208 [with_cairo=auto])
233 [AS_HELP_STRING([--with-fontconfig=@<:@yes/no/auto@:>@],
234 [Use fontconfig @<:@default=auto@:>@])],,
235 [with_fontconfig=auto])
[all …]
/external/libexif/m4m/
DMakefile.in43 $(top_srcdir)/m4m/stdint.m4 $(top_srcdir)/auto-m4/gettext.m4 \
44 $(top_srcdir)/auto-m4/iconv.m4 $(top_srcdir)/auto-m4/lib-ld.m4 \
45 $(top_srcdir)/auto-m4/lib-link.m4 \
46 $(top_srcdir)/auto-m4/lib-prefix.m4 \
47 $(top_srcdir)/auto-m4/libtool.m4 \
48 $(top_srcdir)/auto-m4/ltoptions.m4 \
49 $(top_srcdir)/auto-m4/ltsugar.m4 \
50 $(top_srcdir)/auto-m4/ltversion.m4 \
51 $(top_srcdir)/auto-m4/lt~obsolete.m4 \
52 $(top_srcdir)/auto-m4/nls.m4 $(top_srcdir)/auto-m4/po.m4 \
[all …]
/external/libexif/binary/
DMakefile.in43 $(top_srcdir)/m4m/stdint.m4 $(top_srcdir)/auto-m4/gettext.m4 \
44 $(top_srcdir)/auto-m4/iconv.m4 $(top_srcdir)/auto-m4/lib-ld.m4 \
45 $(top_srcdir)/auto-m4/lib-link.m4 \
46 $(top_srcdir)/auto-m4/lib-prefix.m4 \
47 $(top_srcdir)/auto-m4/libtool.m4 \
48 $(top_srcdir)/auto-m4/ltoptions.m4 \
49 $(top_srcdir)/auto-m4/ltsugar.m4 \
50 $(top_srcdir)/auto-m4/ltversion.m4 \
51 $(top_srcdir)/auto-m4/lt~obsolete.m4 \
52 $(top_srcdir)/auto-m4/nls.m4 $(top_srcdir)/auto-m4/po.m4 \
[all …]
/external/clang/test/Modules/
Dimplementation-of-module.m2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import …
5 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import …
9 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import …
12 …eader -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import %s -I %S/Inp…
14 …eader -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import %s -I %S/Inp…
/external/clang/test/SemaObjC/
Ddefault-synthesize-3.m66 @property (readwrite) char isFoo; // expected-warning {{auto property synthesis will not synthesize…
67 @property char Property1; // expected-warning {{auto property synthesis will not synthesize propert…
69 @property (readwrite) char isNotFree; // expected-warning {{auto property synthesis will not synthe…
107 @property (assign,readwrite) id prop; // expected-warning {{auto property synthesis will not synthe…
108 @property (assign,readwrite) id prop1; // expected-warning {{auto property synthesis will not synth…
109 @property (assign,readwrite) id prop2; // expected-warning {{auto property synthesis will not synth…
175 …ected-warning {{auto property synthesis will not synthesize property 'muahahaha' declared in proto…
181 …ected-warning {{auto property synthesis will not synthesize property 'muahahaha' declared in proto…
Ddefault-synthesize-1.m11 @property int howMany; // expected-warning {{auto property synthesis is synthesizing property not e…
12 @property (retain) NSString* what; // expected-warning {{auto property synthesis is synthesizing pr…
21 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing …
22 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is syn…
41 @property (nonatomic) int howMany; // expected-warning {{auto property synthesis is synthesizing pr…
42 @property (nonatomic, retain) NSString* what; // expected-warning {{auto property synthesis is synt…
121 …// expected-warning {{auto property synthesis is synthesizing property not explicitly synthesized}}
135 @property (nonatomic, copy, readonly) NSString *description; // expected-warning {{auto property sy…
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
Dstruct_data_view_definition.tmpl9 auto pointer = data_->header_.version >= {{pf.min_version}}
12 auto pointer = &data_->{{name}};
21 auto pointer = data_->header_.version >= {{pf.min_version}}
24 auto pointer = data_->{{name}}.Get();
Dstruct_data_view_declaration.tmpl26 auto* pointer = data_->header_.version >= {{pf.min_version}}
29 auto* pointer = &data_->{{name}};
42 auto* pointer = data_->header_.version >= {{pf.min_version}}
45 auto* pointer = data_->{{name}}.Get();
55 auto data_value = data_->header_.version >= {{pf.min_version}}
58 auto data_value = data_->{{name}};
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DTestDriver.cs57 using (AutoRunner auto = new AutoRunner()) in StartAutoRunner()
59 auto.Run(); in StartAutoRunner()
60 auto.ReportToHtml(); in StartAutoRunner()
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/tck/
DSeatModule.java20 import org.atinject.tck.auto.Drivers;
21 import org.atinject.tck.auto.DriversSeat;
22 import org.atinject.tck.auto.Seat;

12345678910>>...41