Searched refs:initializer (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.0-release/contrib/gcc/
H A Dc-pretty-print.h79 c_pretty_print_fn initializer; member in struct:c_pretty_print_info
144 pp_c_base (PPI)->initializer (pp_c_base (PPI), E)
H A Dc-pretty-print.c1074 /* Print out a C initializer -- also support C compound-literals.
1075 initializer:
1077 { initializer-list }
1078 { initializer-list , } */
1091 declarator = initializer */
1105 initialize and the TREE_VALUE is the initializer. */
1122 /* initializer-list:
1123 designation(opt) initializer
1124 initializer-list , designation(opt) initializer
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRForTarget.h273 /// @param[in] initializer
274 /// The constant initializer for the variable.
283 MaybeSetConstantResult (llvm::Constant *initializer,
417 /// Write an initializer to a memory array of assumed sufficient
423 /// @param[in] initializer
424 /// The initializer itself.
430 MaterializeInitializer (uint8_t *data, llvm::Constant *initializer);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRForTarget.cpp604 NULL, /* no initializer */
647 log->Printf("Couldn't find initializer for unused variable");
650 m_error_stream->Printf("Internal error [IRForTarget]: Result variable (%s) has no writes and no initializer\n", result_name);
655 Constant *initializer = result_global->getInitializer(); local
657 StoreInst *synthesized_store = new StoreInst(initializer,
856 log->PutCString("NSString variable does not have an initializer");
859 m_error_stream->Printf("Internal error [IRForTarget]: An Objective-C constant string does not have an initializer\n");
869 log->PutCString("NSString variable's initializer is not a ConstantStruct");
889 log->Printf("NSString variable's initializer structure has an unexpected number of members. Should be 4, is %d", nsstring_struct->getNumOperands());
902 log->PutCString("NSString initializer'
1346 MaterializeInitializer(uint8_t *data, Constant *initializer) argument
1426 Constant *initializer = global_variable->getInitializer(); local
[all...]
/freebsd-10.0-release/contrib/ncurses/progs/
H A Dinfocmp.c993 ," -e format output for C initializer"
1034 static char *initializer; local
1037 if (initializer == 0)
1038 initializer = (char *) malloc(strlen(entries->tterm.term_names) +
1041 (void) strcpy(initializer, entries->tterm.term_names);
1042 for (s = initializer; *s != 0 && *s != '|'; s++) {
1048 return initializer;
1548 /* dump as C initializer for the terminal type */
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprCXX.cpp87 Expr *initializer, QualType ty,
98 assert((initializer != 0 || initializationStyle == NoInit) &&
99 "Only NoInit can have no initializer.");
100 StoredInitializationStyle = initializer ? initializationStyle + 1 : 0;
101 AllocateArgsArray(C, arraySize != 0, placementArgs.size(), initializer != 0);
113 if (initializer) {
114 if (initializer->isInstantiationDependent())
117 if (initializer->containsUnexpandedParameterPack())
120 SubExprs[i++] = initializer;
81 CXXNewExpr(ASTContext &C, bool globalNew, FunctionDecl *operatorNew, FunctionDecl *operatorDelete, bool usualArrayDeleteWantsSize, ArrayRef<Expr*> placementArgs, SourceRange typeIdParens, Expr *arraySize, InitializationStyle initializationStyle, Expr *initializer, QualType ty, TypeSourceInfo *allocatedTypeInfo, SourceRange Range, SourceRange directInitRange) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.h122 /// CFGInitializer - Represents C++ base or member initializer from
126 CFGInitializer(CXXCtorInitializer *initializer) argument
127 : CFGElement(Initializer, initializer) {}
546 void appendInitializer(CXXCtorInitializer *initializer, argument
548 Elements.push_back(CFGInitializer(initializer), C);
/freebsd-10.0-release/contrib/gcc/cp/
H A Dparser.c4073 ( type-id ) { initializer-list , [opt] }
4273 /* Parse the initializer-list. */
4293 initializer was a constant, in constant
5192 :: [opt] new new-placement [opt] new-type-id new-initializer [opt]
5193 :: [opt] new new-placement [opt] ( type-id ) new-initializer [opt]
5203 tree initializer;
5247 /* If the next token is a `(', then we have a new-initializer. */
5249 initializer = cp_parser_new_initializer (parser);
5251 initializer = NULL_TREE;
5259 return build_new (placement, type, nelts, initializer, global_scope_
5201 tree initializer; local
6671 tree initializer = NULL_TREE; local
11089 tree initializer; local
12793 tree initializer; local
12862 tree initializer; local
13942 tree initializer; local
[all...]
H A Ddecl.c160 the TREE_VALUE slot and the initializer is stored
3318 /* Generate an initializer for a function naming variable from
3822 have been parsed, before parsing the initializer if any.
3880 /* Is it valid for this decl to have an initializer at all?
3882 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
3988 includes an initializer; otherwise, it is a declaration.
4054 /* Is it valid for this decl to have an initializer at all?
4056 tell `cp_finish_decl' to ignore the initializer once it is parsed. */
4064 error ("variable %q#D has initializer but incomplete type", decl);
4113 Returns an initializer expressio
4201 tree initializer = init ? init : DECL_INITIAL (decl); local
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Dcgram.y815 } T_ASSIGN initializer {
827 } T_ASSIGN initializer {
1116 initializer: label
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCommandLine.h305 struct initializer { struct in namespace:llvm::cl
307 initializer(const Ty &Val) : Init(Val) {} function in struct:llvm::cl::initializer
314 initializer<Ty> init(const Ty &Val) {
315 return initializer<Ty>(Val);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h887 /// \brief This wraps a use of a C++ default initializer (technically,
888 /// a brace-or-equal-initializer for a non-static data member) when it
889 /// is implicitly used in a mem-initializer-list in a constructor
896 /// \brief The location where the default initializer expression was used.
905 // Field is the non-static data member whose default initializer is used
912 // Get the field whose initializer will be used.
1088 /// zero-initialization before the initializer is called.
1487 /// initializer of an array captured by copy.
1489 /// \param Iter The iterator that points at the capture initializer for
1600 /// \brief Source-range of a paren-delimited initializer
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp261 // the same semantic constraints as the initializer expression in
1100 // allow at most one initializer per member.
1114 // might not have initializers in the member initializer list.
1754 /// bitfield width if there is one, 'InitExpr' specifies the initializer if
1755 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is
2127 /// in-class initializer for a non-static C++ class member, and after
2128 /// instantiating an in-class initializer in a class template. Such actions
2231 /// \brief Handle a C++ member initializer using braced-init-list syntax.
2247 /// \brief Handle a C++ member initializer using parentheses syntax.
2292 /// \brief Handle a C++ member initializer
3288 CXXCtorInitializer **initializer = local
[all...]
/freebsd-10.0-release/contrib/ncurses/
H A Dconfigure15573 TEST::TEST(int x = 1) // some compilers do not like second initializer

Completed in 366 milliseconds