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

1 2

  /dalvik/libcore/xml/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/gtest/include/gtest/
gtest-param-test.h 88 // Bool() - Yields sequence {false, true}.
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/include/
visual_header.h 24 typedef uint Bool;
mp4dec_api.h 35 typedef uint Bool;
156 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
157 Bool PVAllocVideoData(VideoDecControls *decCtrl, int width, int height, int nLayers);
158 OSCL_IMPORT_REF Bool PVCleanUpVideoDecoder(VideoDecControls *decCtrl);
159 Bool PVResetVideoDecoder(VideoDecControls *decCtrl);
161 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
162 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
163 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
164 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
165 Bool PVDecodeVopBody(VideoDecControls *decCtrl, int32 buffer_size[])
    [all...]
  /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...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/include/
gsm_amr_typedefs.h 114 #ifndef Bool
115 typedef int Bool;
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
gsm_amr_typedefs.h 97 typedef int Bool;
  /external/opencore/codecs_v2/audio/aac/dec/include/
pv_audio_type_defs.h 158 #ifndef Bool
159 typedef Int Bool;
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
pv_amr_wb_type_defs.h 150 #ifndef Bool
151 typedef Int Bool;
  /external/opencore/codecs_v2/audio/mp3/dec/include/
pvmp3_audio_type_defs.h 152 #ifndef Bool
153 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;
  /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/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...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/include/
mp4enc_api.h 33 typedef unsigned int Bool;
237 Bool useACPred;
257 OSCL_IMPORT_REF Bool PVGetDefaultEncOption(VideoEncOptions *encOption, Int encUseCase);
264 OSCL_IMPORT_REF Bool PVInitVideoEncoder(VideoEncControls *encCtrl, VideoEncOptions *encOption);
278 OSCL_IMPORT_REF Bool PVGetVolHeader(VideoEncControls *encCtrl, UChar *volHeader, Int *size, Int layer);
287 OSCL_IMPORT_REF Bool PVGetH263ProfileLevelID(VideoEncControls *encCtrl, Int *profileID, Int *levelID);
296 OSCL_IMPORT_REF Bool PVGetMPEG4ProfileLevelID(VideoEncControls *encCtrl, Int *profile_level, Int nLayer);
304 OSCL_IMPORT_REF Bool PVGetMaxVideoFrameSize(VideoEncControls *encCtrl, Int *maxVideoFrameSize);
320 OSCL_IMPORT_REF Bool PVGetVBVSize(VideoEncControls *encCtrl, Int *VBVSize);
339 OSCL_IMPORT_REF Bool PVEncodeVideoFrame(VideoEncControls *encCtrl, VideoEncFrameIO *vid_in, VideoEncFrameIO *vid_out
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
mp4def.h 50 typedef unsigned int Bool;
  /external/srec/shared/src/
SessionTypeImpl.c 1163 VariableTypes Bool = TYPES_BOOL;
    [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...]

Completed in 318 milliseconds

1 2