HomeSort by relevance Sort by last modified time
    Searched refs:initializer (Results 26 - 50 of 753) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/CodeGen/
ConstantInitFuture.h 47 /// A "future" for a completed constant initializer, which can be passed
60 /// A future can be explicitly created from a fixed initializer.
61 explicit ConstantInitFuture(llvm::Constant *initializer) : Data(initializer) {
62 assert(initializer && "creating null future");
68 /// Return the type of the initializer.
71 /// Abandon this initializer.
74 /// Install the initializer into a global variable. This cannot
  /external/guice/core/src/com/google/inject/internal/
InjectionRequestProcessor.java 40 private final Initializer initializer; field in class:InjectionRequestProcessor
42 InjectionRequestProcessor(Errors errors, Initializer initializer) {
44 this.initializer = initializer;
61 initializer.requestInjection(
BindingProcessor.java 45 private final Initializer initializer; field in class:BindingProcessor
47 BindingProcessor(Errors errors, Initializer initializer, ProcessedBindingData bindingData) {
49 this.initializer = initializer;
93 Initializable<T> ref = initializer.requestInjection(
109 initializer.<javax.inject.Provider<? extends T>>requestInjection(
InternalInjectorCreator.java 64 private final Initializer initializer = new Initializer(); field in class:InternalInjectorCreator
72 injectionRequestProcessor = new InjectionRequestProcessor(errors, initializer);
104 shells = shellBuilder.build(initializer, bindingData, stopwatch, errors);
140 initializer.validateOustandingInjections(errors);
174 initializer.injectAll(errors);
  /external/mesa3d/src/compiler/nir/
nir_lower_constant_initializers.c 32 nir_load_const_instr *initializer = local
34 nir_builder_instr_insert(b, &initializer->instr);
36 nir_store_deref_var(b, deref, &initializer->def, 0xf);
  /external/clang/test/OpenMP/
dump.cpp 13 #pragma omp declare reduction(fun : float : omp_out += omp_in) initializer(omp_priv = omp_orig + 15)
30 // CHECK-NEXT: |-OMPDeclareReductionDecl {{.+}} <line:13:37> col:37 fun 'float' combiner initializer
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8183.go 21 e // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
22 f // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
bug482.go 9 // caused gccgo to erroneously report "variable initializer refers to
issue6403.go 7 // Issue 6403: fix spurious 'const initializer is not a constant' error
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8183.go 21 e // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
22 f // ERROR "array bound must be non-negative" "const initializer len\(composite literal\) is not a constant"
bug482.go 9 // caused gccgo to erroneously report "variable initializer refers to
issue6403.go 7 // Issue 6403: fix spurious 'const initializer is not a constant' error
  /external/libchrome/base/memory/
ref_counted_memory.cc 34 RefCountedBytes::RefCountedBytes(const std::vector<unsigned char>& initializer)
35 : data_(initializer) {
  /external/skia/src/sksl/ast/
SkSLASTForStatement.h 19 ASTForStatement(Position position, std::unique_ptr<ASTStatement> initializer,
23 , fInitializer(std::move(initializer))
  /external/skia/src/sksl/ir/
SkSLForStatement.h 21 ForStatement(Position position, std::unique_ptr<Statement> initializer,
26 , fInitializer(std::move(initializer))
  /prebuilts/go/darwin-x86/test/syntax/
forvar.go 11 for var x = 0; x < 10; x++ { // ERROR "var declaration not allowed in for initializer"
  /prebuilts/go/linux-x86/test/syntax/
forvar.go 11 for var x = 0; x < 10; x++ { // ERROR "var declaration not allowed in for initializer"
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
compiler.h 62 InitializationToken(GlslInitializer* initializer)
63 : initializer_(initializer) {}
144 // The initializer parameter must be a valid GlslInitializer object.
145 // Acquire will be called on the initializer and the result will be
171 GlslInitializer* initializer) const;
  /external/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 16 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 '+'}}
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
reduce.rs 44 // infinities), we cannot pick an initializer from the input domain,
47 // to pick some other distinguished initializer, and explicitly check
54 // The kernel findMinAbsNaN uses an initializer from outside the input
58 initializer(fMinAbsNaNInit) accumulator(fMinAbsNaNAccumulator) combiner(fMinAbsNaNCombiner)
82 // set to true by initializer function;
90 initializer(fMinAbsBoolInit) accumulator(fMinAbsBoolAccumulator) combiner(fMinAbsBoolCombiner) \
115 initializer(fMMInit) accumulator(fMMAccumulator) \
162 initializer(fzInit) \
179 initializer(fz2Init) \
201 initializer(fz3Init)
    [all...]
reduce_backward.rs 78 initializer(fMMInit) accumulator(fMMAccumulator) \
95 initializer(fzInit) \
117 initializer(fz2Init) \
141 initializer(fz3Init) \
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/src/
shaderc_private.h 91 shaderc_util::GlslInitializer* initializer; member in struct:shaderc_compiler
  /external/swiftshader/third_party/subzero/src/
IceClFlags.cpp 47 template <typename T> using initializer = llvm::cl::initializer<T>;
49 template <typename T> initializer<T> init(const T &Val) {
50 return initializer<T>(Val);
142 Ty flagInitOrStorageTypeDefault(cl::initializer<T> &&Value, A &&...) {
153 template <typename T> struct is_cl_initializer<cl::initializer<T>> {
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
modify_srcu.awk 248 initializer = substr(old_record, start_loc, len);
249 gsub(srcu_init_param_name "\\.", "", initializer);
250 rcu_batches[name] = initializer;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
6-1.c 159 void initializer(void) function
186 ret = pthread_once(&once_ctl, initializer);
196 ret = pthread_once(&once_ctl, initializer);
208 FAILED("The initializer did not execute as expected");

Completed in 761 milliseconds

12 3 4 5 6 7 8 91011>>