Home
last modified time | relevance | path

Searched refs:full (Results 1 – 25 of 928) sorted by relevance

12345678910>>...38

/external/ceres-solver/internal/ceres/
Dsplit.cc49 static int CalculateReserveForVector(const string& full, const char* delim) { in CalculateReserveForVector() argument
54 const char* p = full.data(); in CalculateReserveForVector()
55 const char* end = p + full.size(); in CalculateReserveForVector()
72 void SplitStringToIteratorUsing(const StringType& full, in SplitStringToIteratorUsing() argument
78 const char* p = full.data(); in SplitStringToIteratorUsing()
79 const char* end = p + full.size(); in SplitStringToIteratorUsing()
95 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()
97 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()
99 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()
102 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()
[all …]
/external/webkit/Source/WebCore/css/
Dfullscreen.css1 :-webkit-full-screen {
5 :root:full-screen-document:not(:full-screen) {
9 video:-webkit-full-screen {
19 img:-webkit-full-screen {
25 video:-webkit-full-page-media:-webkit-full-screen::-webkit-media-controls-panel {
DfullscreenQuickTime.css27 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/openfst/src/lib/
Dcompat.cc32 void SplitToVector(char* full, const char* delim, vector<char*>* vec, in SplitToVector() argument
34 char *p = full; in SplitToVector()
36 if ((p = strpbrk(full, delim))) in SplitToVector()
38 if (!omit_empty_strings || full[0] != '\0') in SplitToVector()
39 vec->push_back(full); in SplitToVector()
41 full = p + 1; in SplitToVector()
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Darith_routines.c50 if (streamData->full == 0) { in WebRtcIsacfix_EncTerminate()
74 if (streamData->full == 0) { in WebRtcIsacfix_EncTerminate()
76 streamData->full = 1; in WebRtcIsacfix_EncTerminate()
80 streamData->full = 0; in WebRtcIsacfix_EncTerminate()
91 if (streamData->full == 0) { in WebRtcIsacfix_EncTerminate()
113 if (streamData->full) { in WebRtcIsacfix_EncTerminate()
123 return (((streamPtr - streamData->stream)<<1) + !(streamData->full)); in WebRtcIsacfix_EncTerminate()
Darith_routines_hist.c85 if (streamData->full == 0) { in WebRtcIsacfix_EncHistMulti()
105 if (streamData->full == 0) { in WebRtcIsacfix_EncHistMulti()
107 streamData->full = 1; in WebRtcIsacfix_EncHistMulti()
111 streamData->full = 0; in WebRtcIsacfix_EncHistMulti()
233 if (streamData->full == 0) { in WebRtcIsacfix_DecHistBisectMulti()
236 streamData->full = 1; in WebRtcIsacfix_DecHistBisectMulti()
240 streamData->full = 0; in WebRtcIsacfix_DecHistBisectMulti()
258 return (streamData->stream_index*2 - 3 + !streamData->full); in WebRtcIsacfix_DecHistBisectMulti()
260 return (streamData->stream_index*2 - 2 + !streamData->full); in WebRtcIsacfix_DecHistBisectMulti()
383 if (streamData->full == 0) { in WebRtcIsacfix_DecHistOneStepMulti()
[all …]
Darith_routines_logist.c169 if (streamData->full == 0) { in WebRtcIsacfix_EncLogisticMulti2()
189 if (streamData->full == 0) { in WebRtcIsacfix_EncLogisticMulti2()
192 streamData->full = 1; in WebRtcIsacfix_EncLogisticMulti2()
196 streamData->full = 0; in WebRtcIsacfix_EncLogisticMulti2()
381 if (streamData->full == 0) { in WebRtcIsacfix_DecLogisticMulti2()
383 streamData->full = 1; in WebRtcIsacfix_DecLogisticMulti2()
387 streamData->full = 0; in WebRtcIsacfix_DecLogisticMulti2()
401 return (streamData->stream_index*2 - 3 + !streamData->full); in WebRtcIsacfix_DecLogisticMulti2()
403 return (streamData->stream_index*2 - 2 + !streamData->full); in WebRtcIsacfix_DecLogisticMulti2()
/external/valgrind/main/gdbserver_tests/
Dmcleak.stdinB.gdb16 monitor leak_check full reachable any
22 monitor leak_check full reachable increased
30 monitor leak_check full reachable increased
38 monitor leak_check full reachable increased
44 monitor leak_check full reachable increased
51 monitor leak_check full reachable increased
58 monitor leak_check full reachable changed
65 monitor leak_check full reachable changed
72 monitor leak_check full reachable changed
/external/chromium/net/tools/flip_server/
Dsplit.cc17 void SplitStringPieceToVector(const base::StringPiece& full, in SplitStringPieceToVector() argument
22 if (full.empty() || delim[0] == '\0') in SplitStringPieceToVector()
26 base::StringPiece::const_iterator s = full.begin(); in SplitStringPieceToVector()
28 for (;e != full.end(); ++e) { in SplitStringPieceToVector()
44 base::StringPiece::const_iterator s = full.begin(); in SplitStringPieceToVector()
46 for (;e != full.end(); ++e) { in SplitStringPieceToVector()
/external/compiler-rt/make/platform/
Dclang_linux.mk54 Configs += full-i386 profile-i386 asan-i386 ubsan-i386
55 Arch.full-i386 := i386
63 Configs += full-x86_64 profile-x86_64 asan-x86_64 tsan-x86_64 msan-x86_64 \
65 Arch.full-x86_64 := x86_64
85 CFLAGS.full-i386 := $(CFLAGS) -m32
86 CFLAGS.full-x86_64 := $(CFLAGS) -m64
110 CFLAGS.full-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux
111 CFLAGS.full-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
115 FUNCTIONS.full-i386 := $(CommonFunctions) $(ArchFunctions.i386)
116 FUNCTIONS.full-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
/external/icu4c/common/
Duniset_closure.cpp165 addCaseMapping(UnicodeSet &set, int32_t result, const UChar *full, UnicodeString &str) { in addCaseMapping() argument
172 str.setTo((UBool)FALSE, full, result); in addCaseMapping()
207 const UChar *full; in closeOver() local
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
224 addCaseMapping(foldSet, result, full, str); in closeOver()
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
227 addCaseMapping(foldSet, result, full, str); in closeOver()
229 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache); in closeOver()
230 addCaseMapping(foldSet, result, full, str); in closeOver()
232 result = ucase_toFullFolding(csp, cp, &full, 0); in closeOver()
[all …]
Ducase.cpp409 FullCaseFoldingIterator::next(UnicodeString &full) { in next() argument
421 full.setTo(FALSE, p, length); in next()
816 int32_t full; in ucase_toFullLower() local
925 GET_SLOT_VALUE(excWord, UCASE_EXC_FULL_MAPPINGS, pe, full); in ucase_toFullLower()
926 full&=UCASE_FULL_LOWER; in ucase_toFullLower()
927 if(full!=0) { in ucase_toFullLower()
932 return full; in ucase_toFullLower()
960 int32_t full, idx; in toUpperOrTitle() local
996 GET_SLOT_VALUE(excWord, UCASE_EXC_FULL_MAPPINGS, pe, full); in toUpperOrTitle()
1002 pe+=full&UCASE_FULL_LOWER; in toUpperOrTitle()
[all …]
/external/openssh/
Dlogintest.c225 char full[17], strip[9], abbrev[5]; in testLineName() local
227 memset(full, '\0', sizeof(full)); in testLineName()
231 line_fullname(full, line, sizeof(full)-1); in testLineName()
232 line_stripname(strip, full, sizeof(strip)-1); in testLineName()
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1); in testLineName()
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev); in testLineName()
/external/icu4c/data/brkitr/
Dthaidict.txt5403 # ดี.ซี. -- TODO: why does this have full stop in it?
15975 # วี.ดี. # TODO: why do these have full stops?
16360 # ส.ธรนินทร์ -- TODO: why do these have full stops?
23314 # เอ.ยู.เอ. -- TODO: why do we have a full stop?
/external/libppp/src/
Dtcp.c140 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) { in tcp_Create()
142 host = p->name.full; in tcp_Create()
160 p->name.full); in tcp_Create()
188 if (*p->name.full == '\0') { in tcp_Create()
199 snprintf(p->name.full, sizeof p->name.full, "%s:%d/tcp", in tcp_Create()
201 p->name.base = p->name.full; in tcp_Create()
Datm.c192 p->name.full); in atm_CreateDevice()
196 log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno)); in atm_CreateDevice()
198 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno)); in atm_CreateDevice()
213 if (p->fd < 0 && !strncasecmp(p->name.full, PPPOA, PPPOA_LEN) in atm_Create()
214 && p->name.full[PPPOA_LEN] == ':') { in atm_Create()
218 if (sscanf(p->name.full + PPPOA_LEN + 1, "%25[A-Za-z0-9]:%u.%u", iface, in atm_Create()
221 "PPPoA:if:vpi.vci expected\n", p->name.full); in atm_Create()
Dudp.c122 if (*p->name.full == '\0') { in udp_Recvfrom()
123 snprintf(p->name.full, sizeof p->name.full, "%s:%d/udp", in udp_Recvfrom()
125 p->name.base = p->name.full; in udp_Recvfrom()
236 p->name.full); in udp_CreateDevice()
241 log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno)); in udp_CreateDevice()
243 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno)); in udp_CreateDevice()
260 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) { in udp_Create()
262 host = p->name.full; in udp_Create()
Dphysical.c211 *p->name.full = '\0'; in physical_Create()
212 p->name.base = p->name.full; in physical_Create()
319 if (*p->name.full == '/' && p->type != PHYS_DIRECT && in physical_Lock()
322 log_Printf(LogPHASE, "%s: %s is in use\n", p->link.name, p->name.full); in physical_Lock()
325 p->link.name, p->name.full, uu_lockerr(res)); in physical_Lock()
335 if (*p->name.full == '/' && p->type != PHYS_DIRECT && in physical_Unlock()
383 if (*p->name.full == '/') { in physical_Close()
397 p->name.base = p->name.full; in physical_Close()
398 *p->name.full = '\0'; in physical_Close()
471 *p->name.full ? p->name.full : in physical_ShowStatus()
[all …]
/external/skia/legacy/src/xml/
DSkJS.cpp108 char *path, *comp, *full; in global_resolve() local
125 full = JS_smprintf("%s/%s", comp, name); in global_resolve()
126 if (!full) { in global_resolve()
132 full = (char *)name; in global_resolve()
134 found = (access(full, X_OK) == 0); in global_resolve()
136 free(full); in global_resolve()
/external/skia/src/xml/
DSkJS.cpp108 char *path, *comp, *full; in global_resolve() local
125 full = JS_smprintf("%s/%s", comp, name); in global_resolve()
126 if (!full) { in global_resolve()
132 full = (char *)name; in global_resolve()
134 found = (access(full, X_OK) == 0); in global_resolve()
136 free(full); in global_resolve()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dcompat.cpp110 void SplitToVector(char* full, const char* delim, vector<char*>* vec, in SplitToVector() argument
112 char* next = full; in SplitToVector()
113 while((next = strsep(&full, delim)) != NULL) { in SplitToVector()
118 if (full != NULL) { in SplitToVector()
119 vec->push_back(full); in SplitToVector()
/external/valgrind/main/callgrind/
Dthreads.c113 t->lastdump_cost = CLG_(get_eventset_cost)( CLG_(sets).full ); in new_thread()
114 t->sighandler_cost = CLG_(get_eventset_cost)( CLG_(sets).full ); in new_thread()
115 CLG_(init_cost)( CLG_(sets).full, t->lastdump_cost ); in new_thread()
116 CLG_(init_cost)( CLG_(sets).full, t->sighandler_cost ); in new_thread()
211 CLG_(zero_cost)( CLG_(sets).full, es->cost ); in CLG_()
280 CLG_(add_and_zero_cost)( CLG_(sets).full, in CLG_()
330 es->cost = CLG_(get_eventset_cost)(CLG_(sets).full); in new_exec_state()
331 CLG_(zero_cost)( CLG_(sets).full, es->cost ); in new_exec_state()
424 CLG_(print_cost)(-9, CLG_(sets).full, es->cost); in exec_state_save()
451 CLG_(print_cost)(-9, CLG_(sets).full, es->cost); in exec_state_restore()
/external/webkit/Source/WebKit/win/
DDefaultDownloadDelegate.cpp121 BSTR full = SysAllocStringLen(0, (UINT)fullLength); in decideDestinationWithSuggestedFilename() local
122 if (!full) in decideDestinationWithSuggestedFilename()
125 wcscpy_s(full, fullLength, pathChars); in decideDestinationWithSuggestedFilename()
126 wcscat_s(full, fullLength, L"\\"); in decideDestinationWithSuggestedFilename()
127 wcscat_s(full, fullLength, filename); in decideDestinationWithSuggestedFilename()
129 fullPath.adoptBSTR(full); in decideDestinationWithSuggestedFilename()
/external/chromium/chrome/browser/autofill/
Dselect_control_handler.cc140 string16 abbrev, full; in FillStateSelectControl() local
143 full = State::FullName(value); in FillStateSelectControl()
146 full = value; in FillStateSelectControl()
153 if (full.empty()) in FillStateSelectControl()
156 return SetSelectControlValue(full, field); in FillStateSelectControl()
/external/qemu/android/utils/
Ddirscanner.c21 char full[PATH_MAX]; \
195 p = s->full; in dirScanner_nextFull()
196 end = p + sizeof s->full; in dirScanner_nextFull()
203 return s->full; in dirScanner_nextFull()

12345678910>>...38