/third_party/boost/libs/regex/doc/ |
D | locale.qbk | 22 interact with directly. It deals with case conversion, collation, and character 116 [[101][The character used to start a sub-expression.]["(" ]] 117 [[102][The character used to end a sub-expression declaration.][")" ]] 118 [[103][The character used to denote an end of line assertion.]["$" ]] 119 [[104][The character used to denote the start of line assertion.]["^" ]] 120 [[105][The character used to denote the "match any character expression".]["." ]] 124 [[109][The character set opening character.]["\[" ]] 125 [[110][The character set closing character.]["\]" ]] 127 [[112][The escape character.]["\\" ]] 128 [[113][The hash character (not currently used).]["#" ]] [all …]
|
D | format_sed_syntax.qbk | 14 [[character][description]] 15 [[&][The ampersand character is replaced in the output stream by 17 \\& to output a literal '&' character.]] 21 An escape character followed by any character x, outputs that character unless x 26 [[\\a][Outputs the bell character: '\\a'.]] 27 [[\\e][Outputs the ANSI escape character (code point 27).]] 28 [[\\f][Outputs a form feed character: '\\f']] 29 [[\\n][Outputs a newline character: '\\n'.]] 30 [[\\r][Outputs a carriage return character: '\\r'.]] 31 [[\\t][Outputs a tab character: '\\t'.]] [all …]
|
D | character_class_names.qbk | 13 The following character class names are always supported by Boost.Regex: 17 [[alnum] [Yes] [Any alpha-numeric character.]] 18 [[alpha] [Yes] [Any alphabetic character.]] 19 [[blank] [Yes] [Any whitespace character that is not a line separator.]] 20 [[cntrl] [Yes] [Any control character.]] 23 [[graph] [Yes] [Any graphical character.]] 24 [[l] [No] [Any lower case character.]] 25 [[lower] [Yes] [Any lower case character.]] 26 [[print] [Yes] [Any printable character.]] 27 [[punct] [Yes] [Any punctuation character.]] [all …]
|
D | syntax_extended.qbk | 32 The single character '.' when used outside of a character set will match 33 any single character except: 35 * The NULL character when the flag `match_no_dot_null` is passed to the 37 * The newline character when the flag `match_not_dot_newline` is passed 42 A '^' character shall match the start of a line when used as the first 43 character of an expression, or the first character of a sub-expression. 45 A '$' character shall match the end of a line when used as the 46 last character of an expression, or the last character of a sub-expression. 57 Any atom (a single character, a marked sub-expression, or a character class) 127 An escape character followed by a digit /n/, where /n/ is in the range 1-9, [all …]
|
D | syntax_basic.qbk | 32 The single character '.' when used outside of a character set will match any 33 single character except: 35 * The NULL character when the flag `match_no_dot_null` is passed to the 37 * The newline character when the flag `match_not_dot_newline` is passed to 42 A '^' character shall match the start of a line when used as the first 43 character of an expression, or the first character of a sub-expression. 45 A '$' character shall match the end of a line when used as the last 46 character of an expression, or the last character of a sub-expression. 57 Any atom (a single character, a marked sub-expression, or a character class) 105 An escape character followed by a digit /n/, where /n/ is in the range 1-9, [all …]
|
D | format_perl_syntax.qbk | 43 An escape character followed by any character x, outputs that character unless 49 [[\\a][Outputs the bell character: '\\a'.]] 50 [[\\e][Outputs the ANSI escape character (code point 27).]] 51 [[\\f][Outputs a form feed character: '\\f']] 52 [[\\n][Outputs a newline character: '\\n'.]] 53 [[\\r][Outputs a carriage return character: '\\r'.]] 54 [[\\t][Outputs a tab character: '\\t'.]] 55 [[\\v][Outputs a vertical tab character: '\\v'.]] 56 [[\\xDD][Outputs the character whose hexadecimal code point is 0xDD]] 57 [[\\x{DDDD}][Outputs the character whose hexadecimal code point is 0xDDDDD]] [all …]
|
D | format_boost_syntax.qbk | 21 The character '?' begins a conditional expression, the general form is: 77 An escape character followed by any character x, outputs that character unless 82 [[\\a][Outputs the bell character: '\\a'.]] 83 [[\\e][Outputs the ANSI escape character (code point 27).]] 84 [[\\f][Outputs a form feed character: '\\f']] 85 [[\\n][Outputs a newline character: '\\n'.]] 86 [[\\r][Outputs a carriage return character: '\\r'.]] 87 [[\\t][Outputs a tab character: '\\t'.]] 88 [[\\v][Outputs a vertical tab character: '\\v'.]] 89 [[\\xDD][Outputs the character whose hexadecimal code point is 0xDD]] [all …]
|
/third_party/jerryscript/jerry-core/lit/ |
D | lit-char-helpers.c | 526 search_in_bidirectional_conversion_tables (ecma_char_t character, /**< code unit */ in search_in_bidirectional_conversion_tables() argument 544 if (start_point > character || character >= start_point + range_length) in search_in_bidirectional_conversion_tables() 549 int char_dist = character - start_point; in search_in_bidirectional_conversion_tables() 553 …fer_p[0] = is_lowercase ? (ecma_char_t) (lit_character_case_ranges[i + 1] + char_dist) : character; in search_in_bidirectional_conversion_tables() 557 …output_buffer_p[0] = is_lowercase ? character : (ecma_char_t) (lit_character_case_ranges[i - 1] + … in search_in_bidirectional_conversion_tables() 572 … if (current_sp <= character && character < current_sp + lit_character_pair_range_lengths[middle]) in search_in_bidirectional_conversion_tables() 574 int char_dist = character - current_sp; in search_in_bidirectional_conversion_tables() 576 if ((character - current_sp) % 2 == 0) in search_in_bidirectional_conversion_tables() 578 output_buffer_p[0] = is_lowercase ? (ecma_char_t) (current_sp + char_dist + 1) : character; in search_in_bidirectional_conversion_tables() 582 output_buffer_p[0] = is_lowercase ? character : (ecma_char_t) (current_sp + char_dist - 1); in search_in_bidirectional_conversion_tables() [all …]
|
/third_party/node/deps/npm/node_modules/yargs-parser/node_modules/camelcase/ |
D | index.js | 9 const character = string[i]; constant 11 if (isLastCharLower && /[a-zA-Z]/.test(character) && character.toUpperCase() === character) { 17 …harUpper && isLastLastCharUpper && /[a-zA-Z]/.test(character) && character.toLowerCase() === chara… 23 isLastCharLower = character.toLowerCase() === character && character.toUpperCase() !== character; 25 isLastCharUpper = character.toUpperCase() === character && character.toLowerCase() !== character;
|
/third_party/python/Doc/library/ |
D | curses.ascii.rst | 13 functions to test membership in various ASCII character classes. The constants 51 | :const:`SO` | Shift-out, begin alternate character set | 53 | :const:`SI` | Shift-in, resume default character set | 101 Checks for an ASCII alphanumeric character; it is equivalent to ``isalpha(c) or 107 Checks for an ASCII alphabetic character; it is equivalent to ``isupper(c) or 113 Checks for a character value that fits in the 7-bit ASCII set. 118 Checks for an ASCII whitespace character; space or horizontal tab. 123 Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f). 134 Checks for ASCII any printable character except space. 139 Checks for an ASCII lower-case character. [all …]
|
D | email.charset.rst | 1 :mod:`email.charset`: Representing character sets 16 This module provides a class :class:`Charset` for representing character sets 17 and character set conversions in email messages, as well as a character set 27 Map character sets to their email properties. 30 specific character set. It also provides convenience routines for converting 31 between character sets, given the availability of the applicable codecs. Given 32 a character set, it will do its best to provide information on how to use that 33 character set in an email message in an RFC-compliant way. 35 Certain character sets must be encoded with quoted-printable or base64 when used 36 in email headers or bodies. Certain character sets must be converted outright, [all …]
|
D | unicodedata.rst | 13 single: character 19 defines character properties for all Unicode characters. The data contained in 31 Look up character by name. If a character with the given name is found, return 32 the corresponding character. If not found, :exc:`KeyError` is raised. 40 Returns the name assigned to the character *chr* as a string. If no 47 Returns the decimal value assigned to the character *chr* as integer. 54 Returns the digit value assigned to the character *chr* as integer. 61 Returns the numeric value assigned to the character *chr* as float. 68 Returns the general category assigned to the character *chr* as 74 Returns the bidirectional class assigned to the character *chr* as [all …]
|
/third_party/boost/libs/spirit/doc/karma/ |
D | char.qbk | 11 This module includes different character oriented generators allowing to output 13 `char_` (single characters, ranges and character sets) and the encoding 14 specific character classifiers (`alnum`, `alpha`, `digit`, `xdigit`, etc.). 28 The character generators described in this section are: 33 character ranges. 39 The no argument form of `char_` emits any character in the associated 42 char_ // emits any character as supplied by the attribute 46 The single argument form of `char_` (with a character argument) emits 47 the supplied character. 55 `char_` with two arguments, emits any character from a range of characters as [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sample/subtly/ |
D | character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { in operator ()() 32 return start_ <= character && character <= end_; in operator ()() 44 bool AcceptSet::operator()(int32_t character) const { in operator ()() 45 return characters_->find(character) != characters_->end(); in operator ()() 49 bool AcceptAll::operator()(int32_t character) const { in operator ()() 50 UNREFERENCED_PARAMETER(character); in operator ()()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/ |
D | character_predicate.cc | 31 bool AcceptRange::operator()(int32_t character) const { in operator ()() 32 return start_ <= character && character <= end_; in operator ()() 44 bool AcceptSet::operator()(int32_t character) const { in operator ()() 45 return characters_->find(character) != characters_->end(); in operator ()() 49 bool AcceptAll::operator()(int32_t character) const { in operator ()() 50 UNREFERENCED_PARAMETER(character); in operator ()()
|
/third_party/re2/doc/ |
D | syntax.txt | 5 . any character, possibly including newline (s=true) 6 [xyz] character class 7 [^xyz] negated character class 8 \d Perl character class 9 \D negated Perl character class 10 [[:alpha:]] ASCII character class 11 [[:^alpha:]] negated ASCII character class 12 \pN Unicode character class (one-letter name) 13 \p{Greek} Unicode character class 14 \PN negated Unicode character class (one-letter name) [all …]
|
/third_party/glib/gio/xdgmime/ |
D | xdgmimeglob.c | 53 xdg_unichar_t character; member 171 printf ("%c", (char)glob_hash_node->character); in _xdg_glob_hash_node_dump() 192 xdg_unichar_t character; in _xdg_glob_hash_insert_ucs4() local 194 character = text[0]; in _xdg_glob_hash_insert_ucs4() 197 (character < glob_hash_node->character)) in _xdg_glob_hash_insert_ucs4() 200 node->character = character; in _xdg_glob_hash_insert_ucs4() 204 else if (character == glob_hash_node->character) in _xdg_glob_hash_insert_ucs4() 220 if (character < node->character) in _xdg_glob_hash_insert_ucs4() 223 node->character = character; in _xdg_glob_hash_insert_ucs4() 230 else if (character == node->character) in _xdg_glob_hash_insert_ucs4() [all …]
|
/third_party/node/deps/npm/node_modules/wrap-ansi/ |
D | index.js | 17 const wordLengths = string => string.split(' ').map(character => stringWidth(character)); 27 for (const [index, character] of characters.entries()) { 28 const characterLength = stringWidth(character); 31 rows[rows.length - 1] += character; 33 rows.push(character); 37 if (ESCAPES.has(character)) { 39 } else if (insideEscape && character === 'm') { 159 for (const [index, character] of [...pre].entries()) { 160 ret += character; 162 if (ESCAPES.has(character)) { [all …]
|
/third_party/icu/docs/userguide/ |
D | glossary.md | 21 **accent** | A modifying mark on a character to indicate a change in vocal tone for pronunciation.… 22 **accent character** | A character that has a diacritic attached to it. 26 **ASCII** | "American Standard Code for Information Interchange." A standard 7-bit character set us… 28 **base character** | A base character is a Unicode character that does not graphically combine with… 36 …n a string. The boundary position is an integer that is the index of the character that follows it. 38 …character which results from recursively applying the canonical mappings until no characters can b… 39 **canonical equivalent** | Two character sequences are said to be canonical equivalents if their fu… 40 …which IBM® uses to refer to the combination of particular code page(s), character set(s), and othe… 41 **character boundary** | A location between characters. 42 **character properties** | The given properties of a character. These properties include, but are n… [all …]
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | ArabicCharacterData.java | 44 private Record(int character) in Record() argument 46 codePoint = character; in Record() 47 generalCategory = UCharacter.getType(character); in Record() 48 … decompositionType = UCharacter.getIntPropertyValue(character, UProperty.DECOMPOSITION_TYPE); in Record() 55 decomposition = Normalizer.compose(UCharacter.toString(character), true); in Record() 59 decomposition = Normalizer.decompose(UCharacter.toString(character), true); in Record() 78 private void add(int character) in add() argument 80 records[recordIndex++] = new Record(character); in add()
|
/third_party/flutter/skia/src/ports/ |
D | SkFontMgr_ohos.cpp | 105 const SkString& langTag, SkUnichar character) in find_family_style_character() argument 124 if (face->unicharToGlyph(character) != 0) { in find_family_style_character() 133 const SkString& langTag, SkUnichar character) in find_family_style_character_ohos() argument 135 SkString matchingName = findFromCache(familyName, style, elegant, langTag, character); in find_family_style_character_ohos() 157 if (face->unicharToGlyph(character) != 0) { in find_family_style_character_ohos() 169 SkUnichar character) { in find_family_style_character_hwfont() argument 171 findFromHwFontCache(familyName, style, elegant, langTag, character); in find_family_style_character_hwfont() 194 if (face->unicharToGlyph(character) != 0) { in find_family_style_character_hwfont() 204 const SkString& langTag, SkUnichar character) in findFromCache() argument 224 if (face->unicharToGlyph(character) != 0) { in findFromCache() [all …]
|
/third_party/boost/libs/spirit/doc/qi/ |
D | char.qbk | 12 characters, ranges and character sets) and the encoding specific 13 character classifiers (`alnum`, `alpha`, `digit`, `xdigit`, etc.). 30 character ranges. 36 The no argument form of `char_` matches any character in the associated 39 char_ // matches any character 43 The single argument form of `char_` (with a character argument) matches 44 the supplied character. 57 A range of characters is created from a low-high character pair. Such a 58 parser matches a single character that is in the range, including both 59 endpoints. Note, the first character must be /before/ the second, [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | parserSkippedTokens12.errors.txt | 1 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens12.ts(1,1): error TS1127: Invalid character. 2 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens12.ts(1,3): error TS1127: Invalid character. 3 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens12.ts(1,5): error TS1127: Invalid character. 9 !!! error TS1127: Invalid character. 11 !!! error TS1127: Invalid character. 13 !!! error TS1127: Invalid character.
|
D | parserSkippedTokens11.errors.txt | 1 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens11.ts(1,3): error TS1127: Invalid character. 2 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens11.ts(1,5): error TS1127: Invalid character. 3 …ce/parser/ecmascript5/SkippedTokens/parserSkippedTokens11.ts(1,7): error TS1127: Invalid character. 9 !!! error TS1127: Invalid character. 11 !!! error TS1127: Invalid character. 13 !!! error TS1127: Invalid character.
|
/third_party/typescript/src/services/codefixes/ |
D | fixInvalidJsxCharacters.ts | 34 function isValidCharacter(character: string): character is keyof typeof htmlEntity { 35 return hasProperty(htmlEntity, character); 39 const character = sourceFile.getText()[start]; constant 41 if (!isValidCharacter(character)) { 45 …const replacement = useHtmlEntity ? htmlEntity[character] : `{${quote(sourceFile, preferences, cha… constant
|