Home
last modified time | relevance | path

Searched refs:charType (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/custom/
H A DStructuredTextCharTypes.java123 if (charType == B) { in getBidiTypeAt()
126 return charType; // avoid infinite recursion in getBidiTypeAt()
132 setBidiTypeAt(index, charType); in getBidiTypeAt()
133 return charType; in getBidiTypeAt()
145 public void setBidiTypeAt(int index, byte charType) { in setBidiTypeAt() argument
146 types[index] = (byte) (charType + CHARTYPES_ADD); in setBidiTypeAt()
167 byte charType; in resolveOrientation()
173 setBidiTypeAt(i, charType); in resolveOrientation()
175 charType = getCachedTypeAt(i); in resolveOrientation()
176 if (charType == L) in resolveOrientation()
[all …]
H A DStructuredTextOffsets.java124 byte charType = charTypes.getBidiTypeAt(offset); in insertOffset()
127 if (charType == L || charType == R || charType == AL || charType == EN || charType == AN) in insertOffset()
/dports/lang/seed7/seed7/src/
H A Dchr_rtl.h39 striType chrCLit (charType character);
41 striType chrCLitToBuffer (charType character, striType buffer);
43 intType chrCmp (charType char1, charType char2);
44 boolType chrIsLetter (charType ch);
45 charType chrLow (charType ch);
46 striType chrStr (charType ch);
47 charType chrUp (charType ch);
48 intType chrWidth (charType ch);
H A Dchr_rtl.c285 static const charType east_asian_width[] = {
298 static inline boolType is_nonspacing (charType ch) in is_nonspacing()
324 static inline boolType is_doublewidth (charType ch) in is_doublewidth()
329 int max = sizeof(east_asian_width) / sizeof(charType) - 1; in is_doublewidth()
349 striType chrCLit (charType character) in chrCLit()
448 intType chrCmp (charType char1, charType char2) in chrCmp()
501 boolType chrIsLetter (charType ch) in chrIsLetter()
531 charType chrLow (charType ch) in chrLow()
544 striType chrStr (charType ch) in chrStr()
572 charType chrUp (charType ch) in chrUp()
[all …]
H A Dliteral.c134 symbol.charValue = (charType) symbol.intValue; in escape_sequence()
176 charType utf8_char (register int character) in utf8_char()
180 charType result; in utf8_char()
186 result = (charType) (character & 0x1F) << 6; in utf8_char()
214 result = (charType) (character & 0x0F) << 12; in utf8_char()
219 result |= (charType) (character & 0x3F) << 6; in utf8_char()
251 result = (charType) (character & 0x07) << 18; in utf8_char()
256 result |= (charType) (character & 0x3F) << 12; in utf8_char()
298 result = (charType) (character & 0x03) << 24; in utf8_char()
302 result |= (charType) (character & 0x3F) << 18; in utf8_char()
[all …]
H A Dstr_rtl.h56 const charType searched, const charType replacement);
57 intType strChIPos (const const_striType mainStri, const charType searched,
59 striType strChMult (const charType ch, const intType factor);
60 intType strChPos (const const_striType mainStri, const charType searched);
62 const charType searched, const const_striType replacement);
68 striType strConcatChar (const const_striType stri1, const charType aChar);
69 striType strConcatCharTemp (striType stri1, const charType aChar);
98 void strPush (striType *const destination, const charType extension);
103 intType strRChIPos (const const_striType mainStri, const charType searched,
105 intType strRChPos (const const_striType mainStri, const charType searched);
H A Dkbd_inf.c379 static charType read_f_key (charType actual_char) in read_f_key()
391 charType result; in read_f_key()
871 charType kbdGetc (void) in kbdGetc()
875 charType result; in kbdGetc()
884 result = (charType) EOF; in kbdGetc()
893 result = (charType) EOF; in kbdGetc()
895 result = (charType) ch; in kbdGetc()
905 charType kbdRawGetc (void) in kbdRawGetc()
909 charType result; in kbdRawGetc()
918 result = (charType) EOF; in kbdRawGetc()
[all …]
H A Dut8_rtl.c286 charType ut8Getc (fileType inFile) in ut8Getc()
291 charType result; in ut8Getc()
312 result = (charType) (character & 0x1F) << 6; in ut8Getc()
338 result = (charType) (character & 0x0F) << 12; in ut8Getc()
342 result |= (charType) (character & 0x3F) << 6; in ut8Getc()
376 result = (charType) (character & 0x07) << 18; in ut8Getc()
426 result = (charType) (character & 0x03) << 24; in ut8Getc()
485 result = (charType) (character & 0x03) << 30; in ut8Getc()
555 result = (charType) (scharType) character; in ut8Getc()
782 *terminationChar = (charType) ch; in ut8LineRead()
[all …]
H A Dsoc_none.c107 charType socGetc (socketType inSocket, charType *const eofIndicator) in socGetc()
111 return (charType) EOF; in socGetc()
116 striType socGets (socketType inSocket, intType length, charType *const eofIndicator) in socGets()
197 striType socLineRead (socketType inSocket, charType *const terminationChar) in socLineRead()
269 striType socWordRead (socketType inSocket, charType *const terminationChar) in socWordRead()
H A Dgkb_rtl.c98 striType gkbLineRead (charType *terminationChar) in gkbLineRead()
101 register charType ch; in gkbLineRead()
116 while ((ch = gkbGetc()) != '\n' && ch != (charType) ((scharType) EOF)) { in gkbLineRead()
162 striType gkbWordRead (charType *terminationChar) in gkbWordRead()
165 register charType ch; in gkbWordRead()
184 ch != '\n' && ch != (charType) ((scharType) EOF)) { in gkbWordRead()
H A Dsoc_rtl.h52 charType socGetc (socketType inSocket, charType *const eofIndicator);
53 striType socGets (socketType inSocket, intType length, charType *const eofIndicator);
62 striType socLineRead (socketType inSocket, charType *const terminationChar);
72 striType socWordRead (socketType inSocket, charType *const terminationChar);
H A Dfil_rtl.h61 charType filGetcChkCtrlC (fileType inFile);
66 striType filLineRead (fileType inFile, charType *terminationChar);
67 striType filLineReadChkCtrlC (fileType inFile, charType *terminationChar);
81 striType filWordRead (fileType inFile, charType *terminationChar);
82 striType filWordReadChkCtrlC (fileType inFile, charType *terminationChar);
H A Dkbd_rtl.c103 striType kbdLineRead (charType *terminationChar) in kbdLineRead()
106 register charType ch; in kbdLineRead()
122 while ((ch = kbdGetc()) != '\n' && ch != (charType) ((scharType) EOF)) { in kbdLineRead()
170 striType kbdWordRead (charType *terminationChar) in kbdWordRead()
173 register charType ch; in kbdWordRead()
193 ch != '\n' && ch != (charType) ((scharType) EOF)) { in kbdWordRead()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/
H A DStructuredTextRegex.java93 byte charType; in indexOfSpecial()
120 charType = charTypes.getBidiTypeAt(fromIndex); in indexOfSpecial()
122 if (charType == R || charType == AL) in indexOfSpecial()
125 if (charType == EN || charType == AN) { in indexOfSpecial()
127 if (charTypes.getBidiTypeAt(fromIndex - 1) == charType) in indexOfSpecial()
131 charType = charTypes.getBidiTypeAt(i); in indexOfSpecial()
133 if (charType == L) in indexOfSpecial()
140 if (charType == R || charType == AL || charType == AN) in indexOfSpecial()
251 byte charType = charTypes.getBidiTypeAt(i); in getDirection()
252 if (charType == AL || charType == R) in getDirection()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/ILCompiler.TypeSystem/tests/
H A DGenericTypeAndMethodTests.cs130 TypeDesc charType = _context.GetWellKnownType(WellKnownType.Char); in TestConstructedTypeAdjustment()
140 … Assert.Equal(true, genericOfCharObject.IsConstructedOverType(new TypeDesc[] { charType })); in TestConstructedTypeAdjustment()
146 … Assert.Equal(true, genericOfCharString.IsConstructedOverType(new TypeDesc[] { charType })); in TestConstructedTypeAdjustment()
163 TypeDesc arrayChar = _context.GetArrayType(charType); in TestConstructedTypeAdjustment()
179 TypeDesc mdArrayChar = _context.GetArrayType(charType, 3); in TestConstructedTypeAdjustment()
195 TypeDesc charPointer = _context.GetPointerType(charType); in TestConstructedTypeAdjustment()
200 Assert.Equal(true, charPointer.IsConstructedOverType(new TypeDesc[] { charType })); in TestConstructedTypeAdjustment()
204 TypeDesc charByRef = _context.GetByRefType(charType); in TestConstructedTypeAdjustment()
209 Assert.Equal(true, charByRef.IsConstructedOverType(new TypeDesc[] { charType })); in TestConstructedTypeAdjustment()
223 TypeDesc charType = _context.GetWellKnownType(WellKnownType.Char); in TestConstructedMethodAdjustment()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/tests/Xslt/XslCompiledTransformApi/
H A DErrata4.cs150 CharType charType = (CharType)param1; in CreateElementsAndAttributesUsingXsltAndXPath()
153 …lidChar ? UnicodeCharHelper.GetValidCharacters(charType) : UnicodeCharHelper.GetInvalidCharacters( in CreateElementsAndAttributesUsingXsltAndXPath()
213 CharType charType = (CharType)param1; in CreateElementsAndAttributesUsingXsltInline()
216 …lidChar ? UnicodeCharHelper.GetValidCharacters(charType) : UnicodeCharHelper.GetInvalidCharacters( in CreateElementsAndAttributesUsingXsltInline()
247 switch (charType) in GenerateStringToInject()
293 CharType charType = (CharType)param1; in TestXslTransform()
295 foreach (string name in FuzzNames(!isValidChar, charType, numOfRepeat)) in TestXslTransform()
341 UnicodeCharHelper.GetInvalidCharacters(charType) : in FuzzNames()
342 UnicodeCharHelper.GetValidCharacters(charType); in FuzzNames()
350 private string GenerateString(char c, CharType charType) in GenerateString() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml.Linq/tests/misc/
H A DXLinqErrata4.cs44 public void varation1(string testType, string charType, string nodeType) in varation1() argument
47 foreach (char c in GetRandomCharacters(testType, charType)) in varation1()
49 string name = GetName(charType, c); in varation1()
73 foreach (char c in GetRandomCharacters("Valid", charType)) in varation2()
75 string name = GetName(charType, c); in varation2()
116 public string GetValidCharacters(string charType) in GetValidCharacters() argument
119 switch (charType) in GetValidCharacters()
150 public string GetInValidCharacters(string charType) in GetInValidCharacters() argument
153 switch (charType) in GetInValidCharacters()
268 public string GetName(string charType, char c) in GetName() argument
[all …]
/dports/math/speedcrunch/heldercorreia-speedcrunch-c0fc9c68d292/src/gui/
H A Dsyntaxhighlighter.cpp275 static int charType[128] = { 0 }; in groupDigits() local
292 charType[int('a')] = HEX_CHAR; in groupDigits()
293 charType[int('b')] = HEX_CHAR; in groupDigits()
294 charType[int('c')] = HEX_CHAR; in groupDigits()
295 charType[int('d')] = HEX_CHAR; in groupDigits()
296 charType[int('e')] = HEX_CHAR; in groupDigits()
297 charType[int('f')] = HEX_CHAR; in groupDigits()
298 charType[int('A')] = HEX_CHAR; in groupDigits()
299 charType[int('B')] = HEX_CHAR; in groupDigits()
300 charType[int('C')] = HEX_CHAR; in groupDigits()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/
H A DStructuredTextImpl.java164 if (charType == R || charType == AL) in processSeparator()
166 if (charType == L) { in processSeparator()
169 if (charType == R || charType == AL) in processSeparator()
171 if (charType == L || charType == EN) { in processSeparator()
186 if (charType == L) in processSeparator()
188 if (charType == R || charType == AL) { in processSeparator()
191 if (charType == L) in processSeparator()
193 if (charType == R || charType == EN || charType == AL || charType == AN) { in processSeparator()
200 if (charType == AN && !doneAN) { in processSeparator()
203 if (charType == L) in processSeparator()
[all …]
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JSearch/indexer/com/sun/java/help/search/
H A DDefaultIndexerKit.java119 int charType = Character.getType(word.charAt(0)); in parseIntoTokens() local
120 if ((charType == Character.DECIMAL_DIGIT_NUMBER) || in parseIntoTokens()
121 (charType == Character.LETTER_NUMBER) || in parseIntoTokens()
122 (charType == Character.LOWERCASE_LETTER) || in parseIntoTokens()
123 (charType == Character.OTHER_LETTER) || in parseIntoTokens()
124 (charType == Character.OTHER_NUMBER) || in parseIntoTokens()
125 (charType == Character.TITLECASE_LETTER) || in parseIntoTokens()
126 (charType == Character.UNASSIGNED) || in parseIntoTokens()
127 (charType == Character.UPPERCASE_LETTER)) { in parseIntoTokens()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.bidi.tests/src/org/eclipse/equinox/bidi/internal/tests/
H A DStructuredTextMath.java56 byte charType = charTypes.getBidiTypeAt(i); in getDirection()
57 if (charType == AL) in getDirection()
59 if (charType == L || charType == R) in getDirection()
61 if (charType == AN) in getDirection()
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JSearch/client/com/sun/java/help/search/
H A DQueryEngine.java99 int charType = Character.getType(term.charAt(0)); in processQuery() local
100 if ((charType == Character.DECIMAL_DIGIT_NUMBER) || in processQuery()
101 (charType == Character.LETTER_NUMBER) || in processQuery()
102 (charType == Character.LOWERCASE_LETTER) || in processQuery()
103 (charType == Character.OTHER_LETTER) || in processQuery()
104 (charType == Character.OTHER_NUMBER) || in processQuery()
105 (charType == Character.TITLECASE_LETTER) || in processQuery()
106 (charType == Character.UNASSIGNED) || in processQuery()
107 (charType == Character.UPPERCASE_LETTER)) { in processQuery()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/node_modules/magic-string/
H A Dindex.d.ts53 trim(charType?: string): Bundle;
54 trimStart(charType?: string): Bundle;
55 trimEnd(charType?: string): Bundle;
100 trim(charType?: string): MagicString;
101 trimStart(charType?: string): MagicString;
102 trimEnd(charType?: string): MagicString;
/dports/graphics/swfmill/swfmill-0.3.6/src/swft/
H A DSVGPathParser.cpp13 CharType charType; in parse() local
19 charType = getCharType(currentChar); in parse()
21 if(charType != OTHER) { in parse()
29 if(charType == COMMAND_ABSOLUTE || charType == COMMAND_RELATIVE) { in parse()
/dports/lang/seed7/seed7/lib/comp/
H A Dchr_act.s7i56 declareExtern(c_prog, "striType chrCLit (charType);");
58 declareExtern(c_prog, "intType chrCmp (charType, charType);");
61 declareExtern(c_prog, "boolType chrIsLetter (charType);");
62 declareExtern(c_prog, "charType chrLow (charType);");
63 declareExtern(c_prog, "striType chrStr (charType);");
69 declareExtern(c_prog, "charType chrUp (charType);");
71 declareExtern(c_prog, "intType chrWidth (charType);");
205 c_expr.expr &:= "(charType) ";
226 c_expr.expr &:= "/*no_range_check_conversion*/(charType)(";
247 c_expr.expr &:= ":(charType)";
[all …]

12345678910>>...29