Searched refs:affinity (Results 26 - 50 of 50) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbe.c268 ** Processing is determine by the affinity parameter:
276 ** always preferred, even if the affinity is REAL, because
286 Mem *pRec, /* The value to apply affinity to */
287 char affinity, /* The affinity to be applied */
290 if( affinity==SQLITE_AFF_TEXT ){
299 }else if( affinity!=SQLITE_AFF_NONE ){
300 assert( affinity==SQLITE_AFF_INTEGER || affinity==SQLITE_AFF_REAL
301 || affinity
285 applyAffinity( Mem *pRec, char affinity, u8 enc ) argument
328 sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ) argument
1757 char affinity; /* Affinity to use for comparison */ local
[all...]
H A Dupdate.c69 pCol->affinity, &pValue);
74 if( iReg>=0 && pTab->aCol[i].affinity==SQLITE_AFF_REAL ){
H A Dinsert.c38 ** Return a pointer to the column affinity string associated with index
39 ** pIdx. A column affinity string has one character for each column in
40 ** the table, according to the affinity of the column:
42 ** Character Column affinity
53 ** Memory for the buffer containing the column index affinity string
59 /* The first time a column affinity string for a particular index is
63 ** The column affinity string will eventually be deleted by
76 pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
86 ** Set P4 of the most recently inserted opcode to a column affinity
87 ** string for table pTab. A column affinity strin
[all...]
H A Dbuild.c981 /* If there is no type specified, columns have the default affinity
983 ** be called next to set pCol->affinity correctly.
985 pCol->affinity = SQLITE_AFF_NONE;
1004 ** associated affinity type.
1008 ** found, the corresponding affinity is returned. If zType contains
1081 pCol->affinity = sqlite3AffinityType(pCol->zType);
1417 assert( pCol->affinity-SQLITE_AFF_TEXT >= 0 );
1418 assert( pCol->affinity-SQLITE_AFF_TEXT < ArraySize(azType) );
1419 testcase( pCol->affinity==SQLITE_AFF_TEXT );
1420 testcase( pCol->affinity
[all...]
H A Dresolve.c261 pExpr->affinity = SQLITE_AFF_INTEGER;
285 pExpr->affinity = SQLITE_AFF_INTEGER;
475 pExpr->affinity = SQLITE_AFF_INTEGER;
573 /* FIX ME: Compute pExpr->affinity based on the expected return
H A Dselect.c40 pDest->affinity = 0;
647 p->affinity = sqlite3CompareAffinity(pEList->a[0].pExpr, pDest->affinity);
656 sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult, 1, r1, &p->affinity, 1);
912 sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, 1, regRowid, &p->affinity, 1);
1335 pCol->affinity = sqlite3ExprAffinity(p);
1336 if( pCol->affinity==0 ) pCol->affinity = SQLITE_AFF_NONE;
1962 p->affinity =
1963 sqlite3CompareAffinity(p->pEList->a[0].pExpr, pDest->affinity);
[all...]
H A DsqliteInt.h1102 char affinity; /* One of the SQLITE_AFF_... values */ member in struct:Column
1153 ** Column affinity types.
1160 ** when multiple affinity types are concatenated into a string and
1176 ** affinity value.
1181 ** Additional bit values that can be ORed with an affinity without
1182 ** changing the affinity.
1281 char *zColAff; /* String defining the affinity of each column */
1480 char *zColAff; /* String defining the affinity of each column */
1639 char affinity; /* The affinity o member in struct:Expr
2033 char affinity; /* MakeRecord with this affinity for SRT_Set */ member in struct:Select
2088 u8 affinity; /* Affinity used when eDest==SRT_Set */ member in struct:SelectDest
[all...]
H A Dwhere.c591 idxaff = pIdx->pTable->aCol[iColumn].affinity;
667 ** be the name of an indexed column with TEXT affinity. */
1720 aff = pSrc->pTab->aCol[pTerm->u.leftColumn].affinity;
2368 ** an sqlite3_value structure containing the same value, with affinity
2376 ** affinity aff applied to it, instead.
2462 u8 aff = p->pTable->aCol[p->aiColumn[0]].affinity;
2546 u8 aff; /* Column affinity */
2551 aff = p->pTable->aCol[p->aiColumn[0]].affinity;
2603 u8 aff; /* Column affinity */
2614 aff = p->pTable->aCol[p->aiColumn[0]].affinity;
[all...]
H A Dparse.y1280 A.pExpr->affinity = OE_Ignore;
1288 A.pExpr->affinity = (char)T;
/external/chromium_org/ui/gfx/
H A Drender_text_pango.cc492 LogicalCursorDirection affinity = caret.caret_affinity(); local
497 if (RangeContainsCaret(item_range, position, affinity))
H A Drender_text.cc573 LogicalCursorDirection affinity =
575 SetSelectionModel(SelectionModel(sel, affinity));
814 // In overtype mode, ignore the affinity and always indicate that we will
H A Drender_text_harfbuzz.cc847 LogicalCursorDirection affinity = caret.caret_affinity(); local
849 if (RangeContainsCaret(runs_[run]->range, layout_position, affinity))
H A Drender_text_win.cc1253 LogicalCursorDirection affinity = caret.caret_affinity(); local
1255 if (RangeContainsCaret(runs_[run]->range, layout_position, affinity))
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DThreadState.h591 template<ThreadAffinity affinity> class ThreadStateFor;
H A DHeap.h72 template<ThreadAffinity affinity> class ThreadLocalPersistents;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.cpp478 // the affinity must be downstream so the position doesn't jump back to the previous line
500 // generate VisiblePosition, use UPSTREAM affinity if possible
510 EAffinity affinity = VP_DEFAULT_AFFINITY; local
513 affinity = DOWNSTREAM;
516 affinity = VP_UPSTREAM_IF_POSSIBLE;
519 affinity = offset > box->caretMinOffset() ? VP_UPSTREAM_IF_POSSIBLE : DOWNSTREAM;
523 return box->renderer().createPositionWithAffinity(offset + textStartOffset, affinity);
H A DRenderObject.cpp3357 PositionWithAffinity RenderObject::createPositionWithAffinity(int offset, EAffinity affinity) argument
3366 return PositionWithAffinity(candidate, affinity);
3369 return PositionWithAffinity(candidate, affinity);
3372 return PositionWithAffinity(createLegacyEditingPosition(node, offset), affinity);
H A DRenderTreeAsText.cpp687 if (selection.affinity() == UPSTREAM)
688 ts << " (upstream affinity)";
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTypingCommand.cpp304 VisiblePosition start(endingSelection().start(), endingSelection().affinity());
H A DEditorCommand.cpp221 EAffinity affinity = frame.selection().affinity();
222 frame.selection().setSelectedRange(newRange.get(), affinity, FrameSelection::NonDirectional, FrameSelection::CloseTyping);
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield.cc1759 gfx::LogicalCursorDirection affinity = GetSelectionModel().caret_affinity(); local
1769 model_->MoveCursorTo(gfx::SelectionModel(range, affinity));
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c4159 ** numeric affinity to the value. This means that an attempt is
9447 char affinity; /* One of the SQLITE_AFF_... values */ member in struct:Column
9498 ** Column affinity types.
9505 ** when multiple affinity types are concatenated into a string and
9521 ** affinity value.
9526 ** Additional bit values that can be ORed with an affinity without
9527 ** changing the affinity.
9626 char *zColAff; /* String defining the affinity of each column */
9825 char *zColAff; /* String defining the affinity of each column */
9984 char affinity; /* Th member in struct:Expr
10378 char affinity; /* MakeRecord with this affinity for SRT_Set */ member in struct:Select
10433 u8 affinity; /* Affinity used when eDest==SRT_Set */ member in struct:SelectDest
56981 sqlite3ValueFromExpr( sqlite3 *db, Expr *pExpr, u8 enc, u8 affinity, sqlite3_value **ppVal ) argument
62101 applyAffinity( Mem *pRec, char affinity, u8 enc ) argument
62144 sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ) argument
62526 char affinity; /* Affinity to use for comparison */ member in struct:vdbeExecUnion::OP_Ge_stack_vars
72349 char affinity; /* Affinity of the LHS of the IN */ local
72537 char affinity; /* Comparison affinity to use */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c4291 ** numeric affinity to the value. This means that an attempt is
9301 #define OP_Affinity 47 /* synopsis: affinity(r[P1@P2]) */
10781 char affinity; /* One of the SQLITE_AFF_... values */ member in struct:Column
10815 ** Column affinity types.
10822 ** when multiple affinity types are concatenated into a string and
10838 ** affinity value.
10843 ** Additional bit values that can be ORed with an affinity without
10844 ** changing the affinity.
10944 char *zColAff; /* String defining the affinity of each column */
11162 char *zColAff; /* String defining the affinity o
11351 char affinity; /* The affinity of the column or 0 if not a column */ member in struct:Expr
61796 valueFromExpr( sqlite3 *db, Expr *pExpr, u8 enc, u8 affinity, sqlite3_value **ppVal, struct ValueNewStat4Ctx *pCtx ) argument
61908 sqlite3ValueFromExpr( sqlite3 *db, Expr *pExpr, u8 enc, u8 affinity, sqlite3_value **ppVal ) argument
61992 stat4ValueFromExpr( Parse *pParse, Expr *pExpr, u8 affinity, struct ValueNewStat4Ctx *pAlloc, sqlite3_value **ppVal ) argument
62066 sqlite3Stat4ProbeSetValue( Parse *pParse, Index *pIdx, UnpackedRecord **ppRec, Expr *pExpr, u8 affinity, int iVal, int *pbOk ) argument
62100 sqlite3Stat4ValueFromExpr( Parse *pParse, Expr *pExpr, u8 affinity, sqlite3_value **ppVal ) argument
68169 applyAffinity( Mem *pRec, char affinity, u8 enc ) argument
68213 sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ) argument
69929 char affinity; /* Affinity to use for comparison */ local
80002 char affinity; /* Affinity of the LHS of the IN */ local
80199 char affinity; /* Comparison affinity to use */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c4291 ** numeric affinity to the value. This means that an attempt is
9301 #define OP_Affinity 47 /* synopsis: affinity(r[P1@P2]) */
10781 char affinity; /* One of the SQLITE_AFF_... values */ member in struct:Column
10815 ** Column affinity types.
10822 ** when multiple affinity types are concatenated into a string and
10838 ** affinity value.
10843 ** Additional bit values that can be ORed with an affinity without
10844 ** changing the affinity.
10944 char *zColAff; /* String defining the affinity of each column */
11162 char *zColAff; /* String defining the affinity o
11351 char affinity; /* The affinity of the column or 0 if not a column */ member in struct:Expr
61816 valueFromExpr( sqlite3 *db, Expr *pExpr, u8 enc, u8 affinity, sqlite3_value **ppVal, struct ValueNewStat4Ctx *pCtx ) argument
61928 sqlite3ValueFromExpr( sqlite3 *db, Expr *pExpr, u8 enc, u8 affinity, sqlite3_value **ppVal ) argument
62012 stat4ValueFromExpr( Parse *pParse, Expr *pExpr, u8 affinity, struct ValueNewStat4Ctx *pAlloc, sqlite3_value **ppVal ) argument
62086 sqlite3Stat4ProbeSetValue( Parse *pParse, Index *pIdx, UnpackedRecord **ppRec, Expr *pExpr, u8 affinity, int iVal, int *pbOk ) argument
62120 sqlite3Stat4ValueFromExpr( Parse *pParse, Expr *pExpr, u8 affinity, sqlite3_value **ppVal ) argument
68189 applyAffinity( Mem *pRec, char affinity, u8 enc ) argument
68233 sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ) argument
69949 char affinity; /* Affinity to use for comparison */ local
80022 char affinity; /* Affinity of the LHS of the IN */ local
80219 char affinity; /* Comparison affinity to use */ local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 3327 milliseconds

12