Home
last modified time | relevance | path

Searched refs:atIndex (Results 1 – 25 of 69) sorted by relevance

123

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dobjc-nsinvocation-argument-lifetime.m8 - (void)getArgument:(void *)Arg atIndex:(int)Index;
13 - (void)getArgument:(void *)Arg atIndex:(int)Index;
38 [Invocation getArgument:&Arg2 atIndex:2];
39 [Invocation getArgument:&IntVar atIndex:2];
41 [Invocation getArgument:&Arg3 atIndex:3];
42 …// CHECK-MESSAGES: :[[@LINE-1]]:27: warning: NSInvocation '-getArgument:atIndex:' should only pass…
44 [Invocation getArgument:&Arg4 atIndex:4];
45 …// CHECK-MESSAGES: :[[@LINE-1]]:27: warning: NSInvocation '-getArgument:atIndex:' should only pass…
47 [Invocation getArgument:&Arg5 atIndex:5];
48 …// CHECK-MESSAGES: :[[@LINE-1]]:27: warning: NSInvocation '-getArgument:atIndex:' should only pass…
[all …]
/external/clang/test/ARCMT/
Dcheck-api.m9 - (void)getArgument:(void *)argumentLocation atIndex:(int)idx;
10 - (void)setArgument:(void *)argumentLocation atIndex:(int)idx;
33 …[invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not sa…
34 …[invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe…
35 [invok getArgument:&unsafe_id atIndex:0];
36 [invok getArgument:&arg atIndex:0];
38 …[invok setArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not sa…
39 …[invok setArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe…
40 [invok setArgument:&unsafe_id atIndex:0];
41 [invok setArgument:&arg atIndex:0];
/external/llvm-project/clang/test/ARCMT/
Dcheck-api.m9 - (void)getArgument:(void *)argumentLocation atIndex:(int)idx;
10 - (void)setArgument:(void *)argumentLocation atIndex:(int)idx;
33 …[invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not sa…
34 …[invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe…
35 [invok getArgument:&unsafe_id atIndex:0];
36 [invok getArgument:&arg atIndex:0];
38 …[invok setArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not sa…
39 …[invok setArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's setArgument is not safe…
40 [invok setArgument:&unsafe_id atIndex:0];
41 [invok setArgument:&arg atIndex:0];
/external/llvm/utils/lit/lit/
DProgressBar.py180 self.atIndex = None
183 if self.atIndex is None:
185 self.atIndex = 0
188 if next == self.atIndex:
191 for i in range(self.atIndex, next):
202 self.atIndex = next
205 if self.atIndex is not None:
208 self.atIndex = None
/external/llvm-project/llvm/utils/lit/lit/
DProgressBar.py180 self.atIndex = None
183 if self.atIndex is None:
185 self.atIndex = 0
188 if next == self.atIndex:
191 for i in range(self.atIndex, next):
202 self.atIndex = next
205 if self.atIndex is not None and not interrupted:
208 self.atIndex = None
/external/protobuf/objectivec/
DGPBArray.h179 - (void)insertValue:(int32_t)value atIndex:(NSUInteger)index;
351 - (void)insertValue:(uint32_t)value atIndex:(NSUInteger)index;
523 - (void)insertValue:(int64_t)value atIndex:(NSUInteger)index;
695 - (void)insertValue:(uint64_t)value atIndex:(NSUInteger)index;
867 - (void)insertValue:(float)value atIndex:(NSUInteger)index;
1039 - (void)insertValue:(double)value atIndex:(NSUInteger)index;
1211 - (void)insertValue:(BOOL)value atIndex:(NSUInteger)index;
1447 - (void)insertValue:(int32_t)value atIndex:(NSUInteger)index;
1500 - (void)insertRawValue:(int32_t)value atIndex:(NSUInteger)index;
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dobjc-nsinvocation-argument-lifetime.rst8 to the ``NSInvocation`` methods ``getArgument:atIndex:`` and
18 [invocation getArgument:&arg atIndex:2];
28 [invocation getArgument:&arg atIndex:2];
/external/webrtc/examples/objc/AppRTCMobile/tests/
DARDAppClient_xctest.mm58 [invocation getArgument:&completionHandler atIndex:4];
67 [invocation getArgument:&message atIndex:2];
68 [invocation getArgument:&completionHandler atIndex:5];
79 [invocation getArgument:&completionHandler atIndex:4];
99 [invocation getArgument:&message atIndex:2];
112 [invocation getArgument:&completionHandler atIndex:2];
/external/tensorflow/tensorflow/lite/objc/sources/
DTFLInterpreter.mm179 return [self tensorOfType:TFLTensorTypeInput atIndex:index error:error];
187 return [self tensorOfType:TFLTensorTypeOutput atIndex:index error:error];
243 const TfLiteTensor *cTensor = [self cTensorOfType:TFLTensorTypeInput atIndex:index error:error];
273 const TfLiteTensor *cTensor = [self cTensorOfType:tensor.type atIndex:tensor.index error:error];
295 const TfLiteTensor *cTensor = [self cTensorOfType:tensor.type atIndex:tensor.index error:error];
333 atIndex:(NSUInteger)index
360 atIndex:(NSUInteger)index
362 const TfLiteTensor *tensor = [self cTensorOfType:type atIndex:index error:error];
/external/clang/test/SemaObjC/
Dcircular-container.m10 - (void)insertObject:(id)object atIndex:(NSUInteger)index;
37 - (void)insertObject:(id)object atIndex:(NSUInteger)index;
40 - (void)setObject:(id)object atIndex:(NSUInteger)index;
110 …[a insertObject:a atIndex:0]; // expected-warning {{adding 'a' to 'a' might cause circular depende…
141 …[s insertObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular depende…
142 …[s setObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular dependency…
187 …[a insertObject:a atIndex:0]; // expected-warning {{adding 'a' to 'a' might cause circular depende…
/external/llvm-project/clang/test/SemaObjC/
Dcircular-container.m10 - (void)insertObject:(id)object atIndex:(NSUInteger)index;
37 - (void)insertObject:(id)object atIndex:(NSUInteger)index;
40 - (void)setObject:(id)object atIndex:(NSUInteger)index;
110 …[a insertObject:a atIndex:0]; // expected-warning {{adding 'a' to 'a' might cause circular depende…
141 …[s insertObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular depende…
142 …[s setObject:s atIndex:0]; // expected-warning {{adding 's' to 's' might cause circular dependency…
187 …[a insertObject:a atIndex:0]; // expected-warning {{adding 'a' to 'a' might cause circular depende…
/external/protobuf/objectivec/Tests/
DGPBArrayTests.m308 //% [array insertValue:VAL4 atIndex:0];
312 //% [array insertValue:VAL4 atIndex:2];
316 //% [array insertValue:VAL4 atIndex:5];
320 //% XCTAssertThrowsSpecificNamed([array insertValue:VAL4 atIndex:7],
425 //% [array insertValue:VAL4 atIndex:(i * 3)];
652 [array insertValue:4 atIndex:0];
656 [array insertValue:4 atIndex:2];
660 [array insertValue:4 atIndex:5];
664 XCTAssertThrowsSpecificNamed([array insertValue:4 atIndex:7],
769 [array insertValue:4 atIndex:(i * 3)];
[all …]
/external/skqp/src/gpu/mtl/
DGrMtlCopyManager.mm209 atIndex: kAttribute_BufferIndex];
212 atIndex: kUniform_BufferIndex];
214 atIndex: 0];
216 atIndex: 0];
DGrMtlPipelineState.mm125 atIndex: GrMtlUniformHandler::kGeometryBinding];
130 atIndex: GrMtlUniformHandler::kFragBinding];
135 atIndex: index];
137 atIndex: index];
/external/webrtc/sdk/objc/components/renderer/metal/
DRTCMTLI420Renderer.mm165 [renderEncoder setFragmentTexture:_yTexture atIndex:0];
166 [renderEncoder setFragmentTexture:_uTexture atIndex:1];
167 [renderEncoder setFragmentTexture:_vTexture atIndex:2];
DRTCMTLRGBRenderer.mm154 [renderEncoder setFragmentTexture:_texture atIndex:0];
155 [renderEncoder setFragmentBuffer:_uniformsBuffer offset:0 atIndex:0];
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dbuffer_convert.mm108 [encoder setBuffer:sourceBuffer offset:0 atIndex:0];
109 [encoder setBuffer:convertedBuffer offset:0 atIndex:1];
112 [encoder setBytes:uniforms.data() length:uniforms.size() * sizeof(int) atIndex:2];
/external/antlr/runtime/ObjC/Framework/
DRuleStack.h60 - (void) insertObject:(HashRule *)aHashRule atIndex:(NSInteger)idx;
DSymbolStack.h72 - (void) insertObject:(SymbolsScope *)aScope atIndex:(NSInteger)idx;
DHashRule.h66 - (void) insertObject:(RuleMemo *)aRule atIndex:(NSInteger)Index;
DTokenRewriteStream.m264 [programs insertObject:programName atIndex:anInstructionIndex];
407 [lastRewriteTokenIndexes insertObject:programName atIndex:anInt];
480 [indexToOp setObject:nil atIndex:i]; // remove so any left have rwIndex size-1
575 [rewrites insertObject:nil atIndex:iop.instructionIndex];
584 [rewrites setObject:nil atIndex:prevRop.instructionIndex];
614 [rewrites setObject:nil atIndex:prevIop.instructionIndex];
623 [rewrites setObject:nil atIndex:i]; // delete current insert
641 [m setObject:op atIndex:op.rwIndex];
DAMutableArray.h31 - (void) insertObject:(id)anObject atIndex:(NSInteger)anIdx;
/external/llvm-project/clang/test/Analysis/
Dself-init.m30 - (void)getArgument:(void *)argumentLocation atIndex:(NSInteger)idx;
31 - (void)setArgument:(void *)argumentLocation atIndex:(NSInteger)idx;
235 [invocation_ setArgument:&self atIndex:2];
/external/clang/test/Analysis/
Dself-init.m30 - (void)getArgument:(void *)argumentLocation atIndex:(NSInteger)idx;
31 - (void)setArgument:(void *)argumentLocation atIndex:(NSInteger)idx;
235 [invocation_ setArgument:&self atIndex:2];
/external/skia/src/gpu/mtl/
DGrMtlPipelineStateDataManager.mm115 atIndex: GrMtlUniformHandler::kUniformBinding];
118 atIndex: GrMtlUniformHandler::kUniformBinding];

123