/external/clang/test/Driver/ |
ast.c | 1 // RUN: %clang -target i386-unknown-unknown -ccc-print-phases -emit-ast %s 2> %t 3 // RUN: FileCheck -check-prefix EMIT-AST-PHASES -input-file %t %s 5 // EMIT-AST-PHASES: 0: input, 6 // EMIT-AST-PHASES: , c 7 // EMIT-AST-PHASES: 1: preprocessor, {0}, cpp-output 8 // EMIT-AST-PHASES: 2: compiler, {1}, ast 9 // EMIT-AST-PHASES-NOT: 3: 10 // EMIT-AST-PHASES: END 13 // RUN: %clang -target i386-unknown-unknown -ccc-print-phases -c %t.ast 2> %t 15 // RUN: FileCheck -check-prefix COMPILE-AST-PHASES -input-file %t % [all...] |
phases.c | 2 // RUN: %clang -target i386-unknown-unknown -ccc-print-phases -x c %s -x objective-c %s -x c++ %s -x objective-c++ -x assembler %s -x assembler-with-cpp %s -x none %s 2>&1 | FileCheck -check-prefix=BASIC %s 3 // BASIC: 0: input, "{{.*}}phases.c", c 8 // BASIC: 5: input, "{{.*}}phases.c", objective-c 13 // BASIC: 10: input, "{{.*}}phases.c", c++ 18 // BASIC: 15: input, "{{.*}}phases.c", assembler 20 // BASIC: 17: input, "{{.*}}phases.c", assembler-with-cpp 23 // BASIC: 20: input, "{{.*}}phases.c", c 31 // RUN: %clang -target i386-apple-darwin9 -ccc-print-phases -x c %s -arch ppc -arch i386 2>&1 | FileCheck -check-prefix=ULI %s 32 // ULI: 0: input, "{{.*}}phases.c", c 43 // RUN: %clang -target i386-apple-darwin9 -ccc-print-phases -c -x c %s -arch ppc -arch i386 2>&1 | FileCheck -check-prefix=UOF % [all...] |
darwin-arch-default.c | 4 // RUN: -ccc-print-phases %s 2> %t 10 // RUN: -ccc-print-phases %s 2> %t
|
thinlto.c | 2 // RUN: %clang -ccc-print-phases -c %s -flto=thin 2> %t 8 // RUN: %clang -ccc-print-phases %s -flto=thin 2> %t
|
lto.c | 2 // RUN: %clang -ccc-print-phases -c %s -flto 2> %t 8 // RUN: %clang -ccc-print-phases %s -flto 2> %t
|
darwin-verify-debug.c | 3 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-phases \
|
/external/clang/lib/Driver/ |
CMakeLists.txt | 16 Phases.cpp
|
Phases.cpp | 1 //===--- Phases.cpp - Transformations on Driver Types ---------------------===// 10 #include "clang/Driver/Phases.h" 16 const char *phases::getPhaseName(ID Id) {
|
Types.cpp | 222 void types::getCompilationPhases(ID Id, llvm::SmallVectorImpl<phases::ID> &P) { 225 P.push_back(phases::Preprocess); 229 P.push_back(phases::Precompile); 232 P.push_back(phases::Compile); 233 P.push_back(phases::Backend); 236 P.push_back(phases::Assemble); 241 P.push_back(phases::Link); 243 assert(0 < P.size() && "Not enough phases in list"); 244 assert(P.size() <= phases::MaxNumberOfPhases && "Too many phases in list") [all...] |
Android.mk | 23 Phases.cpp \
|
/external/clang/include/clang/Driver/ |
Phases.h | 1 //===--- Phases.h - Transformations on Driver Types -------------*- C++ -*-===// 15 namespace phases { namespace in namespace:clang::driver 33 } // end namespace phases
|
Types.h | 13 #include "clang/Driver/Phases.h" 83 /// getCompilationPhases - Get the list of compilation phases ('Phases') to be 87 llvm::SmallVectorImpl<phases::ID> &Phases);
|
/external/v8/src/compiler/ |
pipeline.h | 47 // Run just the register allocator phases. 63 // Helpers for executing pipeline phases.
|
/system/core/logd/ |
LogKlog.h | 33 // and KLOG_ACTION_READ phases. 35 // Used during each of the above phases to control logging.
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/ |
html5parser.py | 78 self.phases = dict([(name, cls(self, self.tree)) for name, cls in 120 self.phase = self.phases["beforeHtml"] 125 self.phase = self.phases["initial"] 192 phase = self.phases["inForeignContent"] 214 phases = [] 216 phases.append(self.phase) 219 assert self.phase not in phases 396 new_phase = self.phases[newModes[nodeName]] 399 new_phase = self.phases["inBody"] 419 self.phase = self.phases["text" [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
FadeDrawableComponent.java | 67 // Support repeating "phases" on top of the looping fade itself. 143 /** Enables phases; the initial delay will be re-started when the phase ends. **/
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/ |
PoloMessage.java | 31 * phases. The values are synchronized with the constants defined in
|
/external/v8/src/ |
pending-compilation-error-handler.h | 21 // compilation phases.
|
/frameworks/av/services/audioflinger/ |
AudioResamplerDyn.cpp | 356 // for 16b, it is desirable to have 2^(16/2) = 256 phases. 361 int phases = mSampleRate / gcd(mSampleRate, inSampleRate); local 366 // as above, #phases less than 63 is too few phases for accurate linear interpolation. 367 // we increase the phases to compensate, but more phases means more memory per 373 while (phases<63) { 374 phases *= 2; // this code only needed to support dynamic rate changes 377 if (phases>=256) { // too many phases, always interpolat [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/ |
testharness.js | 74 if (test_obj.phase === test_obj.phases.STARTED) { 725 this.phases = { 731 this.phase = this.phases.INITIAL; 778 if (this.phase > this.phases.STARTED) { 781 this.phase = this.phases.STARTED; 800 if (this.phase >= this.phases.HAS_RESULT) { 812 this.phase = this.phases.HAS_RESULT; 863 this.phase = this.phases.HAS_RESULT; 887 this.phase = this.phases.HAS_RESULT; 893 if (this.phase == this.phases.COMPLETE) [all...] |
/external/llvm/include/llvm/LTO/ |
LTOCodeGenerator.h | 12 // LTO compilation consists of three phases: Pre-IPO, IPO and Post-IPO. 16 // linker to through the IPO and Post-IPO phases. By using obj-file extension, 22 // the Post-IPO consists two sub-phases: intra-procedural scalar optimizations
|
/frameworks/base/services/core/java/com/android/server/ |
SystemService.java | 36 * <li>Then {@link #onBootPhase(int)} is called as many times as there are boot phases 49 * Boot Phases 121 * Called on each phase of the boot process. Phases before the service's start phase
|
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
InstructionDuplicator.java | 33 * generateMutation() and applyMutation() phases, allowing serialization.
|
/external/autotest/server/site_tests/network_WiFi_RoamEndToEnd/ |
network_WiFi_RoamEndToEnd.py | 17 The test is run in two phases. First, where we configure the first AP and
|
/external/dagger2/ |
CONTRIBUTING.md | 19 execute both unit and integration test phases. Additionally, consider using
|