HomeSort by relevance Sort by last modified time
    Searched full:dosomething (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/clang/test/CodeGenCXX/
debug-info-method-spec.cpp 6 void doSomething(int i) { ++i; }
10 a->doSomething(2);
  /external/clang/test/SemaObjC/
protocol-qualified-class-unsupported.m 27 static void doSomething(Class <Func> unsupportedObjectType) {
36 doSomething([Derived self]);
37 doSomething([Derived2 self]);
transparent-union.m 16 - (void) doSomething : (xx_object_t) xxObject;
21 - (void) doSomething : (xx_object_t) xxObject {}
22 - (void)testMeth { struct xx_queue_s *sq; [self doSomething:sq ]; }
synthesize-setter-contclass.m 9 -(void) doSomething;
19 -(void) doSomething
no-warn-unimpl-method.m 17 -(void) doSomething;
21 -(void) doSomething;
25 -(void) doSomething
block-ivar.m 14 - (int)doSomething {
method-typecheck-2.m 11 - (void) doSomething: (float) x; // expected-note {{previous definition is here}}
19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}}
warn-retain-block-property.m 7 extern void doSomething();
29 t.aBlock = ^{ doSomething(); };
30 t.aBlockW = ^{ doSomething(); };
31 t.aBlockS = ^{ doSomething(); };
47 // CHECK-ARC: t.aBlockW = ^{ doSomething(); };
self-declared-in-block.m 35 - (void)doSomething {
  /external/compiler-rt/test/BlocksRuntime/
recursive-block.c 17 int doSomething(int i) {
24 int j = doSomething(i);
25 int k = doSomething(j);
26 doSomething(i + j + k);
33 __block voidVoid inner = ^{ doSomething(i); };
  /external/clang/test/Index/
complete-with-annotations.cpp 2 void doSomething();
11 void X::doSomething() {
16 // CHECK: CXXMethod:{ResultType void}{TypedText doSomething}{LeftParen (}{RightParen )} (34)
  /external/clang/test/CodeGenObjC/
blocks-ivar-debug.m 14 - (int)doSomething {
externally-initialized-selectors.m 7 [x doSomething];
  /external/clang/test/CodeGenObjCXX/
externally-initialized-selectors.mm 7 [x doSomething];
  /external/lldb/test/lang/cpp/dynamic-value/
pass-to-base.cpp 23 doSomething (A &anotherA)
27 printf ("Also have another A at %p: %d.\n", &anotherA, tmp_value); // Break here in doSomething.
63 myB.doSomething(otherB); // Break here and get real addresses of myB and otherB.
66 myB.doSomething (reallyA); // Break here and get real address of reallyA.
  /external/clang/test/SemaCXX/
arrow-operator.cpp 55 void DoSomething(); // expected-note {{'DoSomething' declared here}}
61 worker.DoSomething(); // expected-error {{no member named 'DoSomething' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'; did you mean to use '->' instead of '.'?}}
63 // expected-error {{no member named 'DoSamething' in 'arrow_suggest::Worker'; did you mean 'DoSomething'?}}
warn-consumed-analysis.cpp 725 Status doSomething();
737 doSomething(); // expected-warning {{invalid invocation of method '~Status' on a temporary object while it is in the 'unconsumed' state}}
741 doSomething().ignore();
745 handleStatus(doSomething());
749 Status s = doSomething();
753 bool b = false || doSomething(); // expected-warning {{invalid invocation of method '~Status' on a temporary object while it is in the 'unconsumed' state}}
757 return doSomething();
761 Status s = doSomething();
766 Status s = doSomething();
771 Status s = doSomething();
    [all...]
warn-unused-result.cpp 62 Status DoSomething();
67 Status s = DoSomething();
76 (void)DoSomething();
81 DoSomething(); // expected-warning {{ignoring return value}}
  /external/clang/test/Rewriter/
rewrite-interface-locals.mm 11 - (void)doSomething:(NSData *)data callback:(Callback)callback;
16 - (void)doSomething:(NSData *)data callback:(Callback)callback {
  /external/llvm/test/CodeGen/ARM/
peephole-bitcast.ll 21 tail call void @doSomething(float %x) nounwind
28 declare void @doSomething(float)
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 45 void doSomething();
103 getSomeClass()->doSomething();
110 object->doSomething();
188 NonTrivial().getNull()->doSomething();
196 ptr->doSomething();
203 arg->doSomething();
  /external/llvm/test/DebugInfo/X86/
subregisters.ll 17 ; void doSomething() __attribute__ ((noinline));
19 ; void doSomething(struct bar *b)
28 ; doSomething(&myBar);
41 define void @doSomething(%struct.bar* nocapture readonly %b) #0 {
64 call void @doSomething(%struct.bar* %tmpcast), !dbg !35
85 !4 = !MDSubprogram(name: "doSomething", line: 10, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 11, file: !1, scope: !5, type: !6, function: void (%struct.bar*)* @doSomething, variables: !14)
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
MaybeNull.java 27 * obj.doSomething();
30 * If this is common, consider adding {@code doSomething} to this class so that the code
32 * MaybeNull.doSomething(obj);
  /cts/tests/signature-tests/src/android/signature/cts/tests/data/
NormalInterface.java 27 void doSomething();
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
abstract_class.cc 39 derived_->DoSomething();
50 void Derived::DoSomething() {

Completed in 294 milliseconds

1 2 3 4