/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | RelativeDateTimeFormatterTest.java | 65 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, in TestRelativeDateWithQuantity() 66 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, in TestRelativeDateWithQuantity() 67 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, in TestRelativeDateWithQuantity() 68 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, in TestRelativeDateWithQuantity() 69 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, in TestRelativeDateWithQuantity() 70 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, in TestRelativeDateWithQuantity() 71 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, in TestRelativeDateWithQuantity() 72 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, in TestRelativeDateWithQuantity() 73 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, in TestRelativeDateWithQuantity() 74 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"}, in TestRelativeDateWithQuantity() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | RelativeDateTimeFormatterTest.java | 68 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, in TestRelativeDateWithQuantity() 69 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, in TestRelativeDateWithQuantity() 70 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, in TestRelativeDateWithQuantity() 71 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, in TestRelativeDateWithQuantity() 72 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, in TestRelativeDateWithQuantity() 73 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, in TestRelativeDateWithQuantity() 74 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, in TestRelativeDateWithQuantity() 75 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, in TestRelativeDateWithQuantity() 76 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, in TestRelativeDateWithQuantity() 77 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"}, in TestRelativeDateWithQuantity() [all …]
|
/third_party/cups-filters/filter/braille/filters/ |
D | brftopagedbrf.in | 80 LAST=${PAGERANGE##*-} 81 if [ -z "$BEFORE" ] || [ "$LAST" -gt "$BEFORE" ] 83 BEFORE="$LAST" 89 LAST=${PAGERANGE/*-} 90 PAGES="$PAGES$(seq "$FIRST" "$LAST" | tr $'\012' ' ')"
|
/third_party/mesa3d/src/util/indices/ |
D | u_indices_gen.py | 28 FIRST, LAST = 'first', 'last' variable 33 PVS=(FIRST, LAST) 164 if inpv == LAST: 339 if inpv == LAST: 391 for inpv in (FIRST, LAST): 392 for outpv in (FIRST, LAST):
|
D | u_unfilled_gen.py | 28 FIRST, LAST = 'first', 'last' variable
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
D | DirectiveParser.cpp | 113 return (token->type == '\n') || (token->type == pp::Token::LAST); in isEOD() 178 if (token->type == Token::LAST) in lex() 267 if (token->type == Token::LAST) in parseDirective() 341 while ((token->type != '\n') && (token->type != Token::LAST)) in parseDefine() 536 while ((token->type != '\n') && (token->type != Token::LAST)) in parseError() 567 while ((token->type != '\n') && (token->type != Token::LAST)) in parsePragma() 621 while ((token->type != '\n') && (token->type != Token::LAST)) in parseExtension() 725 while (valid && (token->type != '\n') && (token->type != Token::LAST)) in parseVersion()
|
D | MacroExpander.cpp | 43 token->type = Token::LAST; in lex() 370 if (token.type == Token::LAST) in collectMacroArgs() 448 while (token.type != Token::LAST) in collectMacroArgs()
|
D | Token.h | 27 LAST = 0, // EOF. enumerator
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | DirectiveParser.cpp | 117 return (token->type == '\n') || (token->type == pp::Token::LAST); in isEOD() 245 if (token->type == Token::LAST) in lex() 334 if (token->type == Token::LAST) in parseDirective() 411 while ((token->type != '\n') && (token->type != Token::LAST)) in parseDefine() 607 while ((token->type != '\n') && (token->type != Token::LAST)) in parseError() 638 while ((token->type != '\n') && (token->type != Token::LAST)) in parsePragma() 692 while ((token->type != '\n') && (token->type != Token::LAST)) in parseExtension() 783 while (valid && (token->type != '\n') && (token->type != Token::LAST)) in parseVersion()
|
D | MacroExpander.cpp | 48 token->type = Token::LAST; in lex() 376 if (token.type == Token::LAST) in collectMacroArgs() 452 while (token.type != Token::LAST) in collectMacroArgs()
|
D | Token.h | 32 LAST = 0, // EOF. enumerator
|
/third_party/rust/crates/clap/src/builder/ |
D | arg_settings.rs | 63 const LAST = 1 << 14; constant 86 Last => Flags::LAST,
|
/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
D | location_test.cpp | 126 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_F() 144 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_F() 162 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_F()
|
D | comment_test.cpp | 22 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_P()
|
D | char_test.cpp | 53 int expectedType = pp::Token::LAST; in TEST_P()
|
D | PreprocessorTest.cpp | 32 } while (token.type != pp::Token::LAST); in preprocess()
|
D | input_test.cpp | 26 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_F()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-parser.cc | 98 #define LAST(x) last_added_ = x; macro 100 #define LAST(x) macro 2104 LAST(ADD_ATOM); in FlushCharacters() 2135 LAST(ADD_CHAR); in AddCharacter() 2190 LAST(ADD_ATOM); in AddAtom() 2196 LAST(ADD_ATOM); in AddTerm() 2202 LAST(ADD_ASSERT); in AddAssertion() 2222 LAST(ADD_NONE); in FlushTerms() 2308 LAST(ADD_TERM); in AddQuantifierToAtom() 2321 LAST(ADD_TERM); in AddQuantifierToAtom() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcRobustBufferAccessBehaviorTests.hpp | 413 LAST enumerator 520 LAST enumerator 563 LAST enumerator
|
/third_party/lwip/ |
D | 0088-modify-log-info-err.patch | 75 - LWIP_DEBUGF(TCP_DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: removing pcb stuck in LAST-A… 76 + LWIP_DEBUGF(TCP_DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: removing pcb stuck in LAST-A…
|
D | 0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch | 76 - LWIP_DEBUGF(TCP_DEBUG, ("tcp_slowtmr: removing pcb stuck in LAST-ACK\n")); 77 + LWIP_DEBUGF(TCP_DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: removing pcb stuck in LAST-A…
|
/third_party/python/Lib/tkinter/ |
D | constants.py | 99 LAST='last' variable
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RelativeDateTimeFormatter.java | 282 LAST, enumConstant 685 if (direction != Direction.LAST && direction != Direction.NEXT) { in formatImpl() 776 direction = Direction.LAST; in formatNumericImpl() 923 case -100/*-1*/: direction = Direction.LAST; useNumeric = false; break; in formatRelativeImpl() 1170 return Direction.LAST; in keyToDirection()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | RelativeDateTimeFormatter.java | 252 LAST, enumConstant 605 if (direction != Direction.LAST && direction != Direction.NEXT) { in formatImpl() 694 direction = Direction.LAST; in formatNumericImpl() 837 case -100/*-1*/: direction = Direction.LAST; useNumeric = false; break; in formatRelativeImpl() 1080 return Direction.LAST; in keyToDirection()
|
/third_party/openssl/demos/bio/ |
D | descrip.mms | 19 .LAST :
|