HomeSort by relevance Sort by last modified time
    Searched refs:pattern (Results 901 - 925 of 1099) sorted by null

<<31323334353637383940>>

  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 818 RE(const RE& other) { Init(other.pattern()); }
833 const char* pattern() const { return pattern_; } function in class:testing::internal::RE
    [all...]
  /external/v8/src/
prettyprinter.cc 304 PrintLiteral(node->pattern(), false);
966 PrintLiteralIndented("PATTERN", node->pattern(), false);
string.js 118 function StringIndexOf(pattern /* position */) { // length == 1
124 pattern = TO_STRING_INLINE(pattern);
132 return %StringIndexOf(subject, pattern, index);
ast.h 1405 Handle<String> pattern() const { return pattern_; } function in class:v8::internal::RegExpLiteral
    [all...]
runtime.cc 1932 Handle<String> pattern = args.at<String>(2); local
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 1084 bool Lexer::scanRegExp(const Identifier*& pattern, const Identifier*& flags, UChar patternPrefix)
    [all...]
NodeConstructors.h 85 inline RegExpNode::RegExpNode(JSGlobalData* globalData, const Identifier& pattern, const Identifier& flags)
87 , m_pattern(pattern)
    [all...]
JSParser.cpp 1928 const Identifier* pattern; local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 672 be changed after nextOption is called, because the pattern is compiled
682 the pattern is compiled only once.
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderTreeAsText.cpp 308 ts << "[type=PATTERN]";
592 RenderSVGResourcePattern* pattern = static_cast<RenderSVGResourcePattern*>(resource); local
597 static_cast<SVGPatternElement*>(pattern->node())->collectPatternAttributes(attributes);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py     [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatTest.java 191 for(String pattern:patterns) {
192 DecimalFormat format = new DecimalFormat(pattern);
327 assertEquals("Wrong pattern 1", "#0.#", format.toLocalizedPattern());
329 assertEquals("Wrong pattern 2", "#0.", format.toLocalizedPattern());
331 assertEquals("Wrong pattern 3", "#", format.toLocalizedPattern());
333 assertEquals("Wrong pattern 4", "#.0", format.toLocalizedPattern());
343 assertEquals("Wrong pattern 1", "#0.#", format.toPattern());
345 assertEquals("Wrong pattern 2", "#0.", format.toPattern());
347 assertEquals("Wrong pattern 3", "#", format.toPattern());
349 assertEquals("Wrong pattern 4", "#.0", format.toPattern())
    [all...]
  /tools/motodev/src/plugins/translation/src/com/motorola/studio/android/localization/translators/
GoogleTranslator.java 33 import java.util.regex.Pattern;
605 Pattern pattern = Pattern.compile(regex); local
613 String wordToTranslate = pattern.matcher(word).replaceAll("'");
846 Pattern p = Pattern.compile("&#([0-9]+);"); //$NON-NLS-1$
    [all...]
  /tools/motodev/src/plugins/videos/src/com/motorola/studio/android/videos/ui/views/
MOTODEVVideosView.java 26 import java.util.regex.Pattern;
793 Pattern pattern = Pattern.compile("\\s+"); local
794 Matcher matcher = pattern.matcher(text);
    [all...]
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.h 194 // If this is an encoded immediate, then it may describe a shift, or a pattern.
201 unsigned pattern : 4;
270 encoding.pattern = 0;
296 encoding.pattern = 3;
302 encoding.pattern = 1;
308 encoding.pattern = 2;
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 40 friend void jitCompile(JSGlobalData*, YarrCodeBlock& jitObject, const UString& pattern, unsigned& numSubpatterns, const char*& error, bool ignoreCase, bool multiline);
    [all...]
  /tools/motodev/src/plugins/videos/libs/
mail.jar 
  /external/chromium/testing/gtest/src/
gtest.cc 428 // Returns true iff the wildcard pattern matches the string. The
429 // first ':' or '\0' character in pattern marks the end of it.
433 bool UnitTestOptions::PatternMatchesString(const char *pattern,
435 switch (*pattern) {
437 case ':': // Either ':' or '\0' marks the end of the pattern.
440 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
442 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
443 PatternMatchesString(pattern + 1, str);
445 return *pattern == *str &&
446 PatternMatchesString(pattern + 1, str + 1)
    [all...]
  /external/emma/lib/
emma.jar 
  /external/gtest/src/
gtest.cc 428 // Returns true iff the wildcard pattern matches the string. The
429 // first ':' or '\0' character in pattern marks the end of it.
433 bool UnitTestOptions::PatternMatchesString(const char *pattern,
435 switch (*pattern) {
437 case ':': // Either ':' or '\0' marks the end of the pattern.
440 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
442 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
443 PatternMatchesString(pattern + 1, str);
445 return *pattern == *str &&
446 PatternMatchesString(pattern + 1, str + 1)
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc 428 // Returns true iff the wildcard pattern matches the string. The
429 // first ':' or '\0' character in pattern marks the end of it.
433 bool UnitTestOptions::PatternMatchesString(const char *pattern,
435 switch (*pattern) {
437 case ':': // Either ':' or '\0' marks the end of the pattern.
440 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
442 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
443 PatternMatchesString(pattern + 1, str);
445 return *pattern == *str &&
446 PatternMatchesString(pattern + 1, str + 1)
    [all...]
  /external/protobuf/gtest/src/
gtest.cc 409 // Returns true iff the wildcard pattern matches the string. The
410 // first ':' or '\0' character in pattern marks the end of it.
414 bool UnitTestOptions::PatternMatchesString(const char *pattern,
416 switch (*pattern) {
418 case ':': // Either ':' or '\0' marks the end of the pattern.
421 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1);
423 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) ||
424 PatternMatchesString(pattern + 1, str);
426 return *pattern == *str &&
427 PatternMatchesString(pattern + 1, str + 1)
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 

Completed in 2339 milliseconds

<<31323334353637383940>>