/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/chromium_org/third_party/angle/tests/preprocessor_tests/ |
PreprocessorTest.cpp | 25 } while (token.type != pp::Token::LAST);
|
version_test.cpp | 114 } while (token.type != pp::Token::LAST); 135 } while (token.type != pp::Token::LAST); 153 } while (token.type != pp::Token::LAST); 174 } while (token.type != pp::Token::LAST); 194 } while (token.type != pp::Token::LAST);
|
char_test.cpp | 52 int expectedType = pp::Token::LAST;
|
comment_test.cpp | 23 EXPECT_EQ(pp::Token::LAST, token.type);
|
/external/chromium_org/v8/test/mjsunit/ |
cyrillic.js | 35 LAST: "\u042f", // YA 36 last: "\u044f", // ya 50 LAST: "\u03a9", // OMEGA 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...] |
/external/v8/test/mjsunit/ |
cyrillic.js | 35 LAST: "\u042f", // YA 36 last: "\u044f", // ya 50 LAST: "\u03a9", // OMEGA 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...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
time.cc | 44 const uint32 LAST = 0xFFFFFFFF; 113 return static_cast<long>(later + (LAST - earlier) + 1); 119 return -static_cast<long>(earlier + (LAST - later) + 1);
|
/external/chromium/chrome/browser/ |
defaults.cc | 18 SessionStartupPref::LAST;
|
/external/chromium/chrome/browser/prefs/ |
session_startup_pref.h | 23 // Indicates the user wants to restore the last session. 24 LAST,
|
session_startup_pref.cc | 29 case SessionStartupPref::LAST: return kPrefValueLast; 38 case kPrefValueLast: return SessionStartupPref::LAST; 97 // preferences panels can show the user their last choice.
|
/external/chromium_org/chrome/browser/prefs/ |
session_startup_pref.h | 29 // Indicates the user wants to restore the last session. 30 LAST, 67 // The default startup pref for Mac used to be LAST, now it's DEFAULT. This
|
session_startup_pref.cc | 36 case SessionStartupPref::LAST: return SessionStartupPref::kPrefValueLast; 89 return SessionStartupPref::LAST; 143 // preferences panels can show the user their last choice. 252 // The default startup pref used to be LAST, now it is DEFAULT. Don't change 295 case kPrefValueLast: return SessionStartupPref::LAST;
|
session_startup_pref_unittest.cc | 35 // On ChromeOS, the default SessionStartupPref is LAST. 105 EXPECT_EQ(SessionStartupPref::LAST, pref.type); 132 EXPECT_EQ(SessionStartupPref::LAST, pref.type); 200 EXPECT_EQ(SessionStartupPref::LAST, pref.type);
|
/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'
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
timeutils.cc | 48 const uint32 LAST = 0xFFFFFFFF; 74 // Atomically update the last gotten time 193 return static_cast<long>(later + (LAST - earlier) + 1); 199 return -static_cast<long>(earlier + (LAST - later) + 1);
|
/frameworks/base/services/java/com/android/server/ |
IntentResolver.java | 484 int LAST = array.length-1; 485 while (LAST >= 0 && array[LAST] == null) { 486 LAST--; 488 for (int idx=LAST; idx>=0; idx--) { 490 final int remain = LAST - idx; 494 array[LAST] = null; 495 LAST--; 498 if (LAST < 0) { 500 } else if (LAST < (array.length/2)) [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Token.h | 22 LAST = 0, // EOF.
|
/external/chromium_org/chrome/browser/extensions/api/settings_overrides/ |
settings_overrides_browsertest.cc | 59 SessionStartupPref startup_pref(SessionStartupPref::LAST); 112 EXPECT_EQ(SessionStartupPref::LAST, startup_pref.type);
|
/external/chromium_org/third_party/mesa/src/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):
|
/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):
|