Home
last modified time | relevance | path

Searched refs:LAST (Results 1 – 25 of 88) sorted by relevance

1234

/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRelativeDateTimeFormatterTest.java65 {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/
DRelativeDateTimeFormatterTest.java68 {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/
Dbrftopagedbrf.in80 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/
Du_indices_gen.py28 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):
Du_unfilled_gen.py28 FIRST, LAST = 'first', 'last' variable
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
DDirectiveParser.cpp113 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()
DMacroExpander.cpp43 token->type = Token::LAST; in lex()
370 if (token.type == Token::LAST) in collectMacroArgs()
448 while (token.type != Token::LAST) in collectMacroArgs()
DToken.h27 LAST = 0, // EOF. enumerator
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
DDirectiveParser.cpp117 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()
DMacroExpander.cpp48 token->type = Token::LAST; in lex()
376 if (token.type == Token::LAST) in collectMacroArgs()
452 while (token.type != Token::LAST) in collectMacroArgs()
DToken.h32 LAST = 0, // EOF. enumerator
/third_party/rust/crates/clap/src/builder/
Darg_settings.rs63 const LAST = 1 << 14; constant
86 Last => Flags::LAST,
/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/
Dlocation_test.cpp126 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()
Dcomment_test.cpp22 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_P()
Dchar_test.cpp53 int expectedType = pp::Token::LAST; in TEST_P()
DPreprocessorTest.cpp32 } while (token.type != pp::Token::LAST); in preprocess()
Dinput_test.cpp26 EXPECT_EQ(pp::Token::LAST, token.type); in TEST_F()
/third_party/node/deps/v8/src/regexp/
Dregexp-parser.cc98 #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/
DglcRobustBufferAccessBehaviorTests.hpp413 LAST enumerator
520 LAST enumerator
563 LAST enumerator
/third_party/lwip/
D0088-modify-log-info-err.patch75 - 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…
D0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch76 - 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/
Dconstants.py99 LAST='last' variable
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRelativeDateTimeFormatter.java282 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/
DRelativeDateTimeFormatter.java252 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/
Ddescrip.mms19 .LAST :

1234