Searched refs:character (Results 176 - 200 of 351) sorted by relevance

1234567891011>>

/external/blktrace/doc/
H A Dblktrace.tex485 & & event type. The single-character \emph{typ} field is one of the \\
597 \emph{D} & 7-character string containing the major and minor numbers of
617 with a '\%' character, followed by the optional left-alignment specifer
620 Thus, to specify the command in a 12-character field that is left aligned:
649 This is a small string containing at least one character ('R' for read,
665 \item[\%2c] CPU ID (2-character field).
668 time stamp and a 9-character field for the nanoseconds in the time stamp.
669 \item[\%5p] 5-character field for the process ID.
670 \item[\%2a] 2-character field for one of the actions.
671 \item[\%3d] 3-character fiel
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumbermatcher.cc76 bool IsInvalidPunctuationSymbol(char32 character) { argument
77 return character == '%' || u_charType(character) == U_CURRENCY_SYMBOL;
90 // We ignore the character if 'x' or 'X' appears as the last character of
217 // Same as lead_class_chars_, but enclosed as a character class.
420 // phone-number punctuation, check the previous character.
/external/chromium_org/ui/events/
H A Devent.h570 // or a character event (is_char_ == true).
579 // if the mapped key generates a character that has an associated VKEY_
586 // For a character event,
589 // -- character_ is a UTF-16 character value.
597 // be either a keystroke message (WM_KEYUP/WM_KEYDOWN) or a character message
604 // Create a character event.
605 KeyEvent(base::char16 character, KeyboardCode key_code, int flags);
635 void set_character(base::char16 character) { character_ = character; } argument
637 // Gets the character generate
[all...]
H A Devent_unittest.cc167 uint16 character; member in struct:ui::__anon16724
242 EXPECT_EQ(kTestData[i].character, key.GetCharacter())
/external/chromium_org/ui/events/test/
H A Devent_generator.cc510 uint16 character = ui::GetCharacterFromKeyCode(key_code, flags); local
511 if (is_press && character) {
515 // On Windows, WM_KEYDOWN event is followed by WM_CHAR with a character
516 // if the key event cooresponds to a real character.
518 key_code = static_cast<ui::KeyboardCode>(character);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatcher.java215 * @param text the character sequence that we will search, null for no text
284 * Helper method to determine if a character is a Latin-script letter or not. For our purposes,
286 * Latin character.
303 private static boolean isInvalidPunctuationSymbol(char character) { argument
304 return character == '%' || Character.getType(character) == Character.CURRENCY_SYMBOL;
308 * Attempts to extract a match from a {@code candidate} character sequence.
399 // punctuation, check the previous character.
631 // or 'X'. We ignore the character if it appears as the last character o
[all...]
/external/bison/src/
H A Dparse-gram.y123 unsigned char character;
198 %type <character> CHAR
729 /* Stop on last actual character. */
/external/checkpolicy/
H A Dpolicy_scan.l273 . { yywarn("unrecognized character");}
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DMediaQueryTokenizer.cpp418 bool MediaQueryTokenizer::consumeIfNext(UChar character) argument
420 if (m_input.nextInputChar() == character) {
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecICU.cpp381 static UChar fallbackForGBK(UChar32 character) argument
383 switch (character) {
396 // Invalid character handler when writing escaped entities for unrepresentable
425 // Combines both gbkUrlEscapedEntityCallback and GBK character substitution.
H A DWTFString.h202 // Find a single character or string, also with match function & latin1 forms.
219 // Find the last instance of a single character or string.
261 bool startsWith(UChar character) const
262 { return m_impl ? m_impl->startsWith(character) : false; }
269 bool endsWith(UChar character) const
270 { return m_impl ? m_impl->endsWith(character) : false; }
H A DStringImpl.cpp613 // Since this upper-cased character does not fit in an 8-bit string, we need to take the 16-bit path.
773 PassRefPtr<StringImpl> StringImpl::fill(UChar character) argument
775 if (!(character & ~0x7F)) {
779 data[i] = character;
785 data[i] = character;
1491 bool StringImpl::startsWith(UChar character) const
1493 return m_length && (*this)[0] == character;
1514 bool StringImpl::endsWith(UChar character) const
1516 return m_length && (*this)[m_length - 1] == character;
/external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/
H A Dstring.pxd15 # as a string formed by a repetition of character c, n times.
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java272 * Index into the state table for [state][input character - 2].
274 * { current state, input character, action, next state }.
276 * { current state, input character } and store the result in
279 * characters 0 to the highest character value in the state table.
280 * An input character of -2 is used to cover all other characters
281 * as -2 is guaranteed not to match any input character entry
284 * <p>When doing lookups, the input character should first be tested
286 * if it isn't use -2 as the input character.
288 * <p>Finally, add 2 to the input character to cover for the fact that
298 * The highest character valu
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
H A DOAuth.php96 * character (ASCII code 38) even if empty.
132 * Token Secret, separated by a '&' character (ASCII code 38), even if either secret is
873 // For each parameter, the name is separated from the corresponding value by an '=' character (ASCII code 61)
874 // Each name-value pair is separated by an '&' character (ASCII code 38)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp128 UChar character = attributeValue[i]; local
129 if (character == newlineCharacter || character == carriageReturn)
131 stripped.append(character);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextRun.h216 virtual GlyphData glyphDataForCharacter(const Font&, const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) = 0;
243 unsigned m_directionalOverride : 1; // Was this direction set by an override character.
/external/chromium_org/third_party/icu/source/test/iotest/
H A Dstrtst.c747 UChar character; local
770 actual_result = u_sscanf(x15, "%C%d%n", &character, &i32, &actual_count);
774 if (character != 0x78) {
775 log_err("scanf should return 0x78 for the character, but returned %X\n", character);
/external/icu/icu4c/source/test/iotest/
H A Dstrtst.c747 UChar character; local
770 actual_result = u_sscanf(x15, "%C%d%n", &character, &i32, &actual_count);
774 if (character != 0x78) {
775 log_err("scanf should return 0x78 for the character, but returned %X\n", character);
/external/linux-tools-perf/perf-3.12.0/arch/xtensa/lib/
H A Dmemset.S48 slli a7, a3, 8 # duplicate character in all bytes of word
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak1 # This allows us to work with the newline character:
23 # single space each newline character in the output
/external/valgrind/main/coregrind/m_demangle/
H A Ddemangle.h392 /* A name formed by a single character. */
518 int character; member in struct:demangle_component::__anon32526::__anon32536
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCComboBox.java645 event.character = kEvent.character;
/external/libunwind/doc/
H A Dunw_get_proc_name.tex21 \Var{cp}. The \Var{bufp} argument is a pointer to a character buffer
/external/libvorbis/doc/
H A DVorbis_I_spec.tex39 % Normally, one can not use the underscore character in LaTeX without

Completed in 584 milliseconds

1234567891011>>