• Home
  • Raw
  • Download

Lines Matching refs:Line

76 Line          **gICULines;
79 Line source;
80 Line target;
81 Line *gSource = &source;
82 Line *gTarget = ⌖
138 (*(Line **)a)->name, (*(Line **)a)->len, in Winstrcmp()
139 (*(Line **)b)->name, (*(Line **)b)->len); in Winstrcmp()
147 (*(Line **)a)->name, (*(Line **)a)->len, in ICUstrcmp()
148 (*(Line **)b)->name, (*(Line **)b)->len); in ICUstrcmp()
164 delete((Line *)line); in deleteLineElement()
330 void escapeALine(Line *line, UFILE *file) { in escapeALine()
334 void escapeExpansion(Line *line, UFILE *file) { in escapeExpansion()
338 void showNames(Line *line, UFILE *file) { in showNames()
348 void setArray(Line **array, Line *contents, int32_t size) { in setArray()
357 setArray(Line **array, Hashtable *table = &gElements) { in setArray()
363 array[count++] = (Line *)hashElement->value.pointer; in setArray()
368 UBool trySwamped(Line **smaller, Line **greater, UChar chars[2], CompareFn comparer) { in trySwamped()
388 UBool trySwamps(Line **smaller, Line **greater, UChar chars[2], CompareFn comparer) { in trySwamps()
407 probeStrength(Line** prevLine, Line **currLine, CompareFn comparer) { in probeStrength()
472 analyzeStrength(Line **lines, int32_t size, CompareFn comparer) { in analyzeStrength()
476 Line **prevLine = lines+i-1; in analyzeStrength()
477 Line **currLine = lines+i; in analyzeStrength()
514 void printStrength(Line *line, UFILE *file) { in printStrength()
518 void printLine(Line *line, UFILE *file) { in printLine()
526 void printOrdering(Line **lines, int32_t size, UFILE *file, UBool useLinks = FALSE) { in printOrdering()
532 Line *line = NULL; in printOrdering()
533 Line *previous = *lines; in printOrdering()
567 void setIndexes(Line **lines, int32_t size) { in setIndexes()
571 Line *line = *(lines+i); in setIndexes()
572 Line *prev = *(lines+i-1); in setIndexes()
582 noteExpansion(Line **gLines, Line *line, int32_t size, CompareFn comparer) { in noteExpansion()
587 Line *toInsert = (Line *)gExpansions.get(key); in noteExpansion()
596 toInsert = new Line(*line); in noteExpansion()
602 Line testLine; in noteExpansion()
603 Line *l = &testLine; in noteExpansion()
626 positionExpansions(Line **gLines, int32_t size, CompareFn comparer) { in positionExpansions()
628 Line *line = NULL; in positionExpansions()
629 Line *toMove = NULL; in positionExpansions()
631 Line **sortedExpansions = new Line*[gExpansions.count()]; in positionExpansions()
633 qsort(sortedExpansions, sortedExpansionsSize, sizeof(Line *), comparer); in positionExpansions()
638 toMove = (Line *)gElements.get(key); in positionExpansions()
640 Line testLine, prevTestLine; in positionExpansions()
641 Line *l = &testLine; in positionExpansions()
642 Line *prevL = &prevTestLine; in positionExpansions()
647 Line *current = *gLines; in positionExpansions()
739 noteExpansion(Line *line) { in noteExpansion()
742 Line *el = (Line *)gElements.get(key); in noteExpansion()
748 Line *toInsert = new Line(*line); in noteExpansion()
753 Line *el2 = (Line *)gExpansions.get(key); in noteExpansion()
766 noteContraction(Line *line) { in noteContraction()
768 Line *toInsert = new Line(*line); in noteContraction()
779 noteElement(Line *line) { in noteElement()
781 Line *toInsert = new Line(*line); in noteElement()
797 analyzeContractions(Line** lines, int32_t size, CompareFn comparer) { in analyzeContractions()
802 Line **prevLine = lines; in analyzeContractions()
803 Line **currLine = NULL; in analyzeContractions()
804 Line **backupLine = NULL; in analyzeContractions()
894 detectContractions(Line **gLines, Line *lines, int32_t size, CompareFn comparer) { in detectContractions()
898 Line *backupLines = new Line[size]; in detectContractions()
899 Line::copyArray(backupLines, lines, size); in detectContractions()
902 Line **gLinesBackup = NULL; //new Line*[size]; in detectContractions()
906 Line::copyArray(lines, backupLines, size); in detectContractions()
915 gLinesBackup = new Line*[size]; in detectContractions()
919 qsort(gLinesBackup, size, sizeof(Line *), comparer); in detectContractions()
941 detectExpansions(Line **gLines, int32_t size, CompareFn comparer) { in detectExpansions()
947 Line start, end, src; in detectExpansions()
948 Line *startP = &start, *endP = &end, *srcP = &src; in detectExpansions()
949 Line *current = NULL; in detectExpansions()
950 memset(startP, 0, sizeof(Line)); in detectExpansions()
951 memset(endP, 0, sizeof(Line)); in detectExpansions()
952 memset(srcP, 0, sizeof(Line)); in detectExpansions()
1025 Line *doubles = new Line[size*10]; in detectExpansions()
1026 Line **sorter = new Line*[size*10]; in detectExpansions()
1029 Line *prev = NULL; in detectExpansions()
1030 Line *next = NULL; in detectExpansions()
1031 Line *origin = NULL; in detectExpansions()
1053 current = (Line *)el->value.pointer; in detectExpansions()
1069 qsort(sorter, newSize, sizeof(Line*), comparer); in detectExpansions()
1126 isTailored(Line *line, UErrorCode &status) { in isTailored()
1153 reduceUntailored(Line **gLines, int32_t size){ in reduceUntailored()
1155 Line *current = *(gLines); in reduceUntailored()
1156 Line *previous = NULL; in reduceUntailored()
1185 constructAndAnalyze(Line **gLines, Line *lines, int32_t size, CompareFn comparer) { in constructAndAnalyze()
1193 qsort(gLines, size, sizeof(Line *), comparer); in constructAndAnalyze()
1219 qsort(gLines, size, sizeof(Line *), comparer); in constructAndAnalyze()
1256 Line **sortedLines = new Line*[size]; in checkCaseOrdering()
1257 Line lines[size]; in checkCaseOrdering()
1266 qsort(sortedLines, size, sizeof(Line*), gComparer); in checkCaseOrdering()
1299 Line **sortedLines = new Line*[size]; in checkSecondaryOrdering()
1300 Line lines[size]; in checkSecondaryOrdering()
1309 qsort(sortedLines, size, sizeof(Line*), gComparer); in checkSecondaryOrdering()
1336 Line empty; in removeIgnorableChars()
1337 Line *emptyP = ∅ in removeIgnorableChars()
1338 Line current; in removeIgnorableChars()
1339 Line *currLine = &current; in removeIgnorableChars()
1546 gICULines = new Line*[exemplarSetSize*5]; in processCollator()
1549 Line *lines = new Line[exemplarSetSize]; in processCollator()
1581 Line *currLine = lines+linesCount; in processCollator()