Home
last modified time | relevance | path

Searched refs:initialization (Results 1 – 25 of 570) sorted by relevance

12345678910>>...23

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DForStmt.java71 private NodeList<Expression> initialization; field in ForStmt
85 …public ForStmt(final NodeList<Expression> initialization, final Expression compare, final NodeList… in ForStmt() argument
86 this(null, initialization, compare, update, body); in ForStmt()
93 …public ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, Nod… in ForStmt() argument
95 setInitialization(initialization); in ForStmt()
126 return initialization; in getInitialization()
168 public ForStmt setInitialization(final NodeList<Expression> initialization) { in setInitialization() argument
169 assertNotNull(initialization); in setInitialization()
170 if (initialization == this.initialization) { in setInitialization()
173 … notifyPropertyChange(ObservableProperty.INITIALIZATION, this.initialization, initialization); in setInitialization()
[all …]
/external/clang/test/SemaObjC/
Dscope-check.m9 @try { // expected-note {{jump bypasses initialization of @try block}}
11 } @catch (A *x) { // expected-note {{jump bypasses initialization of @catch block}}
15 } @finally {// expected-note {{jump bypasses initialization of @finally block}}
22 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
25 } @catch (B *c) { // expected-note {{jump bypasses initialization of @catch block}}
27 } @finally { // expected-note {{jump bypasses initialization of @finally block}}
32 @try { // expected-note 2 {{jump bypasses initialization of @try block}}
44 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
52 @synchronized // expected-note {{jump bypasses initialization of @synchronized block}}
83 } @catch (...) { // expected-note {{jump bypasses initialization of @catch block}}
[all …]
/external/python/cpython3/Doc/c-api/
Dmodule.rst131 which export an initialization function), or compiled-in modules
132 (where the initialization function is added using :c:func:`PyImport_AppendInittab`).
135 The initialization function can either pass a module definition instance
137 or request "multi-phase initialization" by returning the definition struct itself.
174 initialization.
185 An array of slot definitions for multi-phase initialization, terminated by
187 When using single-phase initialization, *m_slots* must be *NULL*.
217 Single-phase initialization
220 The module initialization function may create and return the module object
221 directly. This is referred to as "single-phase initialization", and uses one
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cShadingLanguage420PackTests.cpp13693 const std::string& initialization = getInitialization(); in prepareShaderSource() local
13740 …Utils::replaceToken("INITIALIZATION", position, initialization.c_str(), out_source.m_parts[0].m_co… in prepareShaderSource()
13945 std::string initialization; in getInitialization() local
13950 initialization.append(getVectorInitializer(0 /*column*/, test_case.m_n_rows)); in getInitialization()
13955 initialization = "{ "; in getInitialization()
13956 initialization.append(getVectorArrayList(test_case.m_n_cols, test_case.m_n_rows)); in getInitialization()
13957 initialization.append(" }"); in getInitialization()
13963 initialization = "{ "; in getInitialization()
13964 initialization.append(getVectorArrayCtr(test_case.m_n_cols, test_case.m_n_rows)); in getInitialization()
13965 initialization.append(" }"); in getInitialization()
[all …]
/external/libchrome/base/containers/
Dspan_unittest.nc29 …IC_EXTENT_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int, …
38 …IC_EXTENT_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int, …
47 …IC_EXTENT_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<const…
56 …NG_EXTENT_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int, …
66 …TIC_SPAN_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int, …
74 …NVERSION_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<base:…
87 …NVERSION_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<const…
97 …NVERSION_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int>'…
105 …NVERSION_DISALLOWED) // [r"fatal error: no matching constructor for initialization of 'span<int>'…
/external/autotest/client/site_tests/platform_Pkcs11InitUnderErrors/
Dcontrol7 PURPOSE = "Tests PKCS#11 initialization under various system states."
8 CRITERIA = "Fails if initialization fails under any of the initial states."
16 This tests PKCS#11 initialization under various kinds of error conditions -
/external/autotest/client/site_tests/platform_Pkcs11InitOnLogin/
Dcontrol7 PURPOSE = "Tests PKCS#11 initialization on login"
8 CRITERIA = "Fails if initialization fails during login."
16 This tests if initialization of a user PKCS #11 token succeeds during login. It
/external/deqp-deps/glslang/Test/
Dhlsl.matrixindex.frag12 const float3x2 m1 = { { 10, 11 }, // row-wise initialization
16 …const float3x2 m2 = { 20, 21, 22, 23, 24, 25 }; // component-wise matrix initialization is allowed
17 …const float3x2 m3 = { 30, 31, 33, 33, 34, 35 }; // component-wise matrix initialization is allowed
/external/libaom/libaom/
Dusage.dox37 video must be known at initialization time. See #aom_codec_ctx_t for further
67 and interface structures are passed to an initialization function. Depending
73 initialization time to ensure the application is using a header file that
76 #AOM_DECODER_ABI_VERSION. For convenience, each initialization function has
78 named like the initialization methods, but without the _ver suffix.
81 The available initialization methods are:
/external/grpc-grpc/test/
D.clang-tidy2 …cit-make-pair,readability-function-size,performance-*,-performance-unnecessary-copy-initialization'
3 …cit-make-pair,readability-function-size,performance-*,-performance-unnecessary-copy-initialization'
/external/autotest/client/site_tests/platform_InitLoginPerf/
Dcontrol7 PURPOSE = "Measures first boot initialization and login performance"
14 This is the client-side test that goes through initialization and logins and
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DAdamsNordsieckTransformer.java140 private final Array2DRowRealMatrix initialization; field in AdamsNordsieckTransformer
188 initialization = MatrixUtils.bigFractionMatrixToRealMatrix(bigRInverse); in AdamsNordsieckTransformer()
268 return initialization.multiply(new Array2DRowRealMatrix(multistep, false)); in initializeHighOrderDerivatives()
/external/tensorflow/tensorflow/python/autograph/converters/
Dlist_comprehensions.py57 initialization = templates.replace(template, target=target)
78 return initialization + body
/external/libvpx/libvpx/
Dusage.dox37 video must be known at initialization time. See #vpx_codec_ctx_t for further
68 and interface structures are passed to an initialization function. Depending
74 initialization time to ensure the application is using a header file that
77 #VPX_DECODER_ABI_VERSION. For convenience, each initialization function has
79 named like the initialization methods, but without the _ver suffix.
82 The available initialization methods are:
/external/autotest/server/site_tests/platform_InitLoginPerfServer/
Dcontrol7 PURPOSE = "Measures first boot initialization and login performance"
17 It captures the performance data for tpm initialization, as well as first-boot
/external/u-boot/board/armltd/integrator/
DREADME34 In case c) it may be necessary for U-Boot to perform CM dependent initialization.
49 Code specific to initialization of a particular ARM processor has been placed in
60 Code specific to the initialization of the CM, rather than the cpu, and initialization
/external/u-boot/arch/arm/mach-zynq/
DKconfig31 bool "Zynq DDRC initialization"
34 This option used to perform DDR specific initialization
/external/python/cpython3/Doc/extending/
Dbuilding.rst10 ``.pyd`` on Windows), which exports an *initialization function*.
16 The initialization function has the signature:
27 module. When using :ref:`multi-phase-initialization`, non-ASCII module names
28 are allowed. In this case, the initialization function name is
40 defining multiple initialization functions. However, importing them requires
/external/u-boot/doc/device-tree-bindings/clock/
Dst,stm32mp1.txt1 STMicroelectronics STM32MP1 clock tree initialization
4 The STM32MP clock tree initialization is based on device tree information
12 describes the fields added for clock tree initialization which are not present
165 At boot the clock tree initialization will
/external/python/cpython2/Doc/c-api/
Dmodule.rst84 be used from the module's initialization function. This steals a reference to
93 used from the module's initialization function. Return ``-1`` on error, ``0`` on
102 used from the module's initialization function. The string *value* must be
/external/vulkan-headers/
DCMakeLists.txt18 # CMake project initialization --------------------------------------------------------------------…
19 # This section contains pre-project() initialization, and ends with the project() command.
/external/mesa3d/src/egl/main/
DREADME.txt26 As part of initialization, the dispatch table in _EGLDriver->API must be
34 driver initialization that wasn't done in the driver entry point should be
/external/curl/m4/
Dxc-am-iface.m428 dnl This macro performs embedding of automake initialization
42 ## Start of automake initialization code ##
51 ## End of automake initialization code ##
67 dnl initialization option 'subdir-objects' is used to
/external/compiler-rt/test/asan/TestCases/Helpers/
Dinitialization-blacklist.txt3 src:*initialization-blacklist-extra2.cc=init
/external/grpc-grpc/src/objective-c/GRPCClient/private/
DGRPCCompletionQueue.m52 static dispatch_once_t initialization;
54 dispatch_once(&initialization, ^{

12345678910>>...23