Searched refs:nChars (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/vim-55/src/
H A Dgui_at_fs.c95 int nChars; member in struct:__anon13990
307 dir->nChars = strlen(cannotOpen);
569 SFhomeDir.nChars = maxChars + 2;
929 if (dir->hOrigin > dir->nChars - SFcharsPerEntry)
930 dir->hOrigin = dir->nChars - SFcharsPerEntry;
1228 if ((SFdirPtr + n < SFdirEnd) && dir->nEntries && dir->nChars)
1252 (float) (((double) dir->hOrigin) / dir->nChars),
1253 (float) (((double) ((dir->nChars <
1254 SFcharsPerEntry) ? dir->nChars :
1255 SFcharsPerEntry)) / dir->nChars));
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/ExplorerPlugin/
H A DExplorerPlugin.cpp315 DWORD nChars; local
341 nChars = WideCharToMultiByte( CP_ACP, 0, clsidWideString, -1, clsidString, sizeof_array( clsidString ), NULL, NULL );
342 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr );
349 nChars = GetModuleFileName( inInstance, moduleName, sizeof_array( moduleName ) );
350 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr );
491 nChars = WideCharToMultiByte( CP_ACP, 0, clsidWideString, -1, clsidString, sizeof_array( clsidString ), NULL, NULL );
492 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr );
H A DExplorerBar.cpp290 DWORD nChars; local
292 nChars = MultiByteToWideChar( CP_ACP, 0, s, -1, outInfo->wszTitle, sizeof_array( outInfo->wszTitle ) );
293 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr );
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/ControlPanel/
H A DControlPanelExe.cpp307 DWORD nChars; local
310 nChars = GetModuleFileName( NULL, exePath, sizeof_array( exePath ) );
312 err = translate_errno( nChars > 0, (OSStatus) GetLastError(), kUnknownErr );
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dstring.h61 size_t nChars));
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dstring.h63 size_t nChars));
/macosx-10.10.1/ICU-531.30/icuSources/test/letest/
H A DFontObject.h193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/leperf/
H A DFontObject.h193 le_uint32 unicodesToGlyphs(LEUnicode *chars, le_uint32 nChars, LEGlyphID *glyphs,
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkEntry.c667 * Adjust index to account for insertion (nChars > 0)
668 * or deletion (nChars < 0) at specified index.
670 static int AdjustIndex(int i0, int index, int nChars) argument
673 i0 += nChars;
686 static void AdjustIndices(Entry *entryPtr, int index, int nChars) argument
689 int g = nChars > 0; /* left gravity adjustment */
691 e->insertPos = AdjustIndex(e->insertPos, index, nChars);
692 e->selectFirst = AdjustIndex(e->selectFirst, index, nChars);
693 e->selectLast = AdjustIndex(e->selectLast, index+g, nChars);
694 e->xscroll.first= AdjustIndex(e->xscroll.first, index+g, nChars);
[all...]

Completed in 150 milliseconds