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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.h 36 // VisiblePosition default affinity is downstream because
55 // NOTE: UPSTREAM affinity will be used only if pos is at end of a wrapped line,
68 EAffinity affinity() const { ASSERT(m_affinity == UPSTREAM || m_affinity == DOWNSTREAM); return m_affinity; } function in class:WebCore::FINAL
69 void setAffinity(EAffinity affinity) { m_affinity = affinity; }
122 // FIXME: This shouldn't ignore affinity.
InsertParagraphSeparatorCommand.cpp 155 EAffinity affinity = endingSelection().affinity(); local
162 affinity = endingSelection().affinity();
188 VisiblePosition visiblePos(insertionPosition, affinity);
344 // FIXME: We need the affinity for pos, but pos.downstream() does not give it
VisibleSelection.h 63 void setAffinity(EAffinity affinity) { m_affinity = affinity; }
64 EAffinity affinity() const { return m_affinity; } function in class:WebCore::VisibleSelection
76 VisiblePosition visibleStart() const { return VisiblePosition(m_start, isRange() ? DOWNSTREAM : affinity()); }
77 VisiblePosition visibleEnd() const { return VisiblePosition(m_end, isRange() ? UPSTREAM : affinity()); }
78 VisiblePosition visibleBase() const { return VisiblePosition(m_base, isRange() ? (isBaseFirst() ? UPSTREAM : DOWNSTREAM) : affinity()); }
79 VisiblePosition visibleExtent() const { return VisiblePosition(m_extent, isRange() ? (isBaseFirst() ? DOWNSTREAM : UPSTREAM) : affinity()); }
163 EAffinity m_affinity; // the upstream/downstream affinity of the caret
177 return a.start() == b.start() && a.end() == b.end() && a.affinity() == b.affinity() && a.isBaseFirst() == b.isBaseFirst(
    [all...]
FrameSelection.h 120 EAffinity affinity() const { return m_selection.affinity(); } function in class:WebCore::FINAL
  /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 329 PositionWithAffinity(const Position& position, EAffinity affinity = DOWNSTREAM)
331 , m_affinity(affinity)
335 EAffinity affinity() const { return m_affinity; } function in class:WebCore::PositionWithAffinity
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 441 EAffinity affinity = selection.selection().affinity(); local
442 selection.setSelectedRange(merged.get(), affinity);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 53 EAffinity affinity; member in struct:WebCore::TextMarkerData
  /external/chromium_org/ui/gfx/
render_text_pango.cc 492 LogicalCursorDirection affinity = caret.caret_affinity(); local
497 if (RangeContainsCaret(item_range, position, affinity))
render_text_harfbuzz.cc 847 LogicalCursorDirection affinity = caret.caret_affinity(); local
849 if (RangeContainsCaret(runs_[run]->range, layout_position, affinity))
    [all...]
render_text_win.cc 1253 LogicalCursorDirection affinity = caret.caret_affinity(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ValidateNotificationPeople.java 67 * Affinity will be equal to or greater than this value on notifications
73 * Affinity will be equal to or greater than this value on notifications
142 * @param timeoutAffinity affinity to return when the timeout specified via
147 if (DEBUG) Slog.d(TAG, "checking affinity for " + userHandle);
156 float affinity = affinityOut[0]; local
172 Slog.w(TAG, "Timeout while waiting for affinity: " + key + ". "
177 Slog.w(TAG, "InterruptedException while waiting for affinity: " + key + ". "
178 + "Returning affinity=" + affinity, e);
179 return affinity;
212 float affinity = NONE; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 478 // 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);
    [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/ui/views/controls/textfield/
textfield.cc 1759 gfx::LogicalCursorDirection affinity = GetSelectionModel().caret_affinity(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java 61 private static final String ATTR_AFFINITY = "affinity";
86 String affinity; // The affinity name for this task, or null; may change identity. field in class:TaskRecord
87 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
91 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
225 affinity = _affinity;
281 affinity = info.taskAffinity;
284 // affinity -- we don't want it changing after initially set, but the initially
286 rootAffinity = affinity;
883 String affinity = null; local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 9447 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
9984 char affinity; \/* The affinity of the column or 0 if not a column *\/ 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
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/
sqlite3.c 10781 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
11351 char affinity; \/* The affinity of the column or 0 if not a column *\/ member in struct:Expr
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/
sqlite3.c 10781 char affinity; \/* One of the SQLITE_AFF_... values *\/ member in struct:Column
11351 char affinity; \/* The affinity of the column or 0 if not a column *\/ member in struct:Expr
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/
compiler.jar 

Completed in 1237 milliseconds