Searched refs:initializer (Results 126 - 150 of 171) sorted by path

1234567

/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.cc53 void InitOnceImpl(OnceType* once, void (*initializer)()) { argument
65 (*initializer)();
H A Dport_chromium.h100 void InitOnceImpl(OnceType* once, void (*initializer)());
102 static inline void InitOnce(OnceType* once, void (*initializer)()) { argument
104 InitOnceImpl(once, initializer);
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_example.h71 extern void InitOnce(port::OnceType*, void (*initializer)());
H A Dport_posix.cc49 void InitOnce(OnceType* once, void (*initializer)()) { argument
50 PthreadCall("once", pthread_once(once, initializer));
H A Dport_posix.h117 extern void InitOnce(OnceType* once, void (*initializer)());
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast.h321 ast_expression *initializer);
329 ast_expression *initializer; member in class:ast_declaration
H A Dast_to_hir.cpp2340 * Generate the IR for an initializer in a variable declaration
2350 YYLTYPE initializer_loc = decl->initializer->get_location();
2378 ir_rvalue *rhs = decl->initializer->hir(initializer_instructions,
2393 "initializer of %s variable `%s' must be a "
2408 "initializer of type %s cannot be assigned to "
2439 * its full type from the initializer. A declaration such as
2453 * to do_assignment can change the type of the initializer (via
2454 * the implicit conversion rules). For uniforms the initializer
2499 assert(decl->initializer == NULL);
2880 /* Process the initializer an
[all...]
H A Dglsl_parser_extras.cpp724 if (initializer) {
726 initializer->print();
733 ast_expression *initializer)
738 this->initializer = initializer;
731 ast_declaration(const char *identifier, int is_array, ast_expression *array_size, ast_expression *initializer) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.cc164 static bool initializer = (libpthread_initialized = true, true); variable
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc156 static bool initializer = (libpthread_initialized = true, true); variable
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc733 ContextInitializer initializer; local
770 ContextInitializer initializer; local
836 ContextInitializer initializer; local
908 ContextInitializer initializer; local
948 ContextInitializer initializer; local
997 ContextInitializer initializer; local
1049 ContextInitializer initializer; local
1108 ContextInitializer initializer; local
1166 ContextInitializer initializer; local
1267 ContextInitializer initializer; local
1305 ContextInitializer initializer; local
[all...]
/external/clang/include/clang/AST/
H A DExprCXX.h937 /// \brief A use of a default initializer in a constructor or in aggregate
940 /// This wraps a use of a C++ default initializer (technically,
941 /// a brace-or-equal-initializer for a non-static data member) when it
942 /// is implicitly used in a mem-initializer-list in a constructor
949 /// \brief The location where the default initializer expression was used.
958 /// \p Field is the non-static data member whose default initializer is used
965 /// \brief Get the field whose initializer will be used.
1141 /// zero-initialization before the initializer is called.
1484 /// initializer of an array captured by copy.
1486 /// \param Iter The iterator that points at the capture initializer fo
[all...]
/external/clang/include/clang/Analysis/
H A DCFG.h131 /// CFGInitializer - Represents C++ base or member initializer from
135 CFGInitializer(CXXCtorInitializer *initializer) argument
136 : CFGElement(Initializer, initializer) {}
661 void appendInitializer(CXXCtorInitializer *initializer, argument
663 Elements.push_back(CFGInitializer(initializer), C);
/external/clang/lib/AST/
H A DExprCXX.cpp145 Expr *initializer, QualType ty,
156 assert((initializer != nullptr || initializationStyle == NoInit) &&
157 "Only NoInit can have no initializer.");
158 StoredInitializationStyle = initializer ? initializationStyle + 1 : 0;
160 initializer != nullptr);
172 if (initializer) {
173 if (initializer->isInstantiationDependent())
176 if (initializer->containsUnexpandedParameterPack())
179 SubExprs[i++] = initializer;
139 CXXNewExpr(const 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
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp260 // the same semantic constraints as the initializer expression in
1140 // allow at most one initializer per member.
1158 // might not have initializers in the member initializer list.
1926 /// bitfield width if there is one, 'InitExpr' specifies the initializer if
1927 /// one has been parsed, and 'InitStyle' is set if an in-class initializer is
2406 /// \brief Enter a new C++ default initializer scope. After calling this, the
2408 /// parsing or instantiating the initializer failed.
2411 // that notionally surrounds a use of this initializer.
2415 /// \brief This is invoked after parsing an in-class initializer for a
2416 /// non-static C++ class member, and after instantiating an in-class initializer
3570 CXXCtorInitializer **initializer = local
[all...]
/external/clang/test/CXX/expr/expr.ass/
H A Dp9-cxx11.cpp16 a = { 1 } = b; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
17 a = a + { 4 }; // expected-error {{initializer list cannot be used on the right hand side of operator '+'}}
18 a = { 3 } * { 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '*'}} \
19 expected-error {{initializer list cannot be used on the right hand side of operator '*'}}
33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}}
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-constructor.cpp78 { F<3> f{1, 1.0}; } // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{silence}}
79 { F<3> f = {1, 1.0}; } // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{silence}}
125 B(C, int, C); // expected-note {{candidate constructor not viable: cannot convert initializer list argument to 'objects::C'}}
134 one ov1(B); // expected-note {{not viable: cannot convert initializer list}}
135 two ov1(C); // expected-note {{not viable: cannot convert initializer list}}
150 // This is not an initializer-list constructor.
298 A a {}; // calls initializer list constructor
388 expected-note {{in implicit initialization of array element 2 with omitted initializer}}
/external/clang/test/SemaTemplate/
H A Ddefault-arguments.cpp133 container<DT> initializer(const DT& d) { function in namespace:PR9643
138 vector<int, allocator<int> > v = initializer<vector>(5);
/external/e2fsprogs/util/
H A Dgcc-wall-cleanup19 /warning: missing initializer/d
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... object org.eclipse.core.variables.IValueVariableInitializer initializer org.eclipse.core.runtime.CoreException e ...
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 718 milliseconds

1234567