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

1 2

  /frameworks/native/include/media/hardware/
HardwareAPI.h 88 MetadataBufferType eType;
  /external/chromium_org/third_party/sqlite/src/src/
mem2.c 61 u8 eType; /* Allocation type code */
269 pHdr->eType = MEMTYPE_HEAP;
381 void sqlite3MemdebugSetType(void *p, u8 eType){
386 pHdr->eType = eType;
391 ** Return TRUE if the mask of type in eType matches the type of the
399 int sqlite3MemdebugHasType(void *p, u8 eType){
405 if( (pHdr->eType&eType)==0 ){
413 ** Return TRUE if the mask of type in eType matches no bits of the type of th
    [all...]
test_mutex.c 28 int eType;
76 static sqlite3_mutex *counterMutexAlloc(int eType){
81 assert(eType<8 && eType>=0);
83 pReal = g.m.xMutexAlloc(eType);
86 if( eType==SQLITE_MUTEX_FAST || eType==SQLITE_MUTEX_RECURSIVE ){
89 pRet = &g.aStatic[eType-2];
92 pRet->eType = eType;
    [all...]
analyze.c 569 if( p->eType==SQLITE_TEXT || p->eType==SQLITE_BLOB ){
664 int eType = sqlite3_column_type(pStmt, 2);
679 pSample->eType = (u8)eType;
680 if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){
682 }else if( eType==SQLITE_TEXT || eType==SQLITE_BLOB ){
684 (eType==SQLITE_BLOB)
    [all...]
date.c 719 int eType;
723 }else if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT
724 || eType==SQLITE_INTEGER ){
test_onefile.c 112 int eType;
124 /* Values for fs_file.eType. */
411 if( (p->eType==DATABASE_FILE && (iAmt+iOfst)>pReal->nDatabase)
412 || (p->eType==JOURNAL_FILE && (iAmt+iOfst)>pReal->nJournal)
415 }else if( p->eType==DATABASE_FILE ){
450 if( p->eType==DATABASE_FILE ){
491 if( p->eType==DATABASE_FILE ){
508 if( p->eType==DATABASE_FILE ){
529 if( p->eType==DATABASE_FILE ){
593 int eType;
    [all...]
os_os2.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_expr.c 162 pRet->eType = FTSQUERY_PHRASE;
286 p->eType = FTSQUERY_PHRASE;
328 unsigned char eType; /* Keyword code */
369 if( pKey->eType==FTSQUERY_NEAR ){
391 pRet->eType = pKey->eType;
489 assert( p->eType!=FTSQUERY_PHRASE );
491 return p->eType;
492 }else if( p->eType==FTSQUERY_NEAR ){
494 }else if( p->eType==FTSQUERY_OR )
    [all...]
fts3Int.h 238 ** If Fts3Expr.eType is either FTSQUERY_NEAR or FTSQUERY_PHRASE and isLoaded
249 int eType; /* One of the FTSQUERY_XXX values defined below */
250 int nNear; /* Valid if eType==FTSQUERY_NEAR */
254 Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */
265 ** Candidate values for Fts3Query.eType. Note that the order of the first
fts3_snippet.c 145 int eType = pExpr->eType; /* Type of expression node pExpr */
147 if( eType!=FTSQUERY_PHRASE ){
150 if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){
197 assert( pExpr->eType==FTSQUERY_PHRASE );
200 && pParent->eType==FTSQUERY_NEAR
209 if( pLeft->eType!=FTSQUERY_PHRASE ){
210 assert( pLeft->eType==FTSQUERY_NEAR );
211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE );
835 assert( pExpr->eType==FTSQUERY_PHRASE )
    [all...]
  /frameworks/native/include/media/openmax/
OMX_Other.h 104 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
OMX_Component.h 142 OMX_SUSPENSIONTYPE eType;
OMX_Core.h 482 OMX_EXTRADATATYPE eType; /* Extra Data type */
    [all...]
  /hardware/qcom/media/mm-core/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
OMX_Component.h 125 OMX_SUSPENSIONTYPE eType;
OMX_Core.h 465 OMX_EXTRADATATYPE eType; /* Extra Data type */
    [all...]
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
OMX_Component.h 125 OMX_SUSPENSIONTYPE eType;
OMX_Core.h 465 OMX_EXTRADATATYPE eType; /* Extra Data type */
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/include/khronos/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
OMX_Component.h 125 OMX_SUSPENSIONTYPE eType;
OMX_Core.h 465 OMX_EXTRADATATYPE eType; /* Extra Data type */
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_Other.h 87 OMX_TIME_SEEKMODETYPE eType; /**< The seek mode */
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 472 int eType;
483 eType = _exptype(node);
484 if (eType < DTM.NTYPES) {
485 if (eType == nodeType) {
488 } else if (m_expandedNameTable.getType(eType) == nodeType) {
937 int eType;
946 eType = _exptype(node);
947 if (eType < DTM.NTYPES) {
948 if (eType == nodeType) {
951 } else if (m_expandedNameTable.getType(eType) == nodeType)
    [all...]

Completed in 581 milliseconds

1 2