/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;
|
/external/ceres-solver/internal/ceres/ |
split.cc | 51 static int CalculateReserveForVector(const string& full, const char* delim) { 56 const char* p = full.data(); 57 const char* end = p + full.size(); 74 void SplitStringToIteratorUsing(const StringType& full, 80 const char* p = full.data(); 81 const char* end = p + full.size(); 97 begin_index = full.find_first_not_of(delim); 99 end_index = full.find_first_of(delim, begin_index); 101 *result++ = full.substr(begin_index); 104 *result++ = full.substr(begin_index, (end_index - begin_index)) [all...] |
split.h | 43 void SplitStringUsing(const string& full, const char* delim,
|
/build/target/product/ |
aosp_arm.mk | 16 $(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk)
|
full.mk | 17 # This is a build configuration for a full-featured build of the 28 PRODUCT_NAME := full
|
AndroidProducts.mk | 38 $(LOCAL_DIR)/full.mk \ 51 $(LOCAL_DIR)/full.mk \
|
/external/lzma/CPP/7zip/UI/Common/ |
PropIDUtils.h | 10 UString ConvertPropertyToString(const PROPVARIANT &propVariant, PROPID propID, bool full = true);
|
/external/llvm/test/MC/ARM/ |
full_line_comment.s | 2 # this is a full line comment starting at column 1
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
arith_routines.c | 50 if (streamData->full == 0) { 73 /* write remaining data to bitstream, if "full == 0" first byte has data */ 74 if (streamData->full == 0) { 76 streamData->full = 1; 80 streamData->full = 0; 91 if (streamData->full == 0) { 113 if (streamData->full) { 123 return (((streamPtr - streamData->stream)<<1) + !(streamData->full));
|
arith_routines_hist.c | 85 if (streamData->full == 0) { 105 if (streamData->full == 0) { 107 streamData->full = 1; 111 streamData->full = 0; 233 if (streamData->full == 0) { 236 streamData->full = 1; 240 streamData->full = 0; 258 return (streamData->stream_index*2 - 3 + !streamData->full); 260 return (streamData->stream_index*2 - 2 + !streamData->full); 383 if (streamData->full == 0) [all...] |
/external/chromium/net/tools/flip_server/ |
split.h | 16 void SplitStringPieceToVector(const base::StringPiece& full,
|
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.h | 15 void SplitStringPieceToVector(const base::StringPiece& full,
|
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/skia/dm/ |
DMTileGridTask.cpp | 36 SkBitmap full; local 37 SetupBitmap(fReference.config(), fGM.get(), &full); 38 SkCanvas fullCanvas(full); 48 for (int y = 0; y < tiles_needed(full.height(), tile.height()); y++) { 49 for (int x = 0; x < tiles_needed(full.width(), tile.width()); x++) { 64 if (!BitmapsEqual(full, fReference)) { 66 this->spawnChild(SkNEW_ARGS(WriteTask, (*this, full)));
|
/external/chromium_org/third_party/mesa/src/doxygen/ |
Makefile | 2 default: full 4 all: full subset 9 FULL = \ 22 full: $(FULL:.doxy=.tag) 23 $(foreach FILE,$(FULL),doxygen $(FILE);) 33 -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
|
/external/mesa3d/doxygen/ |
Makefile | 2 default: full 4 all: full subset 9 FULL = \ 22 full: $(FULL:.doxy=.tag) 23 $(foreach FILE,$(FULL),doxygen $(FILE);) 33 -rm -rf $(FULL:.doxy=) $(SUBSET:.doxy=)
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
phishing_url_feature_extractor.h | 40 const std::string& full,
|
/external/chromium_org/components/autofill/core/browser/ |
state_names.cc | 101 base::string16 full = GetNameForAbbreviation(value); local 103 if (full.empty()) { 105 full = value; 109 name->swap(full);
|
/external/openssh/ |
logintest.c | 225 char full[17], strip[9], abbrev[5]; local 227 memset(full, '\0', sizeof(full)); 231 line_fullname(full, line, sizeof(full)-1); 232 line_stripname(strip, full, sizeof(strip)-1); 233 line_abbrevname(abbrev, full, sizeof(abbrev)-1); 234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
compat.cpp | 110 void SplitToVector(char* full, const char* delim, vector<char*>* vec, 112 char* next = full; 113 while((next = strsep(&full, delim)) != NULL) { 117 // Add last element (or full string if no delimeter found): 118 if (full != NULL) { 119 vec->push_back(full);
|
/external/icu4c/common/ |
uniset_closure.cpp | 162 // add the result of a full case mapping to the set 165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { 171 // add a string case mapping from full with length result 172 str.setTo((UBool)FALSE, full, result); 207 const UChar *full; local 215 // full case closure 223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache); 224 addCaseMapping(foldSet, result, full, str); 226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache); 227 addCaseMapping(foldSet, result, full, str) [all...] |
/external/libppp/src/ |
tcp.c | 140 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) { 142 host = p->name.full; 160 p->name.full); 188 if (*p->name.full == '\0') { 199 snprintf(p->name.full, sizeof p->name.full, "%s:%d/tcp", 201 p->name.base = p->name.full;
|
/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.
|