HomeSort by relevance Sort by last modified time
    Searched full:initialization (Results 351 - 375 of 5591) sorted by null

<<11121314151617181920>>

  /frameworks/native/include/private/binder/
Static.h 17 // All static variables go here, to control initialization and
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
array_init.rs 3 // Testing constant array initialization
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
array_init.rs 3 // Testing constant array initialization
  /hardware/broadcom/libbt/include/
upio.h 64 ** Description Initialization
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_postproc_x86.h 23 * them in the function pointer initialization code
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
loc_apicb_appinit.h 37 /* Initialization function for callbacks */
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/inc/
loc_apicb_appinit.h 30 /* Initialization function for callbacks */
  /libcore/dalvik/src/main/java/dalvik/system/
NativeStart.java 20 * Dummy class used during JNI initialization. The JNI functions want
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
value_init.hpp 19 // fact that various compilers haven't fully implemented value-initialization.
49 // regarding value-initialization.
54 // switches the value-initialization workaround either on or off.
183 // initialized<T> does value-initialization by default.
  /packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
OneTimeInitializerReceiver.java 25 * BroadcastReceiver that starts the service to performs one time initialization
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/
TempDirectory.java 25 * initialization.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusinit.h 4 * GDI+ Initialization
  /prebuilts/misc/common/swig/include/2.0.11/php/
phpinit.swg 3 * The start of the PHP initialization function
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclinit.swg 2 * The start of the Tcl initialization function
7 /* This initialization code exports the module initialization function */
141 /* Note: the initialization function is closed after all code is generated */
  /system/core/libnativebridge/tests/
CodeCacheCreate_test.cpp 25 // Tests that the bridge initialization creates the code_cache if it doesn't
  /system/extras/tests/bionic/libc/common/
test_clock.c 39 // do not call clock() here so we can test initialization
  /external/chromium_org/crypto/
rsa_private_key.h 174 // Create a new random instance. Can return NULL if initialization fails.
179 // initialization fails.
184 // Create a new random instance in |slot|. Can return NULL if initialization
191 // return NULL if initialization fails.
204 // initialization fails or the private key cannot be found. The
213 // NULL if initialization fails or the private key cannot be found.
276 // initialization fails. The caller takes ownership of the returned
  /external/chromium_org/ppapi/api/private/
ppp_content_decryptor_private.idl 65 * initialization data.
196 * <code>decoder_config</code>, and returns the result of the initialization
204 * associate the result with a audio decoder initialization request.
218 * <code>decoder_config</code>, and returns the result of the initialization
226 * associate the result with a video decoder initialization request.
241 * state. The decoder can be re-initialized after de-initialization completes
245 * De-initialization completion is reported to the browser using the
  /external/chromium_org/ppapi/c/private/
ppp_content_decryptor_private.h 83 * initialization data.
200 * <code>decoder_config</code>, and returns the result of the initialization
209 * associate the result with a audio decoder initialization request.
222 * <code>decoder_config</code>, and returns the result of the initialization
230 * associate the result with a video decoder initialization request.
244 * state. The decoder can be re-initialized after de-initialization completes
248 * De-initialization completion is reported to the browser using the
  /external/libvpx/libvpx/
usage.dox 37 video must be known at initialization time. See #vpx_codec_ctx_t for further
69 \section usage_init Initialization
71 and interface structures are passed to an initialization function. Depending
79 initialization time to ensure the application is using a header file that
82 #VPX_DECODER_ABI_VERSION. For convenience, each initialization function has
84 named like the initialization methods, but without the _ver suffix.
87 The available initialization methods are:
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamRequest.java 53 /* the bytestream initialization request */
95 * @param bytestreamRequest the SOCKS5 Bytestream initialization packet
161 * Returns the sender of the SOCKS5 Bytestream initialization request.
163 * @return the sender of the SOCKS5 Bytestream initialization request.
170 * Returns the session ID of the SOCKS5 Bytestream initialization request.
172 * @return the session ID of the SOCKS5 Bytestream initialization request.
179 * Accepts the SOCKS5 Bytestream initialization request and returns the socket to send/receive
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
usage.dox 37 video must be known at initialization time. See #vpx_codec_ctx_t for further
69 \section usage_init Initialization
71 and interface structures are passed to an initialization function. Depending
79 initialization time to ensure the application is using a header file that
82 #VPX_DECODER_ABI_VERSION. For convenience, each initialization function has
84 named like the initialization methods, but without the _ver suffix.
87 The available initialization methods are:
  /external/clang/test/Analysis/
dead-stores.c 207 // PR 3514: false positive `dead initialization` warning for init to global
403 int shouldLog = (argc > 1); // expected-warning{{Value stored to 'shouldLog' during its initialization is never read}} expected-warning{{unused variable 'shouldLog'}}
413 int z = x + y; // expected-warning{{Value stored to 'z' during its initialization is never read}} expected-warning{{unused variable 'z'}}
554 int x1 = (getInt(), getInt()); // expected-warning {{Value stored to 'x1' during its initialization is never read}} // expected-warning{{unused variable 'x1'}}
555 int x2 = (getInt(), getInt(), getInt()); //expected-warning{{Value stored to 'x2' during its initialization is never read}} // expected-warning{{unused variable 'x2'}}
561 int x6 = (getInt(), (y = getInt())); //expected-warning {{Value stored to 'x6' during its initialization is never read}} // expected-warning{{unused variable 'x6'}}
562 int x7 = 0, x8 = getInt(); //expected-warning {{Value stored to 'x8' during its initialization is never read}} // expected-warning{{unused variable 'x8'}} // expected-warning{{unused variable 'x7'}}
563 int x9 = getInt(), x10 = 0; //expected-warning {{Value stored to 'x9' during its initialization is never read}} // expected-warning{{unused variable 'x9'}} // expected-warning{{unused variable 'x10'}}
564 int m = getInt(), mm, mmm; //expected-warning {{Value stored to 'm' during its initialization is never read}} // expected-warning{{unused variable 'm'}} // expected-warning{{unused variable 'mm'}} // expected-warning{{unused variable 'mmm'}}
565 int n, nn = getInt(); //expected-warning {{Value stored to 'nn' during its initialization is never read}} // expected-warning{{unused variable 'n'}} // expected-warning{{unused variable 'n (…)
    [all...]
  /external/chromium_org/media/base/
stream_parser.h 68 // Indicates completion of parser initialization.
69 // success - True if initialization was successful.
70 // params - Stream parameters, in case of successful initialization.
106 // First parameter - The type of the initialization data associated with the
108 // Second parameter - The initialization data associated with the stream.
  /external/chromium_org/net/ssl/
client_cert_store_chromeos_unittest.cc 49 // Defer futher initialization and checks to SelectClientCerts, because the
50 // constructor doesn't allow us to return an initialization result. Could be
167 // initialized, will wait for the initialization and succeed afterwards.
192 // GetClientCerts should wait for the initialization of the user's DB to
234 // the behavior doesn't depend on initialization order of the DBs, for example.

Completed in 1279 milliseconds

<<11121314151617181920>>