Home
last modified time | relevance | path

Searched refs:its (Results 1 – 25 of 2492) sorted by relevance

12345678910>>...100

/external/mesa3d/src/gallium/state_trackers/clover/core/
Dbase.hpp144 step(F op, S state, Its its, Args... args) { in step()
146 op, state, its, *(std::get<N>(its)++), args...); in step()
154 step(F op, S state, Its its, Args... args) { in step()
155 return op(state, *(std::get<0>(its)++), args...); in step()
165 step(F op, __empty state, Its its, Args... args) { in step()
166 return op(*(std::get<0>(its)++), args...); in step()
188 for_each(F op, It0 it0, It0 end0, Its... its) { in for_each() argument
191 op, {}, std::tie(it0, its...)); in for_each()
208 map(F op, It0 it0, It0 end0, Its... its) { in map() argument
214 ::step(op, {}, std::tie(it0, its...))); in map()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
Dbase.hpp144 step(F op, S state, Its its, Args... args) { in step()
146 op, state, its, *(std::get<N>(its)++), args...); in step()
154 step(F op, S state, Its its, Args... args) { in step()
155 return op(state, *(std::get<0>(its)++), args...); in step()
165 step(F op, __empty state, Its its, Args... args) { in step()
166 return op(*(std::get<0>(its)++), args...); in step()
188 for_each(F op, It0 it0, It0 end0, Its... its) { in for_each() argument
191 op, {}, std::tie(it0, its...)); in for_each()
208 map(F op, It0 it0, It0 end0, Its... its) { in map() argument
214 ::step(op, {}, std::tie(it0, its...))); in map()
[all …]
/external/libnfc-nxp/Linux_x86/
DphOsalNfc_Timer.c214 struct itimerspec its; in phOsalNfc_Timer_Start() local
223 its.it_interval.tv_sec = 0; in phOsalNfc_Timer_Start()
224 its.it_interval.tv_nsec = 0; in phOsalNfc_Timer_Start()
225 its.it_value.tv_sec = RegTimeCnt / 1000; in phOsalNfc_Timer_Start()
226 its.it_value.tv_nsec = 1000000 * (RegTimeCnt % 1000); in phOsalNfc_Timer_Start()
227 if(its.it_value.tv_sec == 0 && its.it_value.tv_nsec == 0) in phOsalNfc_Timer_Start()
230 its.it_value.tv_nsec = 1; in phOsalNfc_Timer_Start()
237 timer_settime(timers[TimerId].handle, 0, &its, NULL); in phOsalNfc_Timer_Start()
248 struct itimerspec its = {{0, 0}, {0, 0}}; in phOsalNfc_Timer_Stop() local
258 timer_settime(timers[TimerId].handle, 0, &its, NULL); in phOsalNfc_Timer_Stop()
/external/llvm/include/llvm/Option/
DOptParser.td33 // An option which prefixes its (single) value.
35 // An option which is followed by its value.
37 // An option followed by its values, which are separated by commas.
41 // An option which is either joined to its (non-empty) value, or followed by its
44 // An option which is both joined to its (first) value, and followed by its
/external/clang/test/ARCMT/
Dchecking.m93 …expected-error {{it is not safe to remove an unused 'autorelease' message; its receiver may be des…
96 …expected-error {{it is not safe to remove an unused 'autorelease' message; its receiver may be des…
202 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
205 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
206 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
240 - (id) init10 { return 0; } // expected-error {{method implementation does not match its declaratio…
246 …-error {{method was declared as an 'init' method, but its implementation doesn't match because its
248 …-error {{method was declared as an 'init' method, but its implementation doesn't match because its
249 …-error {{method was declared as an 'init' method, but its implementation doesn't match because its
250 …-error {{method was declared as an 'init' method, but its implementation doesn't match because its
[all …]
/external/chromium_org/net/cookies/
Dcookie_monster.cc1227 for (CookieMapItPair its = cookies_.equal_range(GetKey(host)); in DeleteAllCreatedBetweenForHost() local
1228 its.first != its.second;) { in DeleteAllCreatedBetweenForHost()
1229 CookieMap::iterator curit = its.first; in DeleteAllCreatedBetweenForHost()
1230 ++its.first; in DeleteAllCreatedBetweenForHost()
1256 for (CookieMapItPair its = cookies_.equal_range(GetKey(cookie.Domain())); in DeleteCanonicalCookie() local
1257 its.first != its.second; ++its.first) { in DeleteCanonicalCookie()
1259 if (its.first->second->CreationDate() == cookie.CreationDate()) { in DeleteCanonicalCookie()
1260 InternalDeleteCookie(its.first, true, DELETE_COOKIE_EXPLICIT); in DeleteCanonicalCookie()
1390 CookieMapItPair its = cookies_.equal_range(key); in HasCookiesForETLDP1() local
1391 return its.first != its.second; in HasCookiesForETLDP1()
[all …]
/external/clang/test/SemaObjC/
Dprotocol-implementing-class-methods.m24 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
26 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
27 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
Dinstancetype.m24 - (instancetype)methodInProto2; // expected-note{{overridden method returns an instance of its clas…
25 - (instancetype)otherMethodInProto2; // expected-note{{overridden method returns an instance of its
127 - (Subclass4 *)methodInProto2; // expected-warning{{method is expected to return an instance of its
132 - (Subclass3 *)init; // expected-warning{{method is expected to return an instance of its class typ…
151 …turn 0; } // expected-warning{{method is expected to return an instance of its class type 'Subclas…
193 …hod is explicitly declared 'instancetype' and is expected to return an instance of its class type}}
196 …hod is explicitly declared 'instancetype' and is expected to return an instance of its class type}}
197 - (instancetype) baz; // expected-note {{overridden method returns an instance of its class type}} …
213 - (float) baz { // expected-warning {{method is expected to return an instance of its class type 'A…
Drelated-result-type-inference.m11 - (id)retain; // expected-note{{instance method 'retain' is assumed to return an instance of its r…
89 - (Unrelated *)initBlah; // expected-warning{{method is expected to return an instance of its class…
96 - (Unrelated *)initBlah { // expected-warning{{method is expected to return an instance of its cla…
110 + (Unrelated *)newBlarg { // expected-warning{{method is expected to return an instance of its clas…
114 + (Unrelated *)alloc { // expected-warning{{method is expected to return an instance of its class t…
161 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
Dwarn-deprecated-implementations.m18 + (void)F { } // No warning, implementing its own deprecated method
20 - (void) E {} // No warning, implementing deprecated method in its class extension.
28 - (void) G {} // No warning, implementing its own deprecated method
Dincomplete-implementation.m13 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
25 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
66 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
Dcontinuation-class-err.m15 …operty in class extension 'ReadOnly' (attribute must be 'readwrite', while its primary must be 're…
34 …of property in class extension 'Bar' (attribute must be 'readwrite', while its primary must be 're…
35 …of property in class extension 'Bar' (attribute must be 'readwrite', while its primary must be 're…
Darc.m75 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
77 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
79 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
81 …d-warning {{category is implementing a method which will also be implemented by its primary class}}
166 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
169 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
170 …pected-note {{declaration in interface is not in the 'init' family because its result type is not …
206 - (id) init10 { return 0; } // expected-error {{method implementation does not match its declaratio…
212 …-error {{method was declared as an 'init' method, but its implementation doesn't match because its
213 …// expected-warning{{method is expected to return an instance of its class type 'Test8', but is de…
[all …]
/external/clang/test/SemaObjCXX/
Dinstancetype.mm24 - (instancetype)methodInProto2; // expected-note{{overridden method returns an instance of its clas…
25 - (instancetype)otherMethodInProto2; // expected-note{{overridden method returns an instance of its
127 - (Subclass4 *)methodInProto2; // expected-warning{{method is expected to return an instance of its
132 - (Subclass3 *)init; // expected-warning{{method is expected to return an instance of its class typ…
151 …turn 0; } // expected-warning{{method is expected to return an instance of its class type 'Subclas…
193 …hod is explicitly declared 'instancetype' and is expected to return an instance of its class type}}
196 …hod is explicitly declared 'instancetype' and is expected to return an instance of its class type}}
197 - (instancetype) baz; // expected-note {{overridden method returns an instance of its class type}} …
213 - (float) baz { // expected-warning {{method is expected to return an instance of its class type 'A…
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc290 // its metadata. See
301 // its metadata. See
342 // its metadata. See
360 // its metadata. See
378 // its metadata. See
625 // its metadata. See
638 // its metadata. See
651 // its metadata. See
664 // its metadata. See
708 // its metadata. See
[all …]
/external/proguard/examples/
Dproguardall.pro3 # (including its main application, its GUI, its Ant task, and its WTK plugin),
/external/stlport/
DNOTICE1 …a non-exclusive, non-transferable, royalty-free license to use STLport and its documentation witho…
5 Licensee shall maintain the following copyright and permission notices on STLport sources and its
23 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
25 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
27 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
DLICENSE1 …a non-exclusive, non-transferable, royalty-free license to use STLport and its documentation witho…
5 Licensee shall maintain the following copyright and permission notices on STLport sources and its
23 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
25 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
27 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
/external/llvm/docs/
DBlockFrequencyTerminology.rst20 sum of its outgoing branch probabilities should be 1.0.
27 branch probability associated with a given edge is its own weight divided by
68 it's packaged up to act as a pseudo-node in its parent loop's (or the
100 its containing loop, if any), and each loop pseudo-node has a loop scale and
101 its own mass (from its parent's DAG).
105 is the product of its mass, the mass of containing loops' pseudo nodes, and the
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
Dleft_most_gc_base.txt2 ./left_most_gc_base.h:15:1: warning: [blink-gc] Class 'Right' must derive its GC base in the left-m…
5 ./left_most_gc_base.h:18:1: warning: [blink-gc] Class 'DerivedRight' must derive its GC base in the…
/external/chromium_org/net/third_party/nss/patches/
Drestartclientauth.patch15 + * reference count. The caller should drop its reference
19 + * ownership of the private key, so the caller should drop its
23 + * certChain DER-encoded certs, client cert and its signers.
25 + * The caller should drop its reference without destroying the
146 + * reference count. The caller should drop its reference
151 + * ownership of the private key, so the caller should drop its
157 + * The caller should drop its reference without destroying the
/external/proguard/examples/gradle/
Dproguardall.gradle3 // (including its main application, its GUI, its Ant task, and its WTK plugin),
/external/chromium_org/components/policy/proto/
Dchrome_extension_policy.proto13 // that contains the ExternalPolicyData in its |policy_value| field.
20 // downloads the data when its local hash does not match |secure_hash|.
27 // authorize its download.
/external/clang/docs/
DDataFlowSanitizer.rst19 specific class of bugs on its own. Instead, it provides a generic
27 will not alter its behavior. To use DataFlowSanitizer, the program
30 the propagation of tags through the program according to its data flow.
63 * ``functional`` -- Like ``discard``, except that the label of its return value
64 is the union of the label of its arguments.
67 the original function or provide its own implementation. This category is
99 # malloc only writes to its internal data structures, not user-accessible memory.
/external/chromium_org/tools/gyp/test/library_dirs/subdir/
Dtest-win.gyp29 # some build systems will track it down based on its product_dir,
33 # works as advertised, such that just '-lmylib' (or its equivalent)
38 # would find it and link with its path on disk.

12345678910>>...100