Searched refs:use (Results 1 - 25 of 668) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/pr19692/
H A DTBlah.h2 int use = INT64_MAX; variable
/external/clang/test/Modules/
H A Dmerge-decl-order.cpp9 N::foo *use; variable
H A Dmerge-friends.cpp5 N::foo *use; variable
H A Dupdate-exception-spec.cpp4 void use(B *p);
6 void use(B *p) { g(p); } function
/external/v8/test/mjsunit/harmony/
H A Dblock-const-assign.js2 // Redistribution and use in source and binary forms, with or without
34 "use strict";
37 function constDecl0(use) {
38 return "(function() { const constvar = 1; " + use + "; });";
42 function constDecl1(use) {
43 return "(function() { " + use + "; const constvar = 1; });";
48 function constDecl2(use) {
49 use = "eval('(function() { " + use + " })')";
50 return "(function() { const constvar = 1; " + use
[all...]
/external/clang/test/CodeGen/
H A Dlifetime.c6 extern void use(char *a);
10 use(&a);
/external/clang/test/CodeGenCXX/
H A Dblock.cpp9 virtual void use() { func((void*)this); } function in struct:Test
18 useBlock(^(void) { t.use(); });
H A Dvtable-key-function-ios.cpp16 extern void use(const std::type_info &rtti);
27 Test0a::Test0a() { use(typeid(Test0a)); }
46 Test0b::Test0b() { use(typeid(Test0b)); }
59 Test1a::Test1a() { use(typeid(Test1a)); }
79 Test1b::Test1b() { use(typeid(Test1b)); }
93 Test2a::Test2a() { use(typeid(Test2a)); }
112 Test2b::Test2b() { use(typeid(Test2b)); }
131 Test2c::Test2c() { use(typeid(Test2c)); }
145 Test3a::Test3a() { use(typeid(Test3a)); }
165 Test3b::Test3b() { use(typei
[all...]
H A Dmicrosoft-abi-vtables-single-inheritance.cpp23 void use(A *obj) { obj->f(); } function
43 void use(B *obj) { obj->f(); } function
58 void use(C *obj) { obj->f(); } function
73 void use(D *obj) { obj->f(); } function
93 void use(E *obj) { obj->i(); } function
111 void use(F *obj) { obj->i(); } function
132 void use(G *obj) { obj->j(); } function
152 void use(I *obj) { obj->f(); } function
171 void use(J *obj) { obj->foo(42); } function
190 void use( function
213 void use(L *obj) { obj->foo(42.0f); } function
238 void use(M *obj) { obj->foo(42.0f); } function
253 void use(N *obj) { obj->operator+(42); } function
258 void use(O *obj) { obj->f(); } function
259 void use(P *obj) { obj->f(); } function
277 void use(Q *obj) { obj->foo(42); } function
291 void use(R *obj) { obj->foo(42l); } function
[all...]
H A Dvtable-key-function-arm.cpp16 extern void use(const std::type_info &rtti);
27 Test0a::Test0a() { use(typeid(Test0a)); }
46 Test0b::Test0b() { use(typeid(Test0b)); }
59 Test1a::Test1a() { use(typeid(Test1a)); }
78 Test1b::Test1b() { use(typeid(Test1b)); }
91 Test2a::Test2a() { use(typeid(Test2a)); }
112 Test2b::Test2b() { use(typeid(Test2b)); }
132 Test2c::Test2c() { use(typeid(Test2c)); }
146 Test3a::Test3a() { use(typeid(Test3a)); }
167 Test3b::Test3b() { use(typei
[all...]
H A Dmicrosoft-abi-vtables-virtual-inheritance.cpp31 void use(C *obj) { obj->f(); } function
55 void use(D *obj) { obj->h(); } function
103 void use(X *obj) { obj->h(); } function in namespace:Test2
181 void use(Y *obj) { obj->h(); } function in namespace:Test5
246 void use(X *obj) { obj->f(); } function in namespace:Test8
262 void use(Z *obj) { obj->f(); } function in namespace:Test8
284 void use(T *obj) { obj->bar(); } function in namespace:Test8
309 void use(Y *obj) { obj->h(); } function in namespace:Test9
421 void use(T *obj) { obj->f(); } function in namespace:Test9
438 void use( function in namespace:Test10
503 void use(Y *obj) { delete obj; } function in namespace:vdtors
532 void use(U *obj) { delete obj; } function in namespace:vdtors
552 void use(V *obj) { delete obj; } function in namespace:vdtors
568 void use(P *obj) { delete obj; } function in namespace:vdtors
593 void use(R *obj) { delete obj; } function in namespace:vdtors
626 void use(W *obj) { obj->foo(); } function in namespace:return_adjustment
647 void use(T *obj) { obj->foo(); } function in namespace:return_adjustment
669 void use(V *obj) { obj->foo(); } function in namespace:return_adjustment
[all...]
H A Dstatic-init-3.cpp11 static void use(T const &) {} function in struct:X1
14 use(instance);
/external/valgrind/helgrind/tests/
H A Dtc03_re_excl.c10 /* A simple function to "use" a value, so that gcc can't
12 static void use ( int x ) { function
19 use(arg[5]); /* read access */
32 use(x[5]); /* read access */
/external/v8/src/
H A Dhydrogen-uint32-analysis.cc35 bool HUint32AnalysisPhase::IsSafeUint32Use(HValue* val, HValue* use) { argument
37 if (use->IsBitwise() || use->IsShl() || use->IsSar() || use->IsShr()) {
39 } else if (use->IsSimulate()) {
42 } else if (use->IsChange()) {
47 DCHECK(HChange::cast(use)->to().IsDouble() ||
48 HChange::cast(use)->to().IsSmi() ||
49 HChange::cast(use)
83 HValue* use = it.value(); local
103 HValue* use = it.value(); local
[all...]
/external/clang/test/Analysis/inlining/
H A Deager-reclamation-path-notes.c5 void use(int *ptr, int val) { function
21 use(p, compute());
23 // expected-note@-2 {{Calling 'use'}}
202 // CHECK-NEXT: <string>Calling &apos;use&apos;</string>
204 // CHECK-NEXT: <string>Calling &apos;use&apos;</string>
323 // CHECK-NEXT: <key>issue_context</key><string>use</string>
/external/clang/test/SemaCXX/
H A Dwarn-unused-attribute.cpp5 void use();
16 used.use();
/external/clang/test/SemaTemplate/
H A Darray-to-pointer-decay.cpp34 void use(char *);
37 use(getChars().x);
/external/llvm/test/MC/ELF/
H A Dcfi-window-save.s3 # Should use SPARC as the target to test this. However, SPARC does not
4 # use MC yet.
/external/skia/src/animator/
H A DSkDrawTo.cpp19 SK_MEMBER(use, Bitmap)
26 SkDrawTo::SkDrawTo() : drawOnce(false), use(NULL), fDrawnOnce(false) {
38 SkCanvas canvas(use->fBitmap);
51 if (use)
52 SkDebugf("use=\"%s\" ", use->id);
H A DSkDisplayAdd.cpp22 SK_MEMBER(use, Drawable),
37 offset(SK_MaxS32), use(NULL), where(NULL) {
41 SkADrawable* saveUse = use;
43 use = NULL;
46 copy->use = use = saveUse;
52 SkASSERT(use);
53 SkASSERT(use->isDrawable());
55 use->draw(maker);
70 if (use) //jus
[all...]
/external/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.cpp25 extern void use(int &ref);
26 use(ref); // expected-warning{{Forming reference to null pointer}}
/external/v8/src/compiler/
H A Dgeneric-node-inl.h61 for (Use* use = first_use_; use != NULL; use = use->next) {
62 use->from->GetInputRecordPtr(use->input_index)->to = replace_to;
84 for (Use* use = first_use_; use != NULL;) {
85 Use* next = use->next;
86 if (pred(static_cast<S*>(use
191 AppendUse(Use* use) argument
204 RemoveUse(Use* use) argument
237 Use* use = local
[all...]
/external/llvm/test/MC/ARM/
H A Ddeprecated-v8.s12 @ CHECK-ARMV8: warning: deprecated since v7, use 'isb'
13 @ CHECK-THUMBV8: warning: deprecated since v7, use 'isb'
14 @ CHECK-ARMV7: warning: deprecated since v7, use 'isb'
15 @ CHECK-THUMBV7: warning: deprecated since v7, use 'isb'
16 @ CHECK-ARMV6-NOT: warning: deprecated since v7, use 'isb'
18 @ CHECK-ARMV8: warning: deprecated since v7, use 'dsb'
19 @ CHECK-THUMBV8: warning: deprecated since v7, use 'dsb'
20 @ CHECK-ARMV7: warning: deprecated since v7, use 'dsb'
21 @ CHECK-THUMBV7: warning: deprecated since v7, use 'dsb'
22 @ CHECK-ARMV6-NOT: warning: deprecated since v7, use 'ds
[all...]
H A 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 o
[all...]
/external/zlib/src/examples/
H A Denough.c39 properties are: we cannot use more bit patterns than are available; and when
207 int least; /* least number of syms to use at this juncture */
208 int most; /* most number of syms to use at this juncture */
209 int use; /* number of bit patterns to use in next call */ local
225 /* we need to use at least this many bit patterns so that the code won't be
231 /* we can use at most this many bit patterns, lest there not be enough
239 for (use = least; use <= most; use
326 int use; /* number of bit patterns to use in next call */ local
[all...]

Completed in 5067 milliseconds

1234567891011>>