HomeSort by relevance Sort by last modified time
    Searched refs:use (Results 26 - 50 of 7784) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
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/v8/src/crankshaft/
hydrogen-uint32-analysis.cc 2 // Use of this source code is governed by a BSD-style license that can be
32 bool HUint32AnalysisPhase::IsSafeUint32Use(HValue* val, HValue* use) {
34 if (use->IsBitwise() || use->IsShl() || use->IsSar() || use->IsShr()) {
36 } else if (use->IsSimulate() || use->IsArgumentsObject()) {
39 } else if (use->IsChange()) {
44 DCHECK(HChange::cast(use)->to().IsDouble() |
80 HValue* use = it.value(); local
100 HValue* use = it.value(); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
depr-swp.l 2 [^:]*:2: Warning: swp{b} use is obsoleted for ARMv8 and later
3 [^:]*:6: Warning: swp{b} use is deprecated for ARMv6 and ARMv7
4 [^:]*:8: Warning: swp{b} use is deprecated for ARMv6 and ARMv7
adr-invalid.d 1 # name: Invalid use of ADR and ADRL
r15-bad.d 1 #name: Invalid use of r15 errors
  /external/valgrind/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/libchrome/base/timer/
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) {
  /external/mockito/src/test/java/org/mockitousage/examples/use/
Article.java 6 package org.mockitousage.examples.use;
  /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>
325 // 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.8/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.15-4.8/sysroot/usr/include/sys/
asoundlib.h 1 #warning This header is deprecated, use <alsa/asoundlib.h> instead.
  /external/mesa3d/src/compiler/nir/
nir_to_lcssa.c 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
51 is_if_use_inside_loop(nir_src *use, nir_loop* loop)
59 nir_cf_node_as_block(nir_cf_node_prev(&use->parent_if->cf_node));
69 is_use_inside_loop(nir_src *use, nir_loop* loop)
76 if (use->parent_instr->block->index <= block_before_loop->index ||
77 use->parent_instr->block->index >= block_after_loop->index) {
93 nir_foreach_use(use, def) {
94 if (use->parent_instr->type == nir_instr_type_phi &&
95 use->parent_instr->block == block_after_loop)
    [all...]
  /prebuilts/go/darwin-x86/test/
assign1.go 4 // Use of this source code is governed by a BSD-style
108 a = a1 // ERROR "cannot use"
110 a1 = a // ERROR "cannot use"
115 b = b1 // ERROR "cannot use"
117 b1 = b // ERROR "cannot use"
122 c = c1 // ERROR "cannot use"
124 c1 = c // ERROR "cannot use"
129 f = f1 // ERROR "cannot use"
131 f1 = f // ERROR "cannot use"
143 m = m1 // ERROR "cannot use"
    [all...]
zerodivide.go 4 // Use of this source code is governed by a BSD-style
110 func use(v interface{}) { func
117 ErrorTest{"int 0/0", func() { use(i / j) }, "divide"},
118 ErrorTest{"int8 0/0", func() { use(i8 / j8) }, "divide"},
119 ErrorTest{"int16 0/0", func() { use(i16 / j16) }, "divide"},
120 ErrorTest{"int32 0/0", func() { use(i32 / j32) }, "divide"},
121 ErrorTest{"int64 0/0", func() { use(i64 / j64) }, "divide"},
123 ErrorTest{"int 1/0", func() { use(k / j) }, "divide"},
124 ErrorTest{"int8 1/0", func() { use(k8 / j8) }, "divide"},
125 ErrorTest{"int16 1/0", func() { use(k16 / j16) }, "divide"}
    [all...]
convert2.go 4 // Use of this source code is governed by a BSD-style
25 s = t // ERROR "cannot use .* in assignment"
45 s = t // ERROR "cannot use .* in assignment"
46 s = u // ERROR "cannot use .* in assignment"
50 t = u // ERROR "cannot use .* in assignment"
66 s = t // ERROR "cannot use .* in assignment"
67 s = u // ERROR "cannot use .* in assignment"
71 t = u // ERROR "cannot use .* in assignment"
94 s = t // ERROR "cannot use .* in assignment"
95 s = u // ERROR "cannot use .* in assignment
    [all...]
  /prebuilts/go/linux-x86/test/
assign1.go 4 // Use of this source code is governed by a BSD-style
108 a = a1 // ERROR "cannot use"
110 a1 = a // ERROR "cannot use"
115 b = b1 // ERROR "cannot use"
117 b1 = b // ERROR "cannot use"
122 c = c1 // ERROR "cannot use"
124 c1 = c // ERROR "cannot use"
129 f = f1 // ERROR "cannot use"
131 f1 = f // ERROR "cannot use"
143 m = m1 // ERROR "cannot use"
    [all...]
zerodivide.go 4 // Use of this source code is governed by a BSD-style
110 func use(v interface{}) { func
117 ErrorTest{"int 0/0", func() { use(i / j) }, "divide"},
118 ErrorTest{"int8 0/0", func() { use(i8 / j8) }, "divide"},
119 ErrorTest{"int16 0/0", func() { use(i16 / j16) }, "divide"},
120 ErrorTest{"int32 0/0", func() { use(i32 / j32) }, "divide"},
121 ErrorTest{"int64 0/0", func() { use(i64 / j64) }, "divide"},
123 ErrorTest{"int 1/0", func() { use(k / j) }, "divide"},
124 ErrorTest{"int8 1/0", func() { use(k8 / j8) }, "divide"},
125 ErrorTest{"int16 1/0", func() { use(k16 / j16) }, "divide"}
    [all...]
convert2.go 4 // Use of this source code is governed by a BSD-style
25 s = t // ERROR "cannot use .* in assignment"
45 s = t // ERROR "cannot use .* in assignment"
46 s = u // ERROR "cannot use .* in assignment"
50 t = u // ERROR "cannot use .* in assignment"
66 s = t // ERROR "cannot use .* in assignment"
67 s = u // ERROR "cannot use .* in assignment"
71 t = u // ERROR "cannot use .* in assignment"
94 s = t // ERROR "cannot use .* in assignment"
95 s = u // ERROR "cannot use .* in assignment
    [all...]
  /art/compiler/optimizing/
instruction_simplifier_arm64.cc 5 * you may not use this file except in compliance with the License.
33 bool InstructionSimplifierArm64Visitor::TryMergeIntoShifterOperand(HInstruction* use,
36 DCHECK(HasShifterOperand(use, kArm64));
37 DCHECK(use->IsBinaryOperation() || use->IsNeg());
41 Primitive::Type type = use->GetType();
48 if (use->IsBinaryOperation()) {
49 left = use->InputAt(0);
50 right = use->InputAt(1);
52 DCHECK(use->IsNeg())
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Test.php 6 use \Google\FlatBuffers\Struct;
7 use \Google\FlatBuffers\Table;
8 use \Google\FlatBuffers\ByteBuffer;
9 use \Google\FlatBuffers\FlatBufferBuilder;
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.php 6 use \Google\FlatBuffers\Struct;
7 use \Google\FlatBuffers\Table;
8 use \Google\FlatBuffers\ByteBuffer;
9 use \Google\FlatBuffers\FlatBufferBuilder;

Completed in 1304 milliseconds

12 3 4 5 6 7 8 91011>>