HomeSort by relevance Sort by last modified time
    Searched refs:isGood (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/compile/mclinker/unittests/
FileHandleTest.cpp 50 ASSERT_TRUE(m_pTestee->isGood());
57 ASSERT_TRUE(m_pTestee->isGood());
70 ASSERT_TRUE(m_pTestee->isGood());
77 ASSERT_TRUE(m_pTestee->isGood());
91 ASSERT_TRUE(m_pTestee->isGood());
100 ASSERT_FALSE(m_pTestee->isGood());
DirIteratorTest.cpp 50 ASSERT_TRUE( m_pDir->isGood() );
MemoryAreaTest.cpp 70 ASSERT_TRUE(area->handler()->isGood());
82 ASSERT_TRUE(area->handler()->isGood());
98 ASSERT_TRUE(area->handler()->isGood()) ;
114 ASSERT_TRUE(area->handler()->isGood()) ;
142 ASSERT_TRUE(area->handler()->isGood()) ;
  /external/skia/tools/skpdiff/
SkImageDiffer.h 32 bool isGood() { return fIsGood; }
  /external/clang/test/SemaCXX/
function-redecl.cpp 99 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
100 // Foo::IsGood even though Foo::IsGood is technically a closer match since it
105 bool IsGood() { return false; }
110 bool isGood(); // expected-note {{'Bar::Foo::isGood' declared here}}
114 bool Foo::isGood() { // expected-error {{out-of-line definition of 'isGood' does not match any declaration in namespace 'redecl_typo::Foo'; did you mean 'Bar::Foo::isGood'?}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
MultiChannelResampler.cpp 72 bool isGood = m_multiChannelBus.get() && framesToProcess == m_framesToProcess;
73 ASSERT(isGood);
74 if (!isGood)
AudioFIFO.cpp 48 bool isGood = destination && (framesToConsume <= m_fifoLength) && (framesToConsume <= m_framesInFifo) && (destination->length() >= framesToConsume);
49 ASSERT(isGood);
50 if (!isGood)
87 bool isGood = sourceBus && (m_framesInFifo + sourceBus->length() <= m_fifoLength);
88 if (!isGood)
AudioResamplerKernel.cpp 68 bool isGood = m_fillIndex < m_sourceBuffer.size() && m_fillIndex + framesNeeded <= m_sourceBuffer.size();
69 ASSERT(isGood);
70 if (!isGood)
FFTConvolver.cpp 56 bool isGood = !(halfSize % framesToProcess && framesToProcess % halfSize);
57 ASSERT(isGood);
58 if (!isGood)
SincResampler.cpp 204 bool isGood = sourceProvider && m_blockSize > m_kernelSize && m_inputBuffer.size() >= m_blockSize + m_kernelSize && !(m_kernelSize % 2);
205 ASSERT(isGood);
206 if (!isGood)
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioDestinationNode.h 83 bool isGood = destinationBus && destinationBus->length() == numberOfFrames && m_sourceBus->length() == numberOfFrames;
84 ASSERT(isGood);
85 if (isGood)
AudioParam.cpp 116 bool isGood = context() && context()->isAudioThread() && values && numberOfValues;
117 ASSERT(isGood);
118 if (!isGood)
BiquadDSPKernel.cpp 132 bool isGood = nFrequencies > 0 && frequencyHz && magResponse && phaseResponse;
133 ASSERT(isGood);
134 if (!isGood)
OscillatorNode.cpp 158 bool isGood = framesToProcess <= m_phaseIncrements.size() && framesToProcess <= m_detuneValues.size();
159 ASSERT(isGood);
160 if (!isGood)
PeriodicWave.cpp 51 bool isGood = real && imag && real->length() == imag->length();
52 ASSERT(isGood);
53 if (isGood) {
AudioContext.cpp 771 bool isGood = m_isInitialized && isGraphOwner();
772 ASSERT(isGood);
773 if (!isGood)
  /frameworks/compile/mclinker/lib/Support/
raw_mem_ostream.cpp 23 !(m_MemoryArea.handler()->isGood() &&
Directory.cpp 74 bool Directory::isGood() const
89 if (isGood())
FileHandle.cpp 223 if (-1 != m_Handler && m_OpenMode != NotOpen && isGood())
247 bool FileHandle::isGood() const
  /external/libnfc-nci/src/adaptation/
CrcChecksum.cpp 101 BOOLEAN isGood = FALSE;
122 isGood = TRUE;
130 isGood = TRUE; //assume file does not exist
131 return isGood;
  /frameworks/compile/mclinker/include/mcld/Support/
FileHandle.h 117 bool isGood() const;
Directory.h 73 bool isGood() const;
  /external/clang/test/FixIt/
fixit.cpp 256 bool isGood(); // expected-note {{'Bar::Foo::isGood' declared here}}
260 bool Foo::isGood() { // expected-error {{out-of-line definition of 'isGood' does not match any declaration in namespace 'redecl_typo::Foo'; did you mean 'Bar::Foo::isGood'?}}
  /frameworks/compile/mclinker/lib/MC/
InputBuilder.cpp 135 if (!memory->handler()->isGood())
  /frameworks/base/wifi/java/android/net/wifi/
WifiWatchdogStateMachine.java     [all...]

Completed in 447 milliseconds

1 2