HomeSort by relevance Sort by last modified time
    Searched full:full (Results 26 - 50 of 10952) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/openfst/src/lib/
compat.cc 32 void SplitToVector(char* full, const char* delim, vector<char*>* vec,
34 char *p = full;
36 if ((p = strpbrk(full, delim)))
38 if (!omit_empty_strings || full[0] != '\0')
39 vec->push_back(full);
41 full = p + 1;
  /frameworks/base/packages/BackupRestoreConfirmation/res/values/
strings.xml 17 <!-- Title of the activity when a full backup has been requested and must be confirmed -->
18 <string name="backup_confirm_title">Full backup</string>
19 <!-- Title of the activity when a full restore has been requested and must be confirmed -->
20 <string name="restore_confirm_title">Full restore</string>
22 <!-- Text for message to user that a full backup has been requested, and must be confirmed. -->
23 <string name="backup_confirm_text">A full backup of all data to a connected desktop computer has been requested. Do you want to allow this to happen\?\n\nIf you did not request the backup yourself, do not allow the operation to proceed.</string>
24 <!-- Button to allow a requested full backup to occur -->
26 <!-- Button to refuse to allow the requested full backup -->
29 <!-- Text for message to user that a full restore has been requested, and must be confirmed. -->
30 <string name="restore_confirm_text">A full restore of all data from a connected desktop computer has been requested. Do you want to allow th (…)
    [all...]
  /external/chromium_org/chromeos/
chromeos_paths.h 18 FILE_DEFAULT_APP_ORDER, // Full path to the json file that defines the
22 FILE_OWNER_KEY, // Full path to the owner key file.
23 FILE_INSTALL_ATTRIBUTES, // Full path to the install attributes file.
24 FILE_UPTIME, // Full path to the file via which the kernel
26 FILE_UPDATE_REBOOT_NEEDED_UPTIME, // Full path to a file in which Chrome can
  /external/chromium_org/third_party/mesa/src/docs/
MESA_set_3dfx_mode.spec 32 The Mesa Glide driver allows full-screen rendering or rendering into
34 to switch between full-screen and windowed rendering.
55 The Mesa Glide device driver allows either rendering in full-screen
57 full-screen and window rendering with the command:
62 rendering or GLX_3DFX_FULLSCREEN_MODE_MESA to indicate full-screen mode.
  /external/mesa3d/docs/
MESA_set_3dfx_mode.spec 32 The Mesa Glide driver allows full-screen rendering or rendering into
34 to switch between full-screen and windowed rendering.
55 The Mesa Glide device driver allows either rendering in full-screen
57 full-screen and window rendering with the command:
62 rendering or GLX_3DFX_FULLSCREEN_MODE_MESA to indicate full-screen mode.
  /external/eigen/test/
sparse_permutations.cpp 70 VERIFY(res.isApprox(res_d) && "full selfadjoint upper to full");
74 VERIFY(res.isApprox(res_d) && "full selfadjoint lower to full");
79 VERIFY(res.isApprox(res_d) && "upper selfadjoint to full");
83 VERIFY(res.isApprox(res_d) && "lower selfadjoint full");
88 VERIFY(res.isApprox(res_d) && "full selfadjoint upper to full");
92 VERIFY(res.isApprox(res_d) && "full selfadjoint lower to full");
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
SignerWithRecovery.java 10 * Returns true if the signer has recovered the full message as
13 * @return true if full message recovered.
20 * @return full/partial message, null if nothing.
  /external/chromium/net/tools/flip_server/
split.cc 17 void SplitStringPieceToVector(const base::StringPiece& full,
22 if (full.empty() || delim[0] == '\0')
26 base::StringPiece::const_iterator s = full.begin();
28 for (;e != full.end(); ++e) {
44 base::StringPiece::const_iterator s = full.begin();
46 for (;e != full.end(); ++e) {
  /external/chromium_org/net/tools/balsa/
split.cc 17 void SplitStringPieceToVector(const base::StringPiece& full,
22 if (full.empty() || delim[0] == '\0')
26 base::StringPiece::const_iterator s = full.begin();
28 for (;e != full.end(); ++e) {
44 base::StringPiece::const_iterator s = full.begin();
46 for (;e != full.end(); ++e) {