HomeSort by relevance Sort by last modified time
    Searched defs:Bool (Results 1 - 25 of 27) sorted by null

1 2

  /external/gtest/include/gtest/
gtest-param-test.h 88 // Bool() - Yields sequence {false, true}.
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h 88 // Bool() - Yields sequence {false, true}.
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/operations/
Bool.java 19 * $Id: Bool.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Bool extends UnaryOperation
50 return right.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
62 public boolean bool(XPathContext xctxt) method in class:Bool
65 return m_right.bool(xctxt);
  /external/webkit/WebCore/bridge/
npruntime_internal.h 47 #undef Bool
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/include/
visual_header.h 26 typedef uint Bool;
mp4dec_api.h 29 typedef uint Bool;
150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
151 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);
152 OSCL_IMPORT_REF Bool PVCleanUpVideoDecoder(VideoDecControls *decCtrl);
153 Bool PVResetVideoDecoder(VideoDecControls *decCtrl);
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
159 Bool PVDecodeVopBody(VideoDecControls *decCtrl, int32 buffer_size[])
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
gsm_amr_typedefs.h 97 typedef int Bool;
  /frameworks/base/media/libstagefright/codecs/aacdec/
pv_audio_type_defs.h 149 #ifndef Bool
150 typedef Int Bool;
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
pv_amr_wb_type_defs.h 135 #ifndef Bool
136 typedef Int Bool;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xdefs.h 46 #ifndef Bool
49 typedef int Bool;
  /hardware/ti/omap3/dspbridge/inc/
std.h 63 *! 01-Mar-1994 kw: Made Bool an int (was MdUns) for _56_ (more efficient).
210 typedef int Bool; /* boolean */
212 typedef long Bool; /* boolean to match Windows boolean def */
214 typedef MdUns Bool; /* boolean */
242 #define FALSE ((Bool)0)
243 #define TRUE ((Bool)1)
  /external/bzip2/
bzip2recover.c 55 typedef unsigned char Bool;
56 #define True ((Bool)1)
57 #define False ((Bool)0)
261 static Bool endsInBz2 ( Char* name )
bzip2.c 162 typedef unsigned char Bool;
169 #define True ((Bool)1)
170 #define False ((Bool)0)
184 Bool keepInputFiles, smallMode, deleteOutputOnInterrupt;
185 Bool forceOverwrite, testFailsExist, unzFailsExist, noisy;
266 Bool uInt64_isZero ( UInt64* n )
318 Bool myfeof ( FILE* f )
433 Bool uncompressStream ( FILE *zStream, FILE *stream )
554 Bool testStream ( FILE *zStream )
940 Bool fileExists ( Char* name
    [all...]
bzlib_private.h 42 typedef unsigned char Bool;
49 #define True ((Bool)1)
50 #define False ((Bool)0)
237 Bool inUse[256];
276 BZ2_compressBlock ( EState*, Bool );
358 Bool blockRandomised;
367 Bool smallDecompress;
395 Bool inUse[256];
396 Bool inUse16[16];
  /external/gtest/test/
gtest_pred_impl_unittest.cc 56 struct Bool {
57 explicit Bool(int val) : value(val != 0) {}
59 bool operator>(int n) const { return value > Bool(n).value; }
61 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); }
63 bool operator==(const Bool& rhs) const { return value == rhs.value; }
65 bool value
    [all...]
  /external/protobuf/gtest/test/
gtest_pred_impl_unittest.cc 56 struct Bool {
57 explicit Bool(int val) : value(val != 0) {}
59 bool operator>(int n) const { return value > Bool(n).value; }
61 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); }
63 bool operator==(const Bool& rhs) const { return value == rhs.value; }
65 bool value
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 67 #define Bool int // this got undefined somewhere
91 bool PluginView::dispatchNPEvent(NPEvent& event)
101 bool accepted = m_plugin->pluginFuncs()->event(m_instance, &event);
206 const bool syncX = m_pluginDisplay && m_pluginDisplay != GDK_DISPLAY();
570 void PluginView::setParentVisible(bool visible)
825 bool PluginView::platformStart()
  /external/webkit/WebCore/plugins/qt/
PluginViewQt.cpp 73 #define Bool int
172 const bool syncX = m_pluginDisplay && m_pluginDisplay != QX11Info::display();
195 const bool hasValidBackingStore = backingStoreDevice && backingStoreDevice->devType() == QInternal::Pixmap;
202 const bool backingStoreHasUntransformedContents = client && qobject_cast<QWidget*>(client->pluginParent());
240 bool PluginView::dispatchNPEvent(NPEvent& event)
248 bool accepted = m_plugin->pluginFuncs()->event(m_instance, &event);
519 void PluginView::setParentVisible(bool visible)
709 static const bool useXRender = qgetenv("QT_X11_NO_XRENDER").isNull(); // Should also check for XRender >= 0.5
711 static const bool useXRender = false;
746 bool PluginView::platformStart(
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
typedefs.h 30 * Bool boolean true, false
165 typedef int Bool;
  /external/srec/shared/src/
SessionTypeImpl.c 1163 VariableTypes Bool = TYPES_BOOL;
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/include/
mp4enc_api.h 31 typedef unsigned int Bool;
235 Bool useACPred;
255 OSCL_IMPORT_REF Bool PVGetDefaultEncOption(VideoEncOptions *encOption, Int encUseCase);
262 OSCL_IMPORT_REF Bool PVInitVideoEncoder(VideoEncControls *encCtrl, VideoEncOptions *encOption);
276 OSCL_IMPORT_REF Bool PVGetVolHeader(VideoEncControls *encCtrl, UChar *volHeader, Int *size, Int layer);
285 OSCL_IMPORT_REF Bool PVGetH263ProfileLevelID(VideoEncControls *encCtrl, Int *profileID, Int *levelID);
294 OSCL_IMPORT_REF Bool PVGetMPEG4ProfileLevelID(VideoEncControls *encCtrl, Int *profile_level, Int nLayer);
302 OSCL_IMPORT_REF Bool PVGetMaxVideoFrameSize(VideoEncControls *encCtrl, Int *maxVideoFrameSize);
318 OSCL_IMPORT_REF Bool PVGetVBVSize(VideoEncControls *encCtrl, Int *VBVSize);
337 OSCL_IMPORT_REF Bool PVEncodeVideoFrame(VideoEncControls *encCtrl, VideoEncFrameIO *vid_in, VideoEncFrameIO *vid_out
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
mp4def.h 62 typedef unsigned int Bool;
  /external/chromium/third_party/icu/source/test/intltest/
wbnf.cpp 314 class Bool{ // A wrapper class for CHOICE, to auto adapter UBool class
318 Bool(CHOICE flag=RAND):tag(flag){}
339 Bool escape_literal;
340 Bool two_quotes_escape;
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 314 class Bool{ // A wrapper class for CHOICE, to auto adapter UBool class
318 Bool(CHOICE flag=RAND):tag(flag){}
339 Bool escape_literal;
340 Bool two_quotes_escape;
    [all...]
  /external/freetype/src/raster/
ftraster.c 308 typedef char Bool;
479 Bool fresh; /* signals a fresh new profile which */
481 Bool joint; /* signals that the last arc ended */
511 Bool second_pass; /* indicates whether a horizontal pass */
696 static Bool
698 Bool overshoot )
    [all...]

Completed in 1215 milliseconds

1 2