HomeSort by relevance Sort by last modified time
    Searched refs:use (Results 1 - 25 of 6609) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
lifetime.c 6 extern void use(char *a);
10 use(&a);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
strict-err.asm 2 add [rax], dword 4 ; illegal; must use dword [eax], 4
3 add [rax], strict dword 4 ; illegal; must use dword [eax], strict dword 4
4 add [rax], qword 4 ; illegal; must use qword [rax], 4
5 add [rax], strict qword 4 ; illegal; must use qword [eax], strict dword 4
  /external/clang/test/CodeGenCXX/
block.cpp 9 virtual void use() { func((void*)this); } function in struct:Test
18 useBlock(^(void) { t.use(); });
vtable-key-function-ios.cpp 16 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(typeid(Test3b));
    [all...]
microsoft-abi-vtables-single-inheritance.cpp 23 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(K *obj) { obj->foo(42.0f); 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...]
vtable-key-function-arm.cpp 16 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(typeid(Test3b));
    [all...]
  /external/chromium_org/base/timer/
hi_res_timer_manager_win.cc 2 // Use of this source code is governed by a BSD-style license that can be
29 void HighResolutionTimerManager::UseHiResClock(bool use) {
30 if (use == hi_res_clock_available_)
32 hi_res_clock_available_ = use;
33 base::Time::EnableHighResolutionTimer(use);
hi_res_timer_manager_posix.cc 2 // Use of this source code is governed by a BSD-style license that can be
21 void HighResolutionTimerManager::UseHiResClock(bool use) {
hi_res_timer_manager.h 2 // Use of this source code is governed by a BSD-style license that can be
29 void UseHiResClock(bool use);
  /external/chromium_org/v8/test/webkit/fast/js/
basic-strict-mode.js 4 // Redistribution and use in source and binary forms, with or without
19 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 "use strict";
32 "use strict";
36 "use strict";
47 "use stric\
52 "use\u0020strict";
76 shouldBeUndefined("Function('\"use strict\"; return this;')()");
77 shouldThrow("Function('\"use strict\"; with({});')")
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
block-const-assign.js 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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 + " })')"
    [all...]
  /external/valgrind/main/helgrind/tests/
tc03_re_excl.c 10 /* 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/chromium_org/v8/src/
hydrogen-uint32-analysis.cc 2 // Use of this source code is governed by a BSD-style license that can be
35 bool HUint32AnalysisPhase::IsSafeUint32Use(HValue* val, HValue* use) {
37 if (use->IsBitwise() || use->IsShl() || use->IsSar() || use->IsShr()) {
39 } else if (use->IsSimulate()) {
42 } else if (use->IsChange()) {
47 ASSERT(HChange::cast(use)->to().IsDouble() ||
48 HChange::cast(use)->to().IsSmi() |
83 HValue* use = it.value(); local
103 HValue* use = it.value(); local
    [all...]
  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.c 5 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>
322 // CHECK-NEXT: <key>issue_context</key><string>use</string>
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 5 void use();
16 used.use();
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 34 void use(char *);
37 use(getChars().x);
  /external/llvm/test/MC/ELF/
cfi-window-save.s 3 # Should use SPARC as the target to test this. However, SPARC does not
4 # use MC yet.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
asoundlib.h 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
asoundlib.h 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /external/chromium_org/third_party/skia/src/animator/
SkDrawTo.cpp 5 * Use of this source code is governed by a BSD-style license that can be
19 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);
SkDisplayAdd.cpp 5 * Use of this source code is governed by a BSD-style license that can be
22 SK_MEMBER(use, Drawable),
37 offset(SK_MaxS32), use(NULL), where(NULL) {
41 SkDrawable* saveUse = use;
43 use = NULL;
46 copy->use = use = saveUse;
52 SkASSERT(use);
53 SkASSERT(use->isDrawable());
55 use->draw(maker)
    [all...]
  /external/skia/src/animator/
SkDrawTo.cpp 5 * Use of this source code is governed by a BSD-style license that can be
19 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);
SkDisplayAdd.cpp 5 * Use of this source code is governed by a BSD-style license that can be
22 SK_MEMBER(use, Drawable),
37 offset(SK_MaxS32), use(NULL), where(NULL) {
41 SkDrawable* saveUse = use;
43 use = NULL;
46 copy->use = use = saveUse;
52 SkASSERT(use);
53 SkASSERT(use->isDrawable());
55 use->draw(maker)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
last_active_browser_cocoa.h 2 // Use of this source code is governed by a BSD-style license that can be
16 #error This file is intended for use in the Cocoa frontend only.
  /abi/cpp/
use_rtti.mk 1 # To use RTTI, "include abi/cpp/use_rtti.mk" in your target.

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011>>