Home
last modified time | relevance | path

Searched refs:initialize (Results 1 – 25 of 599) sorted by relevance

12345678910>>...24

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dwarn-explicit-call-initialize.m5 + (void)initialize; // expected-note 2 {{method 'initialize' declared here}} class
9 + (void)initialize; // expected-note {{method 'initialize' declared here}} class
15 …[I initialize]; // expected-warning {{explicit call to +initialize results in duplicate call t…
16 …[NSObject initialize]; // expected-warning {{explicit call to +initialize results in duplicate cal…
18 + (void)initialize { class
19 [super initialize];
22 …[super initialize]; // expected-warning {{explicit call to [super initialize] should only be in im…
H A Dnon-trivial-c-union.m16 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
18 …ed-error {{cannot default-initialize an object of type 'S0' since it contains a union that is non-…
20 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
35 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
39 …ed-error {{cannot default-initialize an object of type 'S0' since it contains a union that is non-…
43 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
53 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
67 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
68 …ed-error {{cannot default-initialize an object of type 'S0' since it contains a union that is non-…
69 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
[all …]
H A Dprotocol-implementing-class-methods.m12 - (void) initialize; // expected-note {{method 'initialize' declared here}} method
16 - (void) initialize; method in AirPortUI
24 - (void) initialize {NSImage *p=0; [p initialize]; } // expected-warning {{category is implementing… method in AirPortUI
H A Dwarn-nontrivial-struct-memaccess.m15 …__weak id f1; // expected-note 2 {{non-trivial to default-initialize}} expected-note 2 {{non-trivi…
17 …id f3[10]; // expected-note 2 {{non-trivial to default-initialize}} expected-note 2 {{non-trivial …
21 …id f0; // expected-note 2 {{non-trivial to default-initialize}} expected-note 2 {{non-trivial to c…
34 …ial1)); // expected-warning {{that is not trivial to primitive-default-initialize}} expected-note …
36 …ial1)); // expected-warning {{that is not trivial to primitive-default-initialize}} expected-note …
/llvm-project-15.0.7/llvm/include/llvm/
H A DPassSupport.h38 static void *initialize##passName##PassOnce(PassRegistry &Registry) { \
46 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
48 initialize##passName##PassOnce, std::ref(Registry)); \
52 static void *initialize##passName##PassOnce(PassRegistry &Registry) {
54 #define INITIALIZE_PASS_DEPENDENCY(depName) initialize##depName##Pass(Registry);
56 initialize##depName##AnalysisGroup(Registry);
66 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
68 initialize##passName##PassOnce, std::ref(Registry)); \
140 static void *initialize##agName##AnalysisGroupOnce(PassRegistry &Registry) { \
141 initialize##defaultPass##Pass(Registry); \
[all …]
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionVisitor.cpp36 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection()
43 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection()
50 if (auto EC = Fragment.initialize(Reader)) in visitDebugSubsection()
56 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
62 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
68 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
74 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
80 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
86 if (auto EC = Section.initialize(Reader)) in visitDebugSubsection()
H A DDebugCrossExSubsection.cpp19 Error DebugCrossModuleExportsSubsectionRef::initialize( in initialize() function in DebugCrossModuleExportsSubsectionRef
30 Error DebugCrossModuleExportsSubsectionRef::initialize(BinaryStreamRef Stream) { in initialize() function in DebugCrossModuleExportsSubsectionRef
32 return initialize(Reader); in initialize()
H A DDebugFrameDataSubsection.cpp17 Error DebugFrameDataSubsectionRef::initialize(BinaryStreamReader Reader) { in initialize() function in DebugFrameDataSubsectionRef
33 Error DebugFrameDataSubsectionRef::initialize(BinaryStreamRef Section) { in initialize() function in DebugFrameDataSubsectionRef
35 return initialize(Reader); in initialize()
H A DDebugCrossImpSubsection.cpp44 Error DebugCrossModuleImportsSubsectionRef::initialize( in initialize() function in DebugCrossModuleImportsSubsectionRef
49 Error DebugCrossModuleImportsSubsectionRef::initialize(BinaryStreamRef Stream) { in initialize() function in DebugCrossModuleImportsSubsectionRef
51 return initialize(Reader); in initialize()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp53 bool OProfileWrapper::initialize() { in initialize() function in llvm::OProfileWrapper
183 initialize(); in op_open_agent()
195 initialize(); in op_close_agent()
216 initialize(); in op_write_native_code()
229 initialize(); in op_write_debug_line_info()
239 initialize(); in op_major_version()
249 initialize(); in op_minor_version()
259 initialize(); in op_unload_native_code()
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Darc-nsconsumed-errors.mm6 …med)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of ty…
10 …med)) id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a variable of ty…
12 blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}}
14 blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a vari…
16 blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a vari…
20 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk…
26 releaser_t r1 = normalFunction; // expected-error {{cannot initialize a variable of type 'releaser_…
H A Dparameterized_classes_arc.mm36 Forward2 *x = [obj get]; // expected-error {{cannot initialize}}
37 …[obj set: x]; // expected-error {{cannot initialize a parameter of type 'Forward *' with an lvalue…
41 Forward2 *x = [obj get]; // expected-error {{cannot initialize}}
42 [obj set: x]; // expected-error {{cannot initialize a parameter of type 'Forward *'}}
46 Forward2 *x = [obj get]; // expected-error {{cannot initialize}}
47 [obj set: x]; // expected-error {{cannot initialize a parameter of type 'Forward *'}}
59 Forward2 *x = [obj get]; // expected-error {{cannot initialize}}
60 [obj set: x]; // expected-error {{cannot initialize a parameter of type 'Forward *'}}
H A DNSString-type.mm5 …void (^block)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)(…
7 …void (^block2)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)…
8 …void (^block3)(void) = @"help"; // expected-error {{cannot initialize a variable of type 'void (^)…
/llvm-project-15.0.7/llvm/lib/Target/BPF/
H A DBPFMIPeephole.cpp54 void initialize(MachineFunction &MFParm);
72 initialize(MF); in runOnMachineFunction()
84 void BPFMIPeephole::initialize(MachineFunction &MFParm) { in initialize() function in __anon8c4d9abd0111::BPFMIPeephole
312 void initialize(MachineFunction &MFParm);
323 initialize(MF); in runOnMachineFunction()
330 void BPFMIPreEmitPeephole::initialize(MachineFunction &MFParm) { in initialize() function in __anon8c4d9abd0211::BPFMIPreEmitPeephole
405 void initialize(MachineFunction &MFParm);
416 initialize(MF); in runOnMachineFunction()
437 void BPFMIPeepholeTruncElim::initialize(MachineFunction &MFParm) { in initialize() function in __anon8c4d9abd0311::BPFMIPeepholeTruncElim
/llvm-project-15.0.7/llvm/test/tools/llvm-ml/
H A Dstruct_errors.asm13 ; CHECK: error: Cannot initialize array field with scalar value
16 ; CHECK: error: Cannot initialize scalar field with array value
27 ; CHECK: error: Cannot initialize array field with scalar value
30 ; CHECK: error: Cannot initialize scalar field with array value
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A Dlibdebugserver.cpp143 RNBRunLoopMode HandleProcessStateChange(RNBRemoteSP &remote, bool initialize) { in HandleProcessStateChange() argument
156 (int)initialize, DNBStateAsString(pid_state)); in HandleProcessStateChange()
172 if (!initialize) { in HandleProcessStateChange()
186 __FUNCTION__, (int)initialize, DNBStateAsString(pid_state), in HandleProcessStateChange()
193 __FUNCTION__, (int)initialize, DNBStateAsString(pid_state), in HandleProcessStateChange()
201 __FUNCTION__, (int)initialize, in HandleProcessStateChange()
/llvm-project-15.0.7/clang/test/PCH/
H A Dnon-trivial-c-union.m15 // expected-note@-8 {{'U0' has subobjects that are non-trivial to default-initialize}}
18 // expected-note@-10 {{f0 has type '__strong id' that is non-trivial to default-initialize}}
22 …ected-error {{cannot default-initialize an object of type 'U0' since it is a union that is non-tri…
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A Dlldb-server.cpp41 static void initialize() { in initialize() function
64 llgs::initialize(); in main()
69 llgs::initialize(); in main()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DTemplateInstCallback.h28 virtual void initialize(const Sema &TheSema) = 0;
43 void initialize(TemplateInstantiationCallbackPtrs &Callbacks, in initialize() function
47 C->initialize(TheSema); in initialize()
/llvm-project-15.0.7/clang/test/Analysis/diagnostics/
H A Dno-store-func-path-notes.cpp22 int initialize(int *p, int param) { in initialize() function
34 s->initialize(&p, 0); //expected-note{{Calling 'S::initialize'}} in use()
129 void initialize(int *);
132 void D::initialize(int *p) { in initialize() function in D
138 d->initialize(&p); // expected-note{{Calling 'D::initialize'}} in use_d_initializer()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dsanitize-thread-no-checking-at-run-time.m19 + (void) initialize; class
24 + (void)initialize { class
31 // TSAN: initialize{{.*}}) [[ATTR:#[0-9]+]]
H A Dinstrument-objc-method.m9 // CHECK: @"\01+[ObjCClass initialize]"
12 // BARE: @"\01+[ObjCClass initialize]"
14 + (void)initialize { class
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/
H A Dpro-type-member-init.rst7 initialize all fields that would be left in an undefined state by
15 initializer list. It will also initialize any direct base classes that
24 fix is to zero initialize the variable via ``{}`` for C++11 and beyond or ``=
34 be important to not initialize fixed-size array members. Default is `false`.
/llvm-project-15.0.7/llvm/test/Transforms/MemCpyOpt/
H A D2008-02-24-MultipleUseofSRet.ll10 define internal fastcc void @initialize(%0* noalias nocapture sret(%0) %agg.result) nounwind {
11 ; CHECK-LABEL: @initialize(
35 ; CHECK-NEXT: call fastcc void @initialize(%0* noalias sret(%0) [[Z]])
47 call fastcc void @initialize(%0* noalias sret(%0) %memtmp)
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h71 Error initialize(BinaryStreamReader Reader);
72 Error initialize(BinaryStreamRef Section) {
73 return initialize(BinaryStreamReader(Section));

12345678910>>...24