HomeSort by relevance Sort by last modified time
    Searched full:lookingat (Results 1 - 25 of 48) sorted by null

1 2

  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
PatternScanner.java 56 if (matcher.lookingAt()) {
89 return matcher.lookingAt();
95 if (matcher.lookingAt()) {
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 110 inline bool Parser::LookingAt(const char* text) {
123 if (LookingAt(text)) {
224 } else if (LookingAt("inf")) {
228 } else if (LookingAt("nan")) {
256 if (LookingAt(text)) {
391 } else if (LookingAt("}")) {
436 if (require_syntax_identifier_ || LookingAt("syntax")) {
455 if (LookingAt("}")) {
494 } else if (LookingAt("message")) {
498 } else if (LookingAt("enum"))
    [all...]
parser.h 147 inline bool LookingAt(const char* text);
458 // REQUIRES: LookingAt("{")
  /external/icu/icu4c/source/tools/toolutil/
xmlparser.cpp 233 if(mXMLDecl.reset(src).lookingAt(0, errorCode)) {
239 while(pos<declEnd && mAttrValue.lookingAt(pos, errorCode)) { // loop runs once per attribute on this element.
353 if (mXMLDecl.lookingAt(fPos, status)) {
361 if (mXMLDoctype.lookingAt(fPos, status)) {
369 if (mXMLElemEmpty.lookingAt(fPos, status)) {
374 if (mXMLElemStart.lookingAt(fPos, status) == FALSE) {
390 if (mXMLElemStart.lookingAt(fPos, status)) {
415 if (mXMLComment.lookingAt(fPos, status)) {
421 if (mXMLPI.lookingAt(fPos, status)) {
427 if (mXMLElemEnd.lookingAt(fPos, status))
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
RegexBasedMatcher.java 43 || (allowPrefixMatch && nationalNumberPatternMatcher.lookingAt());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 52 if (!typeSubtype.lookingAt()) return null;
60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type.
  /external/icu/icu4c/source/tools/genrb/
prscmnts.cpp 109 if(matcher.lookingAt(*status)){
171 if(matcher.lookingAt(*status)){
211 if(matcher.lookingAt(*status)){
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 79 if (!mMatcher.lookingAt()) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/
BmsgTokenizer.java 79 if (!mMatcher.lookingAt()) {
  /external/icu/icu4c/source/test/intltest/
regextst.cpp 379 // for the LookingAt() and Match() functions.
382 // REGEX_TESTLM("pattern", "input text", lookingAt expected, matches expected);
420 actualmatch = REMatcher->lookingAt(status);
422 errln("RegexTest failure in lookingAt() at line %d. Status = %s\n",
427 errln("RegexTest: wrong return from lookingAt() at line %d.\n", line);
496 actualmatch = REMatcher->lookingAt(status);
498 errln("RegexTest failure in lookingAt() at line %d (UTF8). Status = %s\n",
503 errln("RegexTest: wrong return from lookingAt() at line %d (UTF8).\n", line);
818 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
821 REGEX_ASSERT(m1->lookingAt(status) == FALSE)
    [all...]
dcfmtest.cpp 257 if (commentMat.lookingAt(status)) {
267 if (parseLineMat.lookingAt(status)) {
281 if (formatLineMat.lookingAt(status)) {
  /external/pcre/dist/
pcre_scanner.cc 127 bool Scanner::LookingAt(const RE& re) const {
pcre_scanner.h 74 bool LookingAt(const RE& re) const;
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 166 UBool result = matcher->lookingAt(matcher.status());
  /external/protobuf/src/google/protobuf/
text_format.cc 326 while (!LookingAt(">") && !LookingAt("}")) {
434 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) {
532 if (TryConsume(":") && !LookingAt("{") && !LookingAt("<")) {
584 while (!LookingAt(">") && !LookingAt("}")) {
686 } else if (LookingAt("-") ||
779 bool LookingAt(const string& text)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 675 if (matcher.lookingAt()) {
694 if (matcher.lookingAt()) {
740 public boolean lookingAt(String text) {
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
AsYouTypeFormatter.java 212 if (!m.lookingAt()) {
546 if (m.lookingAt() && m.end() > 0) {
572 if (iddMatcher.lookingAt()) {
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 210 assertFalse("Should not find given pattern in 1 string", mat1.lookingAt());
212 assertTrue("Should find given pattern in region of string", mat1.lookingAt());
213 assertTrue("Should find given pattern in 2 string", mat2.lookingAt());
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 307 inline bool Tokenizer::LookingAt() {
429 } else if (started_with_zero && LookingAt<Digit>()) {
432 if (LookingAt<Digit>()) {
462 if (LookingAt<Letter>() && require_space_after_number_) {
583 if (LookingAt<Unprintable>() || current_char_ == '\0') {
    [all...]
  /external/icu/icu4c/source/test/cintltst/
reapits.c 393 * setText() and lookingAt()
534 * lookingAt() Used in setText test.
745 /* lookingAt(start=-1) uses regions */
754 /* lookingAt (start >=0) does not use regions */
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 148 inline bool LookingAt(const char* text);
413 // REQUIRES: LookingAt("{")
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/
parser.h 148 inline bool LookingAt(const char* text);
413 // REQUIRES: LookingAt("{")
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/
parser.h 148 inline bool LookingAt(const char* text);
413 // REQUIRES: LookingAt("{")
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
parser.h 147 inline bool LookingAt(const char* text);
474 // REQUIRES: LookingAt("{")
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/
parser.h 148 inline bool LookingAt(const char* text);
413 // REQUIRES: LookingAt("{")

Completed in 598 milliseconds

1 2