HomeSort by relevance Sort by last modified time
    Searched refs:Character (Results 276 - 300 of 598) sorted by null

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleter.java 84 if (!contents.isEmpty() && Character.isDigit(contents.charAt(0))
91 if (Character.isDigit(c)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceNameValidator.java 131 if (!Character.isJavaIdentifierStart(newText.charAt(0))) {
132 return "The resource name must begin with a character";
136 if (!Character.isJavaIdentifierPart(c)) {
137 return String.format("'%1$c' is not a valid resource name character", c);
  /libcore/luni/src/test/java/libcore/xml/
NormalizeTest.java 82 assertEquals(false, domConfiguration.getParameter("check-character-normalization"));
83 assertSupported("check-character-normalization", false);
84 assertUnsupported("check-character-normalization", true);
406 errorRecorder.assertAllErrors(DOMError.SEVERITY_ERROR, "wf-invalid-character");
439 errorRecorder.assertAllErrors(DOMError.SEVERITY_ERROR, "wf-invalid-character");
452 for (int c = 0; c <= Character.MAX_VALUE; c++) {
458 errorRecorder.assertAllErrors("For character " + c,
459 DOMError.SEVERITY_ERROR, "wf-invalid-character");
473 for (int c = 0; c <= Character.MAX_VALUE; c++) {
479 errorRecorder.assertAllErrors("For character " + c
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java 342 // Test \c (control character) sequence
357 // character
361 p = Pattern.compile("\\c" + Character.toString((char) ('A' + i)));
364 m = p.matcher(Character.toString((char) j));
412 // Test one character range
423 // Test two character range
456 // Test character range using -
478 // Test ranges including the "-" character
503 // Test character class intersection with &&
570 // Test character class subtraction with && and
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectPage.java 484 sb.append(Character.toUpperCase(c));
502 if (Character.isLetterOrDigit(c) || c == '.' || c == '-') {
620 && Character.isDigit(minSdk.charAt(0))
698 if (i == 0 && Character.isJavaIdentifierStart(c)
699 || i != 0 && Character.isJavaIdentifierPart(c)) {
700 sb.append(Character.toLowerCase(c));
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
FieldTest.java 245 primitiveType = Character.toUpperCase(primitiveType);
263 res = new Character(f.getChar(o));
292 primitiveType = Character.toUpperCase(primitiveType);
310 f.setChar(o, ((Character) value).charValue());
433 new Short((short) 1), new Character((char) 1), new Integer(1),
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 124 char c = Character.toUpperCase(string.charAt(i));
125 if (Character.isJavaIdentifierStart(c)) {
134 if (Character.isJavaIdentifierPart(c)) {
199 * Returns the string unmodified if the first character is not [a-z].
205 if (str == null || str.length() < 1 || Character.isUpperCase(str.charAt(0))) {
210 sb.append(Character.toUpperCase(str.charAt(0)));
228 boolean lastWasUpperCase = Character.isUpperCase(string.charAt(0));
231 boolean isUpperCase = Character.isUpperCase(c);
236 c = Character.toLowerCase(c);
261 c = Character.toUpperCase(c)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 181 return Character.isUpperCase(ruleName.charAt(0)) ? Grammar.LEXER : Grammar.PARSER;
408 Character.isUpperCase(refdSymbol.charAt(0)) )
435 Character.isUpperCase(refdSymbol.charAt(0)) )
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 272 * 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 value seen in the statetable
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java 110 // Keeps track of most recently inserted text (multi-character key) for reverting
312 final int firstChar = Character.codePointAt(suggestion, 0);
511 // We auto-correct the previous (typed, not gestured) string iff it's one character
525 if (Character.isLetterOrDigit(codePointBeforeCursor)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsValues.java 236 return Character.isLetter(code) || isWordConnector(code)
237 || Character.COMBINING_SPACING_MARK == Character.getType(code);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java 92 * Returns whether we may want to use this character as part of a file name.
113 // character in a file name. This is probably true for all file systems.
395 final int codePoint = Character.codePointAt(text, i);
396 final int charCount = Character.charCount(codePoint);
398 if (Character.isDigit(codePoint)) {
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 96 String class_dir = class_path[0].replaceAll("/|\\.", Character.toString(File.separatorChar));
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
SignatureSourcer.java 218 getBuf().append(Type.getType(Character.toString(descriptor)).getClassName());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CSharp3Target.java 130 return Character.toUpperCase(value.charAt(0)) + value.substring(1);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPUnitDebuggeeProcessWrapper.java 160 while (Character.isWhitespace(cmd.charAt(arg))) arg++;
164 if (p >= len || Character.isWhitespace(cmd.charAt(p))) {
209 while (Character.isWhitespace(cmd.charAt(arg))) arg++;
230 if (p >= len || Character.isWhitespace(cmd.charAt(p))) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 118 * character cannot be used as the first segment of a relative URI path
177 && Character.isLetter(systemId.charAt(0))
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 111 * character cannot be used as the first segment of a relative URI path
170 && Character.isLetter(systemId.charAt(0))
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTokenizer.h 170 // * The first set of character tokens emitted for a <pre> element might
175 // instead of as character tokens.
203 inline void bufferCharacter(UChar character)
205 ASSERT(character != kEndOfFileMarker);
207 m_token->appendToCharacter(character);
238 // Return whether we need to emit a character token before dealing with
259 return m_token->type() == HTMLToken::Character;
270 // http://www.whatwg.org/specs/web-apps/current-work/#additional-allowed-character
281 // We occationally want to emit both a character token and an end tag
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Wildcard.java 131 if (!Character.isJavaIdentifierPart(c))
  /external/javassist/src/main/javassist/util/proxy/
FactoryHelper.java 78 Boolean.TYPE, Byte.TYPE, Character.TYPE, Short.TYPE, Integer.TYPE,
86 "java.lang.Boolean", "java.lang.Byte", "java.lang.Character",
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
NumPadKey.java 58 mTextView.append(Character.forDigit(mDigit, 10));
  /frameworks/base/wifi/java/android/net/wifi/
WifiSsid.java 121 val = Character.digit(asciiEncoded.charAt(i), HEX_RADIX);
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 45 * Returns the character array.
196 * Returns the character at {@code index}.
518 * Sets the character at the {@code index}.
521 * the zero-based index of the character to replace.
523 * the character to set.
658 * Searches for the first index of the specified character. The search for
659 * the character starts at the beginning and moves towards the end.
663 * @return the index of the specified character, -1 if the character isn't
673 * Searches for the index of the specified character. The search for th
    [all...]
StringBuilder.java 317 * {@code char[]} as defined by {@link Character#toChars(int)}.
322 * @see Character#toChars(int)
325 append0(Character.toChars(codePoint));
348 * Deletes the character at the specified index. shifts any remaining
352 * the index of the character to delete.
604 * the start of the subsequence of the character sequence.
606 * the end of the subsequence of the character sequence.

Completed in 1836 milliseconds

<<11121314151617181920>>