/external/llvm/unittests/IR/ |
PassManagerTest.cpp | 196 EXPECT_FALSE(PA1.preserved<TestFunctionAnalysis>()); 197 EXPECT_FALSE(PA1.preserved<TestModuleAnalysis>()); 199 EXPECT_FALSE(PA2.preserved<TestFunctionAnalysis>()); 200 EXPECT_FALSE(PA2.preserved<TestModuleAnalysis>()); 202 EXPECT_TRUE(PA3.preserved<TestFunctionAnalysis>()); 203 EXPECT_TRUE(PA3.preserved<TestModuleAnalysis>()); 205 EXPECT_FALSE(PA4.preserved<TestFunctionAnalysis>()); 206 EXPECT_FALSE(PA4.preserved<TestModuleAnalysis>()); 208 EXPECT_TRUE(PA4.preserved<TestFunctionAnalysis>()); 209 EXPECT_TRUE(PA4.preserved<TestModuleAnalysis>()) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
path_util.py | 39 Any trailing slash of |path| is preserved, such that the parent of
|
/external/chromium_org/third_party/libjpeg_turbo/simd/ |
jdsammmx.asm | 67 ; push ecx ; need not be preserved 68 ; push edx ; need not be preserved 190 ; pop edx ; need not be preserved 191 ; pop ecx ; need not be preserved 231 ; push ecx ; need not be preserved 232 ; push edx ; need not be preserved 519 ; pop edx ; need not be preserved 520 ; pop ecx ; need not be preserved 551 ; push ecx ; need not be preserved 552 ; push edx ; need not be preserved [all...] |
jdsamss2.asm | 67 ; push ecx ; need not be preserved 68 ; push edx ; need not be preserved 188 ; pop edx ; need not be preserved 189 ; pop ecx ; need not be preserved 229 ; push ecx ; need not be preserved 230 ; push edx ; need not be preserved 515 ; pop edx ; need not be preserved 516 ; pop ecx ; need not be preserved 547 ; push ecx ; need not be preserved 548 ; push edx ; need not be preserved [all...] |
jimmxred.asm | 129 ; push ecx ; need not be preserved 130 ; push edx ; need not be preserved 481 ; pop edx ; need not be preserved 482 ; pop ecx ; need not be preserved 512 ; push ecx ; need not be preserved 513 ; push edx ; need not be preserved 698 ; pop edx ; need not be preserved 699 ; pop ecx ; need not be preserved
|
jf3dnflt.asm | 69 ; push ecx ; need not be preserved 70 ; push edx ; need not be preserved 310 ; pop edx ; need not be preserved 311 ; pop ecx ; need not be preserved
|
jiss2red.asm | 128 ; push edx ; need not be preserved 402 ; pop edx ; need not be preserved 433 ; push ecx ; need not be preserved 434 ; push edx ; need not be preserved 586 ; pop edx ; need not be preserved 587 ; pop ecx ; need not be preserved
|
jfmmxfst.asm | 94 ; push ecx ; need not be preserved 95 ; push edx ; need not be preserved 387 ; pop edx ; need not be preserved 388 ; pop ecx ; need not be preserved
|
jfsseflt.asm | 79 ; push ecx ; need not be preserved 80 ; push edx ; need not be preserved 360 ; pop edx ; need not be preserved 361 ; pop ecx ; need not be preserved
|
ji3dnflt.asm | 77 ; push ecx ; need not be preserved 78 ; push edx ; need not be preserved 442 ; pop edx ; need not be preserved 443 ; pop ecx ; need not be preserved
|
jimmxfst.asm | 108 ; push ecx ; need not be preserved 109 ; push edx ; need not be preserved 490 ; pop edx ; need not be preserved 491 ; pop ecx ; need not be preserved
|
jfmmxint.asm | 115 ; push ecx ; need not be preserved 116 ; push edx ; need not be preserved 612 ; pop edx ; need not be preserved 613 ; pop ecx ; need not be preserved
|
jiss2flt.asm | 87 ; push ecx ; need not be preserved 88 ; push edx ; need not be preserved 488 ; pop edx ; need not be preserved 489 ; pop ecx ; need not be preserved
|
jisseflt.asm | 87 ; push ecx ; need not be preserved 88 ; push edx ; need not be preserved 562 ; pop edx ; need not be preserved 563 ; pop ecx ; need not be preserved
|
/external/llvm/lib/Analysis/ |
CGSCCPassManager.cpp | 127 // If this proxy isn't marked as preserved, then we can't even invalidate 131 if (!PA.preserved(ID())) 156 // If this proxy isn't marked as preserved, then we can't even invalidate 160 if (!PA.preserved(ID()))
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-3218530.js | 28 // This tests that a global key values are preserved when used in
|
/external/libunwind/doc/ |
unw_resume.tex | 26 machine state normally involves restoring the ``preserved'' 51 ``preserved'' registers are restored.
|
unw_getcontext.tex | 22 platform-specific, but, in general, at least all preserved
|
unw_get_fpreg.tex | 27 frames, it is normally possible to access only the preserved
|
unw_get_reg.tex | 27 frames, it is normally possible to access only the preserved
|
unw_set_fpreg.tex | 27 frames, it is normally possible to access only the preserved
|
unw_set_reg.tex | 27 frames, it is normally possible to access only the preserved
|
/external/chromium_org/v8/test/webkit/fast/js/ |
date-preserve-milliseconds.js | 25 'The following test checks if an existing milliseconds value gets preserved if a call to setHours(), setMinutes() or setSeconds() does not specify the milliseconds. See <a href="https://bugs.webkit.org/show_bug.cgi?id=3759">https://bugs.webkit.org/show_bug.cgi?id=3759</a>'
|
/external/llvm/include/llvm/IR/ |
PassManager.h | 56 /// \brief An abstract set of preserved analyses following a transformation pass 60 /// results were preserved by that transformation. The default set is "none", 83 /// \brief Convenience factory function for the empty preserved set. 86 /// \brief Construct a special preserved set that preserves all passes. 93 /// \brief Mark a particular pass as preserved, adding it to the set. 101 /// This is a mutating operation on this preserved set, removing all 102 /// preserved passes which are not also preserved in the argument. 119 /// This is a mutating operation on this preserved set, removing all 120 /// preserved passes which are not also preserved in the argument 136 template <typename PassT> bool preserved() const { function in class:llvm::PreservedAnalyses 142 bool preserved(void *PassID) const { function in class:llvm::PreservedAnalyses [all...] |
/external/llvm/lib/IR/ |
PassManager.cpp | 193 // If this proxy isn't marked as preserved, then we can't even invalidate 197 if (!PA.preserved(ID()))
|