HomeSort by relevance Sort by last modified time
    Searched refs:phase (Results 151 - 175 of 513) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/leveldatabase/src/db/
c_test.c 14 const char* phase = ""; variable
19 phase = name;
31 fprintf(stderr, "%s:%d: %s: %s\n", __FILE__, __LINE__, phase, (err)); \
37 fprintf(stderr, "%s:%d: %s: %s\n", __FILE__, __LINE__, phase, #cond); \
50 phase,
365 if (phase == 0) {
  /external/chromium_org/base/debug/
trace_event_android.cc 21 char phase,
31 std::string out = base::StringPrintf("%c|%d|%s", phase, getpid(), name);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGContainer.cpp 136 if (childPaintInfo.phase == PaintPhaseForeground) {
156 if (paintInfo.phase == PaintPhaseForeground && style()->outlineWidth() && style()->visibility() == VISIBLE) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTimelineAgent.h 103 enum Phase { PhaseBegin, PhaseEnd };
104 GPUEvent(double timestamp, int phase, bool foreign, uint64_t usedGPUMemoryBytes, uint64_t limitGPUMemoryBytes) :
106 phase(static_cast<Phase>(phase)),
111 Phase phase; member in class:WebCore::FINAL::GPUEvent
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformWheelEvent.h 121 PlatformWheelEventPhase phase() const { return m_phase; } function in class:WebCore::PlatformWheelEvent
TraceEvent.h 364 // An asynchronous operation can consist of multiple phases. The first phase is
403 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
418 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
537 // char phase,
582 #define INTERNAL_TRACE_EVENT_ADD(phase, category, name, flags, ...) \
587 phase, INTERNALTRACEEVENTUID(categoryGroupEnabled), name, \
611 #define INTERNAL_TRACE_EVENT_ADD_WITH_ID(phase, category, name, id, flags, \
620 phase, INTERNALTRACEEVENTUID(categoryGroupEnabled), \
631 // Phase indicates the nature of an event entry. E.g. part of a begin/end pair.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
NativeImageSkia.h 113 const FloatPoint& phase,
  /external/chromium_org/content/common/input/
synthetic_web_input_event_builders.cc 50 WebMouseWheelEvent::Phase phase) {
53 result.phase = phase;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNode.cpp 110 const Phase currentPhase = calculatePhase(activeDuration, localTime, m_timing);
112 const AnimationNode::Phase parentPhase = AnimationNode::PhaseActive;
138 const AnimationNode::Phase localCurrentPhase = calculatePhase(localActiveDuration, localLocalTime, m_timing);
152 m_calculated.phase = currentPhase;
154 m_calculated.isInPlay = phase() == PhaseActive && (!m_parent || m_parent->isInPlay());
155 m_calculated.isCurrent = phase() == PhaseBefore || isInPlay() || (m_parent && m_parent->isCurrent());
TimingCalculations.h 48 static inline AnimationNode::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified)
60 static inline bool isActiveInParentPhase(AnimationNode::Phase parentPhase, Timing::FillMode fillMode)
75 static inline double calculateActiveTime(double activeDuration, Timing::FillMode fillMode, double localTime, AnimationNode::Phase parentPhase, AnimationNode::Phase phase, const Timing& specified)
78 ASSERT(phase == calculatePhase(activeDuration, localTime, specified));
80 switch (phase) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFileUploadControl.cpp 96 if (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseChildBlockBackgrounds) {
105 if (paintInfo.phase == PaintPhaseForeground) {
RenderTableRow.cpp 224 PaintPhase paintPhase = paintInfo.phase;
237 if (paintInfo.phase == PaintPhaseBlockBackground || paintInfo.phase == PaintPhaseChildBlockBackground)
  /external/chromium_org/third_party/skia/src/core/
SkTraceEvent.h 482 // An asynchronous operation can consist of multiple phases. The first phase is
524 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
539 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
592 // to ASYNC, a FLOW can consist of multiple phases. The first phase is defined
    [all...]
  /external/chromium_org/ui/gl/
gl_implementation_win.cc 68 void AngleAddTraceEvent(char phase,
77 TRACE_EVENT_API_ADD_TRACE_EVENT(phase,
90 typedef void (*AddTraceEventFunc)(char phase,
  /external/skia/src/core/
SkTraceEvent.h 482 // An asynchronous operation can consist of multiple phases. The first phase is
524 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
539 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
592 // to ASYNC, a FLOW can consist of multiple phases. The first phase is defined
    [all...]
  /external/chromium_org/mojo/services/public/cpp/view_manager/tests/
view_manager_unittest.cc 94 DispositionChangePhase phase) OVERRIDE {
122 DispositionChangePhase phase) OVERRIDE {
124 if (phase != NodeObserver::DISPOSITION_CHANGED)
199 NodeObserver::DispositionChangePhase phase) OVERRIDE {
200 if (phase != NodeObserver::DISPOSITION_CHANGED)
212 ViewObserver::DispositionChangePhase phase) OVERRIDE {
213 if (phase != ViewObserver::DISPOSITION_CHANGED)
266 DispositionChangePhase phase) OVERRIDE {
267 if (phase != NodeObserver::DISPOSITION_CHANGED)
301 NodeObserver::DispositionChangePhase phase) OVERRIDE
    [all...]
  /external/speex/libspeex/
kiss_fft.c 483 spx_word32_t phase = i; local
485 phase = -phase;
486 kf_cexp2(st->twiddles+i, DIV32(SHL32(phase,17),nfft));
491 double phase = ( -2*pi /nfft ) * i; local
493 phase *= -1;
494 kf_cexp(st->twiddles+i, phase );
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
lock_tests.py 155 phase = []
158 phase.append(None)
160 phase.append(None)
162 while len(phase) == 0:
165 self.assertEqual(len(phase), 1)
167 while len(phase) == 1:
169 self.assertEqual(len(phase), 2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
lock_tests.py 155 phase = []
158 phase.append(None)
160 phase.append(None)
162 while len(phase) == 0:
165 self.assertEqual(len(phase), 1)
167 while len(phase) == 1:
169 self.assertEqual(len(phase), 2)
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 715 def ExpandVariables(input, phase, variables, build_file):
717 if phase == PHASE_EARLY:
720 elif phase == PHASE_LATE:
723 elif phase == PHASE_LATELATE:
796 contents = ExpandVariables(contents, phase,
800 contents = ExpandVariables(contents, phase, variables, build_file)
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
trace_event.h 361 // An asynchronous operation can consist of multiple phases. The first phase is
395 // async event. This should be called at the beginning of the next phase of an
455 // to ASYNC, a FLOW can consist of multiple phases. The first phase is defined
487 // async event. This should be called at the beginning of the next phase of an
551 // char phase,
584 #define INTERNAL_TRACE_EVENT_ADD(phase, category, name, flags, ...) \
589 phase, INTERNAL_TRACE_EVENT_UID(catstatic), name, \
613 #define INTERNAL_TRACE_EVENT_ADD_WITH_ID(phase, category, name, id, flags, \
622 phase, INTERNAL_TRACE_EVENT_UID(catstatic), \
633 // Phase indicates the nature of an event entry. E.g. part of a begin/end pair
    [all...]
  /external/lldb/test/unittest2/test/
test_setups.py 472 if phase == 0:
476 if phase == 1:
482 if phase == 2:
486 if phase == 3:
489 if phase == 4:
501 for phase, msg in enumerate(messages):
  /external/svox/pico/lib/
picotrns.c 137 picoos_uint16 phase; /* transduction phase: member in struct:picotrns_transductionState
437 (*transductionState).phase = 0;
474 switch ((*transductionState).phase) {
489 (*transductionState).phase = 1;
495 (*transductionState).phase = 2;
548 (*transductionState).phase = 3;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_setups.py 475 if phase == 0:
479 if phase == 1:
485 if phase == 2:
489 if phase == 3:
492 if phase == 4:
503 for phase, msg in enumerate(messages):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_setups.py 475 if phase == 0:
479 if phase == 1:
485 if phase == 2:
489 if phase == 3:
492 if phase == 4:
503 for phase, msg in enumerate(messages):

Completed in 1621 milliseconds

1 2 3 4 5 67 8 91011>>