Searched refs:after (Results 51 - 75 of 265) sorted by relevance

1234567891011

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXCRLUtil.java52 if (crl.getNextUpdate().after(validityDate))
/external/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp219 "invalid after returning from the function"));
/external/icu4c/i18n/
H A Dchnsecal.h168 virtual int32_t newMoonNear(double days, UBool after) const;
H A Dtzrule.cpp274 UBool after = TRUE;
282 after = FALSE;
291 after = FALSE;
301 if (after) {
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dparser.ml63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dparser.ml63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dparser.ml63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
/external/webkit/Tools/Scripts/
H A Dupdate-webkit69 --gyp generate project files from gyp after update
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dscopes.rb143 @after {
157 @after {
/external/guava/guava-tests/test/com/google/common/hash/
H A DAbstractStreamingHasherTest.java191 int after = processCalled;
192 assertEquals(before + 1, after); // default implementation pads and calls process()
198 // we should have seen as many bytes as the next multiple of chunk after expectedBytes - 1
/external/linux-tools-perf/util/
H A Dmap.c427 struct map *after = map__clone(pos); local
429 if (after == NULL) {
434 after->start = map->end + 1;
435 map_groups__insert(self, after);
437 map__fprintf(after, fp);
/external/icu4c/test/intltest/
H A Dutxttest.cpp1138 after = UTEXT_INITIALIZER; local
1141 utext_openUChars(&after, _after, -1, &status);
1147 UTEXT_SETNATIVEINDEX(&after, 1);
1148 result = utext_compare(&before, -1, &after, -1);
1154 UTEXT_SETNATIVEINDEX(&after, 1);
1155 result = utext_compare(&before, 3, &after, 3);
1161 UTEXT_SETNATIVEINDEX(&after, 1);
1162 result = utext_caseCompare(&before, -1, &after, -1, U_FOLD_CASE_DEFAULT, &status);
1168 UTEXT_SETNATIVEINDEX(&after, 1);
1169 result = utext_caseCompare(&before, 3, &after,
1186 after = UTEXT_INITIALIZER; local
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSURLExtras.mm160 // In a mailto: URL, host names come after a '@' character and end with a '>' or ',' or '?' character.
260 // It comes after a "://" sequence, with scheme characters preceding.
262 // If there is a "@" character, the host part is just the part after the "@".
286 // Start after the separator.
524 char *after = static_cast<char *>(malloc(bufferLength)); // large enough to %-escape every character
525 char *q = after;
553 NSString *result = [NSString stringWithUTF8String:after];
560 int afterlength = q - after;
561 char *p = after + bufferLength - afterlength - 1;
562 memmove(p, after, afterlengt
[all...]
/external/clang/lib/Edit/
H A DCommit.cpp99 StringRef after) {
104 commitableAfter = insertAfterToken(range.getEnd(), after);
106 commitableAfter = insert(range.getEnd(), after);
98 insertWrap(StringRef before, CharSourceRange range, StringRef after) argument
/external/markdown/markdown/
H A Dblockprocessors.py211 # This block contained unindented line(s) after the first indented
344 after = block[m.end():] # All lines after header
353 if after:
355 blocks.insert(0, after)
411 # check for lines in block after hr.
414 # Add lines after hr to master blocks for later parsing.
/external/skia/src/views/
H A DSkWidgets.cpp360 SkScalar before, after; local
361 (void)fPaint.measureText(0, NULL, &before, &after);
363 this->setHeight(lines * (after - before) + fMargin.fY * 2);
/external/valgrind/main/coregrind/
H A Dm_libcsignal.c250 ULong after[2];
269 vg_assert(oldactCopy.after[0] == 0x5555555555555555ULL);
270 vg_assert(oldactCopy.after[1] == 0x5555555555555555ULL);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTimestampTest.java61 static long TIME_LATE = 2347889122L; // A time well after the Epoch
564 * Method test for after
572 assertFalse(theTimestamp.after(theTest));
580 assertTrue(theTimestamp.after(theTest));
587 assertFalse(theTimestamp.after(theTest));
589 assertTrue(theTimestamp.after(theTest));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509CertificateHolder.java185 * Return the date after which this certificate is not valid.
242 return !date.before(x509Certificate.getStartDate().getDate()) && !date.after(x509Certificate.getEndDate().getDate());
/external/chromium/testing/gtest/test/
H A Dgtest-typed-test_test.cc115 // The second test makes sure shared_ is not deleted after the first
252 // The second test makes sure shared_ is not deleted after the first
304 IntAfterTypedTestCaseP after = 0; variable
/external/clang/test/Sema/
H A Ddesignated-initializers.c146 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = { member in struct:XY
/external/clang/test/SemaCXX/
H A Dalias-template.cpp123 expected-error {{expected ';' after alias declaration}}
/external/gtest/test/
H A Dgtest-typed-test_test.cc115 // The second test makes sure shared_ is not deleted after the first
252 // The second test makes sure shared_ is not deleted after the first
304 IntAfterTypedTestCaseP after = 0; variable
/external/libvpx/examples/includes/geshi/geshi/
H A Dpowershell.php220 // special after pipe
/external/llvm/lib/TableGen/
H A DTGLexer.cpp293 // The token after the include must be a string.
297 PrintError(getLoc(), "Expected filename after include");

Completed in 761 milliseconds

1234567891011