HomeSort by relevance Sort by last modified time
    Searched refs:full (Results 1 - 25 of 365) sorted by null

1 2 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;
  /external/ceres-solver/internal/ceres/
split.cc 49 static int CalculateReserveForVector(const string& full, const char* delim) {
54 const char* p = full.data();
55 const char* end = p + full.size();
72 void SplitStringToIteratorUsing(const StringType& full,
78 const char* p = full.data();
79 const char* end = p + full.size();
95 begin_index = full.find_first_not_of(delim);
97 end_index = full.find_first_of(delim, begin_index);
99 *result++ = full.substr(begin_index);
102 *result++ = full.substr(begin_index, (end_index - begin_index))
    [all...]
split.h 16 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/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...]
arith_routines_logist.c 169 if (streamData->full == 0) {
189 if (streamData->full == 0) {
192 streamData->full = 1;
196 streamData->full = 0;
381 if (streamData->full == 0) {
383 streamData->full = 1;
387 streamData->full = 0;
401 return (streamData->stream_index*2 - 3 + !streamData->full);
403 return (streamData->stream_index*2 - 2 + !streamData->full);
  /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/webkit/Source/WebCore/css/
fullscreenQuickTime.css 27 video:-webkit-full-screen::-webkit-media-controls-panel {
59 video:-webkit-full-screen::-webkit-media-controls-mute-button {
63 video:-webkit-full-screen::-webkit-media-controls-volume-slider-container {
67 video:-webkit-full-screen::-webkit-media-controls-volume-slider {
71 video:-webkit-full-screen::-webkit-media-controls-volume-slider-mute-button {
75 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-min-button {
85 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-slider {
95 video:-webkit-full-screen::-webkit-media-controls-fullscreen-volume-max-button {
105 video:-webkit-full-screen::-webkit-media-controls-play-button {
113 video:-webkit-full-screen::-webkit-media-controls-rewind-button
    [all...]
  /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;
  /build/tools/atree/
fs.cpp 63 string full = path; local
64 full += '/';
65 full += ent->d_name;
71 stat(full.c_str(), &stat_buf);
75 dirs.push_back(full);
77 files.push_back(full);
  /external/skia/legacy/src/xml/
SkJS.cpp 108 char *path, *comp, *full; local
125 full = JS_smprintf("%s/%s", comp, name);
126 if (!full) {
132 full = (char *)name;
134 found = (access(full, X_OK) == 0);
136 free(full);
  /external/skia/src/xml/
SkJS.cpp 108 char *path, *comp, *full; local
125 full = JS_smprintf("%s/%s", comp, name);
126 if (!full) {
132 full = (char *)name;
134 found = (access(full, X_OK) == 0);
136 free(full);
  /device/lge/mako/
full_mako.mk 21 PRODUCT_COPY_FILES := device/sample/etc/apns-full-conf.xml:system/etc/apns-conf.xml
  /external/qemu/android/utils/
dirscanner.c 21 char full[PATH_MAX]; \
195 p = s->full;
196 end = p + sizeof s->full;
200 /* ignore if the full name is too long */
203 return s->full;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AppBridge.java 47 // This is used to notify that the screen nail will be drawn in full screen
49 public abstract void onFullScreenChanged(boolean full);
  /frameworks/base/nfc-extras/
Android.mk 13 # put the classes.jar, with full class files instead of classes.dex inside, into the dist directory
  /frameworks/base/services/java/com/android/server/pm/
PreferredActivity.java 49 public void writeToXml(XmlSerializer serializer, boolean full) throws IOException {
50 mPref.writeToXml(serializer, full);

Completed in 1057 milliseconds

1 2 3 4 5 6 7 8 91011>>