/external/easymock/src/org/easymock/ |
CaptureType.java | 35 * Will capture the argument of the last matching call
37 LAST,
|
Capture.java | 38 * Default constructor. Only the last element will be captured
41 this(CaptureType.LAST);
74 * @return The last captured value
115 case LAST:
|
/external/eigen/bench/btl/data/ |
mk_gnuplot_script.sh | 13 LAST=$FILE 16 echo LAST=$LAST 20 if [ $FILE != $LAST ] 26 BASE=${LAST##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat} 27 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot 37 if [ $FILE != $LAST ] 43 BASE=${LAST##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat} 44 echo "'"$LAST"'" title "'"$TITLE"'" >> $WHAT.gnuplot 52 if [ $FILE != $LAST ] [all...] |
mk_new_gnuplot.sh | 32 LAST=$FILE 40 if [ $FILE != $LAST ]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
RelativeDateTimeFormatterTest.java | 61 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, 62 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, 63 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, 64 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, 65 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, 66 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, 67 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, 68 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, 69 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, 70 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"} [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
RelativeDateTimeFormatterTest.java | 57 {0.0, Direction.LAST, RelativeUnit.SECONDS, "0 seconds ago"}, 58 {0.5, Direction.LAST, RelativeUnit.SECONDS, "0.5 seconds ago"}, 59 {1.0, Direction.LAST, RelativeUnit.SECONDS, "1 second ago"}, 60 {2.0, Direction.LAST, RelativeUnit.SECONDS, "2 seconds ago"}, 61 {0.0, Direction.LAST, RelativeUnit.MINUTES, "0 minutes ago"}, 62 {0.5, Direction.LAST, RelativeUnit.MINUTES, "0.5 minutes ago"}, 63 {1.0, Direction.LAST, RelativeUnit.MINUTES, "1 minute ago"}, 64 {2.0, Direction.LAST, RelativeUnit.MINUTES, "2 minutes ago"}, 65 {0.0, Direction.LAST, RelativeUnit.HOURS, "0 hours ago"}, 66 {0.5, Direction.LAST, RelativeUnit.HOURS, "0.5 hours ago"} [all...] |
/external/libchrome/base/trace_event/ |
memory_dump_request_args.h | 27 LAST = EXPLICITLY_TRIGGERED // For IPC macros. 37 LAST = DETAILED // For IPC Macros.
|
memory_dump_request_args.cc | 47 return MemoryDumpLevelOfDetail::LAST;
|
/external/v8/test/mjsunit/ |
cyrillic.js | 35 LAST: "\u042f", // YA property in class:cyrillic 36 last: "\u044f", // ya 50 LAST: "\u03a9", // OMEGA property in class:greek 51 last: "\u03c9", // omega 71 var last = lc ? chars.last : chars.LAST; 74 var last_other_case = lc ? chars.LAST : chars.last; 76 assertTrue(Range(first, last).test(first), 1) [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
DataModelException.java | 54 private static final int LAST = 138; 66 if (errorCode < FIRST || errorCode > LAST) {
|
/external/jetty/src/java/org/eclipse/jetty/http/ |
Generator.java | 28 public static final boolean LAST=true; 36 * @param last 42 void addContent(Buffer content, boolean last) throws IOException; 46 void completeHeader(HttpFields responseFields, boolean last) throws IOException;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
Tkconstants.py | 62 SEL_LAST='sel.last' 99 LAST='last'
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
Tkconstants.py | 62 SEL_LAST='sel.last' 99 LAST='last'
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkconstants.py | 62 SEL_LAST='sel.last' 99 LAST='last'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tkconstants.py | 62 SEL_LAST='sel.last' 99 LAST='last'
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/arm/ |
anames.go | 110 "LAST",
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/arm/ |
anames.go | 107 "LAST",
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/arm/ |
anames.go | 107 "LAST",
|
/external/mesa3d/src/gallium/auxiliary/indices/ |
u_indices_gen.py | 29 FIRST, LAST = 'first', 'last' 33 PVS=(FIRST, LAST) 59 pv_idx = dict(first='PV_FIRST', last='PV_LAST') 256 for inpv in (FIRST, LAST): 257 for outpv in (FIRST, LAST):
|
u_unfilled_gen.py | 29 FIRST, LAST = 'first', 'last'
|
/frameworks/base/services/core/java/com/android/server/ |
IntentResolver.java | 175 // Last fast case. 656 int LAST = array.length-1; 657 while (LAST >= 0 && array[LAST] == null) { 658 LAST--; 660 for (int idx=LAST; idx>=0; idx--) { 662 final int remain = LAST - idx; 666 array[LAST] = null; 667 LAST--; 670 if (LAST < 0) [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
ia64-opc.h | 35 #define LAST IA64_OPCODE_LAST
|
/external/v8/src/regexp/ |
regexp-parser.h | 20 // a single element. The last element added is stored outside the backing list, 30 // be read using last() or removed using RemoveLast until a new Add or until 42 T* last() { function in class:v8::internal::BufferedZoneList 129 #define LAST(x) last_added_ = x; 131 #define LAST(x)
|
regexp-parser.cc | 72 // Advance so that position() points to 1-after-the-last-character. This is 1034 LAST(ADD_ATOM); 1045 terms_.Add(text_.last(), zone()); 1061 LAST(ADD_CHAR); 1093 LAST(ADD_ATOM); 1100 LAST(ADD_ASSERT); 1114 alternative = terms_.last(); 1120 LAST(ADD_NONE); 1128 if (num_alternatives == 1) return alternatives_.last(); [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/arm/ |
anames.go | 110 "LAST",
|