HomeSort by relevance Sort by last modified time
    Searched defs:affinity (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.h 35 // VisiblePosition default affinity is downstream because
53 // NOTE: UPSTREAM affinity will be used only if pos is at end of a wrapped line,
66 EAffinity affinity() const { ASSERT(m_affinity == UPSTREAM || m_affinity == DOWNSTREAM); return m_affinity; } function in class:WebCore::VisiblePosition
67 void setAffinity(EAffinity affinity) { m_affinity = affinity; }
121 // FIXME: This shouldn't ignore affinity.
InsertParagraphSeparatorCommand.cpp 155 EAffinity affinity = endingSelection().affinity(); local
162 affinity = endingSelection().affinity();
186 VisiblePosition visiblePos(insertionPosition, affinity);
329 // FIXME: We need the affinity for pos, but pos.downstream() does not give it
VisibleSelection.h 58 void setAffinity(EAffinity affinity) { m_affinity = affinity; }
59 EAffinity affinity() const { return m_affinity; } function in class:WebCore::VisibleSelection
71 VisiblePosition visibleStart() const { return VisiblePosition(m_start, isRange() ? DOWNSTREAM : affinity()); }
72 VisiblePosition visibleEnd() const { return VisiblePosition(m_end, isRange() ? UPSTREAM : affinity()); }
73 VisiblePosition visibleBase() const { return VisiblePosition(m_base, isRange() ? (isBaseFirst() ? UPSTREAM : DOWNSTREAM) : affinity()); }
74 VisiblePosition visibleExtent() const { return VisiblePosition(m_extent, isRange() ? (isBaseFirst() ? DOWNSTREAM : UPSTREAM) : affinity()); }
140 EAffinity m_affinity; // the upstream/downstream affinity of the caret
150 return a.start() == b.start() && a.end() == b.end() && a.affinity() == b.affinity() && a.isBaseFirst() == b.isBaseFirst(
    [all...]
FrameSelection.h 111 EAffinity affinity() const { return m_selection.affinity(); } function in class:WebCore::FrameSelection
EditorCommand.cpp 219 EAffinity affinity = frame->selection()->affinity(); local
220 if (!frame->editor()->client()->shouldChangeSelectedRange(oldRange.get(), newRange.get(), affinity, false))
222 frame->selection()->setSelectedRange(newRange.get(), affinity, true);
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
contact_provider_chromeos.cc 22 // Default affinity assigned to contacts whose |affinity| field is unset.
24 // getting affinity for contacts.
27 // Base match relevance assigned to a contact with an affinity of 0.0.
30 // Maximum boost to relevance for a contact with an affinity of 1.0.
72 float affinity)
79 affinity(affinity) {
98 // Affinity between the user and this contact, in the range [0.0, 1.0].
99 float affinity; member in struct:ContactProvider::ContactData
180 float affinity = local
    [all...]
  /external/clang/test/CodeGen/
decl.c 71 unsigned char affinity; member in struct:SelectDest
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 326 PositionWithAffinity(const Position& position, EAffinity affinity = DOWNSTREAM)
328 , m_affinity(affinity)
332 EAffinity affinity() const { return m_affinity; } function in class:WebCore::PositionWithAffinity
  /external/chromium_org/ui/gfx/
render_text_linux.cc 477 LogicalCursorDirection affinity = caret.caret_affinity(); local
482 if (RangeContainsCaret(item_range, position, affinity))
render_text_win.cc 870 LogicalCursorDirection affinity = caret.caret_affinity(); local
    [all...]
  /external/kernel-headers/original/linux/
irq.h 79 * @set_affinity: set the CPU affinity on SMP machines
132 * @affinity: IRQ affinity on SMP
157 cpumask_t affinity; member in struct:irq_desc
195 irq_desc[irq].affinity = mask;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 51 EAffinity affinity; member in struct:WebCore::TextMarkerData
  /frameworks/base/services/java/com/android/server/am/
TaskRecord.java 38 final String affinity; // The affinity name for this task, or null. field in class:TaskRecord
40 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
68 affinity = info.taskAffinity;
445 if (affinity != null) {
446 pw.print(prefix); pw.print("affinity="); pw.println(affinity);
497 if (affinity != null) {
499 sb.append(affinity);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 488 // the affinity must be downstream so the position doesn't jump back to the previous line
510 // generate VisiblePosition, use UPSTREAM affinity if possible
520 EAffinity affinity = VP_DEFAULT_AFFINITY; local
523 affinity = DOWNSTREAM;
526 affinity = VP_UPSTREAM_IF_POSSIBLE;
529 affinity = offset > box->caretMinOffset() ? VP_UPSTREAM_IF_POSSIBLE : DOWNSTREAM;
532 return box->renderer()->createPositionWithAffinity(offset, affinity);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
expr.c 18 ** Return the 'affinity' of the expression pExpr if any.
22 ** affinity of that column is returned. Otherwise, 0x00 is returned,
23 ** indicating no affinity for the expression.
26 ** have an affinity:
53 return pExpr->pTab->aCol[j].affinity;
55 return pExpr->affinity;
128 ** type affinity of the other operand. This routine returns the
129 ** type affinity that should be used for the comparison operator.
135 ** affinity, use that. Otherwise use no affinity
1612 char affinity; \/* Affinity of the LHS of the IN *\/ local
1800 char affinity; \/* Comparison affinity to use *\/ local
    [all...]
vdbe.c 268 ** 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==SQLITE_AFF_NUMERIC )
1757 char affinity; \/* Affinity to use for comparison *\/ local
    [all...]
sqliteInt.h 1102 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
1639 char affinity; \/* The affinity of the column or 0 if not a column *\/ 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...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 9462 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
9999 char affinity; \/* The affinity of the column or 0 if not a column *\/ member in struct:Expr
10393 char affinity; \/* MakeRecord with this affinity for SRT_Set *\/ member in struct:Select
10448 u8 affinity; \/* Affinity used when eDest==SRT_Set *\/ member in struct:SelectDest
62705 char affinity; \/* Affinity to use for comparison *\/ member in struct:vdbeExecUnion::OP_Ge_stack_vars
72528 char affinity; \/* Affinity of the LHS of the IN *\/ local
72716 char affinity; \/* Comparison affinity to use *\/ local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 10015 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
10548 char affinity; \/* The affinity of the column or 0 if not a column *\/ member in struct:Expr
10946 char affinity; \/* MakeRecord with this affinity for SRT_Set *\/ member in struct:Select
11003 u8 affinity; \/* Affinity used when eDest==SRT_Set *\/ member in struct:SelectDest
65049 char affinity; \/* Affinity to use for comparison *\/ member in struct:vdbeExecUnion::OP_Ge_stack_vars
76022 char affinity; \/* Affinity of the LHS of the IN *\/ local
76210 char affinity; \/* Comparison affinity to use *\/ local
    [all...]
  /external/sqlite/dist/
sqlite3.c 10015 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
10548 char affinity; \/* The affinity of the column or 0 if not a column *\/ member in struct:Expr
10946 char affinity; \/* MakeRecord with this affinity for SRT_Set *\/ member in struct:Select
11003 u8 affinity; \/* Affinity used when eDest==SRT_Set *\/ member in struct:SelectDest
65077 char affinity; \/* Affinity to use for comparison *\/ member in struct:vdbeExecUnion::OP_Ge_stack_vars
76058 char affinity; \/* Affinity of the LHS of the IN *\/ local
76246 char affinity; \/* Comparison affinity to use *\/ local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 724 milliseconds