Home
last modified time | relevance | path

Searched refs:use (Results 1 – 25 of 8517) sorted by relevance

12345678910>>...341

/external/clang/test/Modules/
Dno-linkage.cpp29 void use(int);
31 use(Typedef().n); in use_things()
32 use(NS::n); in use_things()
33 use(AliasDecl); in use_things()
34 use(UsingDecl); in use_things()
35 use(RealNS::n); in use_things()
36 use(Struct(0)); in use_things()
37 use(Variable); in use_things()
38 use(AnotherNS); in use_things()
39 use(Enumerator); in use_things()
[all …]
Dusing-decl.cpp41 template<typename T> int use(T);
43 use(conflicting_hidden_using_decl); in test_conflicting()
44 use(conflicting_hidden_using_decl_fn()); in test_conflicting()
45 use(conflicting_hidden_using_decl_var); in test_conflicting()
46 use(conflicting_hidden_using_decl_fn_2()); in test_conflicting()
47 use(conflicting_hidden_using_decl_var_2); in test_conflicting()
48 use(conflicting_hidden_using_decl_mixed_1()); in test_conflicting()
49 use(conflicting_hidden_using_decl_mixed_2); in test_conflicting()
50 use(conflicting_hidden_using_decl_mixed_3()); in test_conflicting()
51 use(conflicting_hidden_using_decl_mixed_4()); in test_conflicting()
[all …]
/external/valgrind/memcheck/tests/
Derr_disable4.stderr.exp5 WARNING: possibly as a result of some mistake in the use
8 WARNING: possibly as a result of some mistake in the use
11 WARNING: possibly as a result of some mistake in the use
14 WARNING: possibly as a result of some mistake in the use
17 WARNING: possibly as a result of some mistake in the use
20 WARNING: possibly as a result of some mistake in the use
23 WARNING: possibly as a result of some mistake in the use
26 WARNING: possibly as a result of some mistake in the use
29 WARNING: possibly as a result of some mistake in the use
32 WARNING: possibly as a result of some mistake in the use
[all …]
/external/clang/test/SemaObjC/
Darc-repeated-weak.mm1 …-has-weak -fobjc-arc -fblocks -Wno-objc-root-class -std=c++11 -Warc-repeated-use-of-weak -verify %s
16 extern void use(id); function
22use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this …
23 use(a.weakProp); // expected-note{{also accessed here}}
25 use(a.strongProp);
26 use(a.strongProp); // no-warning
28 use(a.weakProp); // expected-note{{also accessed here}}
32 use(a.weakProp); // no-warning
33 use(a.strongProp); // no-warning
57 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}}
[all …]
Darc-unbridged-cast.m46 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
47 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
48 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
49 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
50 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
52 …x = (id) auditedCreateString(); // expected-error {{requires a bridged cast}} expected-note {{use
53 … (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
54 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
55 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
82 … expected-error{{requires a bridged cast}} expected-note{{use __bridge to}} expected-note{{use CFB…
[all …]
/external/clang/test/Modules/Inputs/declare-use/
Dmodule.map11 use XA
12 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive.
17 use XA
18 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive.
23 use XA
24 use XB
29 use XA
30 use XB
36 use XC
37 use XE
[all …]
/external/v8/src/crankshaft/
Dhydrogen-uint32-analysis.cc32 bool HUint32AnalysisPhase::IsSafeUint32Use(HValue* val, HValue* use) { in IsSafeUint32Use() argument
34 if (use->IsBitwise() || use->IsShl() || use->IsSar() || use->IsShr()) { in IsSafeUint32Use()
36 } else if (use->IsSimulate() || use->IsArgumentsObject()) { in IsSafeUint32Use()
39 } else if (use->IsChange()) { in IsSafeUint32Use()
44 DCHECK(HChange::cast(use)->to().IsDouble() || in IsSafeUint32Use()
45 HChange::cast(use)->to().IsSmi() || in IsSafeUint32Use()
46 HChange::cast(use)->to().IsTagged()); in IsSafeUint32Use()
48 } else if (use->IsStoreKeyed()) { in IsSafeUint32Use()
49 HStoreKeyed* store = HStoreKeyed::cast(use); in IsSafeUint32Use()
61 } else if (use->IsCompareNumericAndBranch()) { in IsSafeUint32Use()
[all …]
/external/v8/src/compiler/
Ddead-code-elimination.cc85 for (Node* const use : node->uses()) { in ReduceLoopOrMerge()
86 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
87 DCHECK_EQ(inputs.count() + 1, use->InputCount()); in ReduceLoopOrMerge()
88 use->ReplaceInput(live_input_count, use->InputAt(i)); in ReduceLoopOrMerge()
99 for (Node* const use : node->uses()) { in ReduceLoopOrMerge()
100 if (NodeProperties::IsPhi(use)) { in ReduceLoopOrMerge()
101 Replace(use, use->InputAt(0)); in ReduceLoopOrMerge()
102 } else if (use->opcode() == IrOpcode::kLoopExit && in ReduceLoopOrMerge()
103 use->InputAt(1) == node) { in ReduceLoopOrMerge()
104 RemoveLoopExit(use); in ReduceLoopOrMerge()
[all …]
Dnode.cc109 Use* use = use_ptr - 1 - current; in New() local
110 use->bit_field_ = Use::InputIndexField::encode(current) | in New()
112 to->AppendUse(use); in New()
147 Use* use = GetUsePtr(inline_count); in AppendInput() local
148 use->bit_field_ = Use::InputIndexField::encode(inline_count) | in AppendInput()
150 new_to->AppendUse(use); in AppendInput()
175 Use* use = GetUsePtr(input_count); in AppendInput() local
176 use->bit_field_ = Use::InputIndexField::encode(input_count) | in AppendInput()
178 new_to->AppendUse(use); in AppendInput()
257 for (const Use* use = first_use_; use; use = use->next) { in UseCount() local
[all …]
/external/llvm/test/DebugInfo/MIR/X86/
Dlive-debug-values-3preds.mir30 # CHECK-DAG: DBG_VALUE debug-use %edi, debug-use _, !11, !16, debug-location !17
31 # CHECK-DAG: DBG_VALUE debug-use %edx, debug-use _, !13, !16, debug-location !20
32 # CHECK-DAG: DBG_VALUE debug-use %esi, debug-use _, !12, !16, debug-location !18
189 DBG_VALUE debug-use %edi, debug-use _, !9, !17, debug-location !18
190 DBG_VALUE debug-use %esi, debug-use _, !10, !17, debug-location !19
191 DBG_VALUE debug-use %edx, debug-use _, !11, !17, debug-location !21
192 DBG_VALUE debug-use %ecx, debug-use _, !12, !17, debug-location !23
203 DBG_VALUE debug-use %edi, debug-use _, !9, !17, debug-location !18
204 DBG_VALUE debug-use %esi, debug-use _, !10, !17, debug-location !19
205 DBG_VALUE debug-use %edx, debug-use _, !11, !17, debug-location !21
[all …]
/external/libxml2/
Dbuf.c49 size_t use; /* The buffer size used */ member
63 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
75 if (buf->use != (size_t) buf->compat_use) \
77 buf->use = buf->compat_use;
131 ret->use = 0; in xmlBufCreate()
165 ret->use = 0; in xmlBufCreateSize()
211 buf->use = 0; in xmlBufDetach()
249 ret->use = size; in xmlBufCreateStatic()
359 buf->use = 0; in xmlBufEmpty()
392 if (len > buf->use) return(0); in xmlBufShrink()
[all …]
/external/llvm/test/MC/ARM/
Darm-load-store-multiple-deprecated.s14 @ CHECK: warning: use of SP or PC in the list is deprecated
18 @ CHECK: warning: use of SP or PC in the list is deprecated
22 @ CHECK: warning: use of SP or PC in the list is deprecated
26 @ CHECK: warning: use of SP or PC in the list is deprecated
30 @ CHECK: warning: use of SP or PC in the list is deprecated
34 @ CHECK: warning: use of SP or PC in the list is deprecated
42 @ CHECK: warning: use of SP or PC in the list is deprecated
46 @ CHECK: warning: use of SP or PC in the list is deprecated
50 @ CHECK: warning: use of SP or PC in the list is deprecated
54 @ CHECK: warning: use of SP or PC in the list is deprecated
[all …]
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-vtables-single-inheritance.cpp23 void use(A *obj) { obj->f(); } in use() function
43 void use(B *obj) { obj->f(); } in use() function
58 void use(C *obj) { obj->f(); } in use() function
73 void use(D *obj) { obj->f(); } in use() function
93 void use(E *obj) { obj->i(); } in use() function
111 void use(F *obj) { obj->i(); } in use() function
132 void use(G *obj) { obj->j(); } in use() function
152 void use(I *obj) { obj->f(); } in use() function
171 void use(J *obj) { obj->foo(42); } in use() function
190 void use(K *obj) { obj->foo(42.0f); } in use() function
[all …]
Dvtable-key-function-arm.cpp16 extern void use(const std::type_info &rtti);
27 Test0a::Test0a() { use(typeid(Test0a)); } in Test0a()
46 Test0b::Test0b() { use(typeid(Test0b)); } in Test0b()
59 Test1a::Test1a() { use(typeid(Test1a)); } in Test1a()
78 Test1b::Test1b() { use(typeid(Test1b)); } in Test1b()
91 Test2a::Test2a() { use(typeid(Test2a)); } in Test2a()
112 Test2b::Test2b() { use(typeid(Test2b)); } in Test2b()
132 Test2c::Test2c() { use(typeid(Test2c)); } in Test2c()
146 Test3a::Test3a() { use(typeid(Test3a)); } in Test3a()
167 Test3b::Test3b() { use(typeid(Test3b)); } in Test3b()
[all …]
Dvtable-key-function-ios.cpp19 extern void use(const std::type_info &rtti);
30 Test0a::Test0a() { use(typeid(Test0a)); } in Test0a()
49 Test0b::Test0b() { use(typeid(Test0b)); } in Test0b()
62 Test1a::Test1a() { use(typeid(Test1a)); } in Test1a()
82 Test1b::Test1b() { use(typeid(Test1b)); } in Test1b()
96 Test2a::Test2a() { use(typeid(Test2a)); } in Test2a()
115 Test2b::Test2b() { use(typeid(Test2b)); } in Test2b()
134 Test2c::Test2c() { use(typeid(Test2c)); } in Test2c()
148 Test3a::Test3a() { use(typeid(Test3a)); } in Test3a()
168 Test3b::Test3b() { use(typeid(Test3b)); } in Test3b()
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_to_lcssa.c51 is_if_use_inside_loop(nir_src *use, nir_loop* loop) in is_if_use_inside_loop() argument
59 nir_cf_node_as_block(nir_cf_node_prev(&use->parent_if->cf_node)); in is_if_use_inside_loop()
69 is_use_inside_loop(nir_src *use, nir_loop* loop) in is_use_inside_loop() argument
76 if (use->parent_instr->block->index <= block_before_loop->index || in is_use_inside_loop()
77 use->parent_instr->block->index >= block_after_loop->index) { in is_use_inside_loop()
93 nir_foreach_use(use, def) { in convert_loop_exit_for_ssa()
94 if (use->parent_instr->type == nir_instr_type_phi && in convert_loop_exit_for_ssa()
95 use->parent_instr->block == block_after_loop) { in convert_loop_exit_for_ssa()
99 if (!is_use_inside_loop(use, state->loop)) { in convert_loop_exit_for_ssa()
104 nir_foreach_if_use(use, def) { in convert_loop_exit_for_ssa()
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/t/
Dlexer.t1 use strict;
2 use warnings;
4 use FindBin;
5 use lib qw( t/lib );
7 use File::Slurp;
9 use Test::More;
10 use ANTLR::Runtime::Test;
31 use strict;
32 use warnings;
34 use ANTLR::Runtime::ANTLRStringStream;
[all …]
/external/clang/test/Parser/
Dopencl-atomics-cl20.cl29 _Atomic int i; // expected-error {{use of undeclared identifier '_Atomic'}}
32 // expected-error@-16 {{use of undeclared identifier 'atomic_int'}}
33 // expected-error@-16 {{use of undeclared identifier 'atomic_uint'}}
34 // expected-error@-16 {{use of undeclared identifier 'atomic_long'}}
35 // expected-error@-16 {{use of undeclared identifier 'atomic_ulong'}}
36 // expected-error@-16 {{use of undeclared identifier 'atomic_float'}}
37 // expected-error@-16 {{use of undeclared identifier 'atomic_double'}}
38 // expected-error@-16 {{use of undeclared identifier 'atomic_flag'}}
39 // expected-error@-16 {{use of undeclared identifier 'atomic_intptr_t'}}
40 // expected-error@-16 {{use of undeclared identifier 'atomic_uintptr_t'}}
[all …]
/external/valgrind/memcheck/tests/amd64/
Dinsn-pmovmskb.c40 static void use(int index, int invalid) in use() function
69 else use(bit, result & mask); in doit()
73 else use(bit, result & mask); in doit()
77 else use(bit, result & mask); in doit()
81 else use(bit, result & mask); in doit()
85 else use(bit, result & mask); in doit()
89 else use(bit, result & mask); in doit()
93 else use(bit, result & mask); in doit()
97 else use(bit, result & mask); in doit()
101 else use(bit, result & mask); in doit()
[all …]
/external/zlib/src/examples/
Denough.c209 int use; /* number of bit patterns to use in next call */ in count() local
239 for (use = least; use <= most; use++) { in count()
240 got = count(syms - use, len + 1, (left - use) << 1); in count()
326 int use; /* number of bit patterns to use in next call */ in examine() local
345 for (use = root + 1; use <= max; use++) in examine()
346 if (code[use]) in examine()
347 printf("%d[%d] ", code[use], use); in examine()
374 use = least; in examine()
375 while (rem < use) { in examine()
376 use -= rem; in examine()
[all …]
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/
Dsimplecalc.t1 use strict;
2 use warnings;
4 use lib qw( t/lib );
6 use Test::More;
7 use ANTLR::Runtime::Test;
43 use strict;
44 use warnings;
46 use ANTLR::Runtime::ANTLRStringStream;
47 use ANTLR::Runtime::CommonTokenStream;
48 use ANTLR::Runtime::RecognitionException;
[all …]
/external/clang/test/SemaObjCXX/
Dobjcbridge-attribute.mm12 …jc_bridge(NSLocale, NSError))) __CFLocale *CFLocaleRef;// expected-error {{use of undeclared ident…
32 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
33 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFTestingRef' (aka '__CFEr…
59 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
61 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
62 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
65 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
68 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
69 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFUColor2Ref' (aka '__CFUP…
71 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
[all …]
Dobjcbridge-attribute-arc.mm12 …jc_bridge(NSLocale, NSError))) __CFLocale *CFLocaleRef;// expected-error {{use of undeclared ident…
32 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
33 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFTestingRef' (aka '__CFEr…
59 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
61 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
62 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
65 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFErrorRef2' (aka '__CFErr…
68 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
69 …// expected-note {{use __bridge_transfer to transfer ownership of a +1 'CFUColor2Ref' (aka '__CFUP…
71 … // expected-note {{use __bridge to convert directly (no change in ownership)}} \
[all …]
Darc-unbridged-cast.mm42 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
43 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
44 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
45 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
47 …x = (id) auditedCreateString(); // expected-error {{requires a bridged cast}} expected-note {{use
48 … (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
49 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
50 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
87 …pe 'id' to C pointer type 'CFStringRef'}} expected-note {{use __bridge to}} expected-note {{use CF…
100 …pe 'id' to C pointer type 'CFStringRef'}} expected-note {{use __bridge to}} expected-note {{use CF…
[all …]
/external/llvm/test/Analysis/ValueTracking/
Dderef-bitcast-of-gep.ll3 ; Note: the !invariant.load is there just solely to let us call @use()
4 ; to add a fake use, and still have the aliasing work out. The call
5 ; to @use(0) is just to provide a may-unwind exit out of the loop, so
9 declare void @use(i32)
17 ; CHECK: call void @use(i32 0)
18 ; CHECK-NEXT: call void @use(i32 %val)
27 call void @use(i32 0)
29 call void @use(i32 %val)
45 ; CHECK: call void @use(i32 0)
46 ; CHECK-NEXT: call void @use(i32 %val)
[all …]

12345678910>>...341