HomeSort by relevance Sort by last modified time
    Searched full:matched (Results 26 - 50 of 2099) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
egrep.pass.cpp 32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
55 assert(!m.prefix().matched);
58 assert(!m.suffix().matched);
71 assert(!m.prefix().matched);
74 assert(!m.suffix().matched);
awk.pass.cpp 33 assert(!m.prefix().matched);
36 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(!m.suffix().matched);
89 assert(!m.prefix().matched);
92 assert(!m.suffix().matched);
104 assert(!m.prefix().matched);
107 assert(!m.suffix().matched);
129 assert(!m.prefix().matched);
132 assert(!m.suffix().matched);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
Match.java 28 /** the edge of the dragged node that is matched */
31 /** the "other" edge that the dragged edge is matched with */
34 /** the signed distance between the matched edges */
50 * @param edge the "other" edge that the dragged edge is matched with
51 * @param with the edge of the dragged node that is matched
53 * @param delta the signed distance between the matched edges
  /external/chromium_org/tools/find_runtime_symbols/
reduce_debugline.py 39 matched = _FILENAME_PATTERN.match(line)
40 if matched:
41 filename = matched.group(2)
static_symbols.py 176 matched = _READELF_SECTION_HEADER_PATTER.match(line)
177 if matched:
179 int(matched.group(1), 10), # number
180 matched.group(2), # name
181 matched.group(3), # stype
182 int(matched.group(4), 16), # address
183 int(matched.group(5), 16), # offset
184 int(matched.group(6), 16), # size
185 matched.group(7), # es
186 matched.group(8), # fl
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
unimatch.h 80 * characters may be matched.
94 * the matched substring. In the forward direction, this will be
95 * the index of the last matched character plus one. In the
96 * reverse direction, this will be the index of the last matched
102 * @param text the text to be matched
104 * matching. On output, the limit of the matched text. The
105 * number of matched characters is the output value of offset
109 * @param limit the limit index of text to be matched. Greater
153 * Union the set of all characters that may be matched by this object
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
genversion.c 39 int major, minor, subminor, patchlevel, matched; local
46 matched = sscanf(PACKAGE_VERSION, "%d.%d.%d.%d", &major, &minor, &subminor,
49 if (matched == 3)
51 else if (matched != 4) {
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 3 // The exception specification of a destructor declaration is matched *before*
  /external/icu4c/common/unicode/
unimatch.h 80 * characters may be matched.
94 * the matched substring. In the forward direction, this will be
95 * the index of the last matched character plus one. In the
96 * reverse direction, this will be the index of the last matched
102 * @param text the text to be matched
104 * matching. On output, the limit of the matched text. The
105 * number of matched characters is the output value of offset
109 * @param limit the limit index of text to be matched. Greater
153 * Union the set of all characters that may be matched by this object
  /external/icu4c/i18n/
quant.h 50 * @param text the text to be matched
52 * matching. On output, the limit of the matched text. The
53 * number of matched characters is the output value of offset
57 * @param limit the limit index of text to be matched. Greater
strmatch.h 28 * UnicodeReplacer API, allowing it to emit the matched text as
31 * instead a substring of the actual matched text. Following
48 * @param string the pattern to be matched, possibly containing
97 * @param text the text to be matched
99 * matching. On output, the limit of the matched text. The
100 * number of matched characters is the output value of offset
104 * @param limit the limit index of text to be matched. Greater
159 * @param text the text to be matched
217 * The text to be matched.
  /external/iptables/extensions/
libxt_RATEEST.man 5 Count matched packets into the pool referred to by \fIname\fP, which is freely
  /external/llvm/test/CodeGen/ARM/
log2_not_readnone.ll 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
  /external/llvm/test/CodeGen/X86/
log2_not_readnone.ll 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
compare_sub_match.pass.cpp 30 sm.matched = true;
34 sm2.matched = true;
46 sm.matched = true;
50 sm2.matched = true;
default.pass.cpp 25 assert(sm.matched == false);
31 assert(sm.matched == false);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 59 conversion_patterns = (("^diff --git \w/(.+) \w/(?P<FilePath>.+)", lambda matched: "Index: " + matched.group('FilePath') + "\n"),
60 ("^new file.*", lambda matched: "\n"),
61 ("^index (([0-9a-f]{7}\.\.[0-9a-f]{7})|([0-9a-f]{40}\.\.[0-9a-f]{40})) [0-9]{6}", lambda matched: "===================================================================\n"),
62 ("^--- \w/(?P<FilePath>.+)", lambda matched: "--- " + matched.group('FilePath') + "\n"),
63 ("^\+\+\+ \w/(?P<FilePath>.+)", lambda matched: "+++ " + matched.group('FilePath') + "\n"))
66 matched = match(pattern, line)
67 if matched
    [all...]
  /external/genext2fs/m4/
ac_func_scanf_can_malloc.m4 25 int matched = sscanf(scan_this, "%as", &u);
26 if(matched < 1) return 1; /* shouldn't happens */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
egrep.pass.cpp 32 assert(!m.prefix().matched);
35 assert(!m.suffix().matched);
48 assert(!m.prefix().matched);
51 assert(m.suffix().matched);
64 assert(!m.prefix().matched);
67 assert(!m.suffix().matched);
80 assert(!m.prefix().matched);
83 assert(!m.suffix().matched);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridMatch.java 28 /** The distance to the matched edge - used to pick best matches */
31 /** Type of edge that was matched (this refers to the edge on the dragged node,
32 * not on the matched node/row/cell etc) */
41 /** The actual x or y position of the matched segment */
44 /** Amount of margin between the matched edges */
50 * @param type the edge of the dragged element that was matched
54 * @param cellIndex the index of the row or column we matched with
57 * @param margin a margin distance to add to the actual location from the matched line
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformState.java 77 * that is in effect, which may be a matched template
90 * that was matched. Note that this may not be
99 * @return the xsl:template that was matched.
104 * Retrieves the node in the source tree that matched
107 * @return the node in the source tree that matched
  /external/chromium_org/third_party/icu/source/common/
triedict.h 85 * @param lengths An array that is filled with the lengths of words that matched.
88 * @param values An array that is filled with the values associated with the matched words.
89 * @return The number of characters in text that were matched.
181 * @param lengths An array that is filled with the lengths of words that matched.
184 * @param values An array that is filled with the values associated with the matched words.
185 * @return The number of characters in text that were matched.
233 * @param lengths An array that is filled with the lengths of words that matched.
237 * @param pMatched The returned parent node matched the input/
238 * @param values An array that is filled with the values associated with the matched words.
239 * @return The number of characters in text that were matched
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
strmatch.h 28 * UnicodeReplacer API, allowing it to emit the matched text as
31 * instead a substring of the actual matched text. Following
48 * @param string the pattern to be matched, possibly containing
97 * @param text the text to be matched
99 * matching. On output, the limit of the matched text. The
100 * number of matched characters is the output value of offset
104 * @param limit the limit index of text to be matched. Greater
159 * @param text the text to be matched
221 * The text to be matched.
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerTest.java 214 * @param matched The event to check.
215 * @return True if expectations are matched.
217 private static AccessibilityEvent eqAccessibilityEvent(AccessibilityEvent matched) {
218 reportMatcher(new AccessibilityEventMather(matched));
243 public boolean matches(Object matched) {
244 if (!(matched instanceof AccessibilityEvent)) {
247 AccessibilityEvent receivedEvent = (AccessibilityEvent) matched;
263 public boolean matches(Object matched) {
264 if (!(matched instanceof IAccessibilityManagerClient)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xcodeproj.py 41 matched = self._development_region_regex.search(line)
42 if not matched:
44 if matched.group('region') != 'English':

Completed in 1103 milliseconds

12 3 4 5 6 7 8 91011>>