HomeSort by relevance Sort by last modified time
    Searched refs:AFTER (Results 1 - 25 of 65) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
incpath.h 34 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /frameworks/minikin/include/minikin/
GraphemeBreak.h 26 AFTER = 0,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PseudoElement.cpp 40 case AFTER: {
41 DEFINE_STATIC_LOCAL(QualifiedName, after, (nullAtom, "<pseudo:after>", nullAtom));
42 return after;
62 DEFINE_STATIC_LOCAL(const String, after, ("::after"));
65 case AFTER:
66 return after;
113 if (style->styleType() != BEFORE && style->styleType() != AFTER)
ElementRareData.h 187 setPseudoElement(AFTER, nullptr);
199 case AFTER:
219 case AFTER:
NodeRenderingTraversal.cpp 89 return toElement(parent)->pseudoElement(AFTER);
140 Node* last = currentElement->pseudoElement(AFTER);
184 return toElement(parentNode)->pseudoElement(AFTER);
198 first = currentElement->pseudoElement(AFTER);
Node.h 235 bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
438 // Note: This method only works properly after layout has occurred.
551 // There are another callback named didNotifySubtreeInsertionsToDocument(), which is called after all the descendant is notified,
606 // Handlers to do/undo actions on the target node before an event is dispatched to it and after the event
    [all...]
Node.cpp 428 return parent->pseudoElement(AFTER);
442 first = currentElement->pseudoElement(AFTER);
453 Node* last = currentElement->pseudoElement(AFTER);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfo.cpp 129 #define AFTER(_list) ((_list).offset + (_list).itemSize * (_list).count)
130 mHeader.objectSlotList.offset = AFTER(mHeader.pragmaList);
133 mHeader.exportVarNameList.offset = AFTER(mHeader.objectSlotList);
136 mHeader.exportFuncNameList.offset = AFTER(mHeader.exportVarNameList);
139 mHeader.exportForeachFuncList.offset = AFTER(mHeader.exportFuncNameList);
141 #undef AFTER
  /external/chromium_org/ui/webui/resources/js/cr/ui/
position_util.js 33 AFTER: 2, // p: left a: right, p: top, a: top
86 // Flip BEFORE, AFTER based on alignment.
89 type = AnchorType.AFTER;
90 else if (type == AnchorType.AFTER)
108 case AnchorType.AFTER:
117 type = AnchorType.AFTER;
141 case AnchorType.AFTER:
188 case AnchorType.AFTER:
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
101 CREATE TRIGGER groupmembership_update AFTER UPDATE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
104 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
105 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
108 CREATE TRIGGER organizations_update AFTER UPDATE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
110 CREATE TRIGGER peopleLookupWithPhoneticName_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
112 CREATE TRIGGER peopleLookup_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
115 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW (…)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
collate6.test 117 CREATE TRIGGER abc_t1 AFTER INSERT ON abc BEGIN
132 CREATE TRIGGER abc_t2 AFTER UPDATE ON abc BEGIN
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
133 CREATE TRIGGER groupmembership_update AFTER UPDATE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
136 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
137 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
140 CREATE TRIGGER organizations_update AFTER UPDATE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
142 CREATE TRIGGER peopleLookupWithPhoneticName_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
144 CREATE TRIGGER peopleLookup_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
147 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW (…)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
157 CREATE TRIGGER groupmembership_update AFTER UPDATE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
160 CREATE TRIGGER organizations_INSERT_typeAndLabel AFTER INSERT ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
161 CREATE TRIGGER organizations_UPDATE_typeAndLabel AFTER UPDATE ON organizations WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
164 CREATE TRIGGER organizations_update AFTER UPDATE ON organizations BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
166 CREATE TRIGGER peopleLookupWithPhoneticName_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookupWithPhoneticName', new._id, GET_NORMALIZED_STRING(CASE WHEN (new.phonetic_name IS NOT NULL AND new.phonetic_name != '') THEN new.phonetic_name ELSE (CASE WHEN (new.name is NOT NULL AND new.name != '') THEN new.name ELSE '' END) END), ' ', 1);END;
168 CREATE TRIGGER peopleLookup_insert AFTER INSERT ON people BEGIN SELECT _TOKENIZE('peopleLookup', new._id, new.name, ' ', 1);END;
171 CREATE TRIGGER phones_INSERT_typeAndLabel AFTER INSERT ON phones WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW (…)
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 721 #define AFTER VG_(get_ThreadState)(tid)->os_state.post_mach_trap_fn
4744 mach_port_name_t after; member in struct:__anon37209
    [all...]
  /frameworks/minikin/libs/minikin/
GraphemeBreak.cpp 103 case AFTER:
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 185 case SpanSet.AFTER:
219 case SpanSet.AFTER:
321 static final int AFTER = 2;
344 else return AFTER;
377 // Must be done after all the spans were added, to not record these additions
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 59 NOPSEUDO, FIRST_LINE, FIRST_LETTER, BEFORE, AFTER, BACKDROP, SELECTION, FIRST_LINE_INHERITED, SCROLLBAR,
67 PSEUDO_ELEMENT_MASK = (1 << (BEFORE - 1)) | (1 << (AFTER - 1)) | (1 << (BACKDROP - 1))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRuby.cpp 70 && toRenderBlock(object)->firstChild()->style()->styleType() == AFTER;
128 // Insert :before and :after content before/after the RenderRubyRun(s)
200 // If the child's parent is an anoymous block (must be generated :before/:after content)
234 // Insert :before and :after content before/after the RenderRubyRun(s)
306 // If the child's parent is an anoymous block (must be generated :before/:after content)
RenderCounter.cpp 125 case AFTER:
200 if (previousSiblingProtector) { // But we already found another counter that we come after.
394 return nullptr; // RenderCounters are restricted to before and after pseudo elements
396 if ((containerStyle == BEFORE) || (containerStyle == AFTER))
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 26 * can be set up to play together, in sequence, or after a specified delay.
111 // The amount of time in ms to delay starting the animation after start() is called
172 * @param items The animations that will be started one after another.
192 * @param items The animations that will be started one after another.
284 * <code>play(a1).after(a2)</code> sets up the AnimatorSet to play
407 * The amount of time, in milliseconds, to delay starting the animation after
418 * The amount of time, in milliseconds, to delay starting the animation after
528 // insert "play-after" delays
729 // The Dependency rule (WITH or AFTER) that the listener should wait for on
751 if (mRule == Dependency.AFTER) {
1217 public Builder after(Animator anim) { method in class:AnimatorSet.Builder
1238 public Builder after(long delay) { method in class:AnimatorSet.Builder
    [all...]
  /external/chromium_org/v8/src/compiler/
instruction.h 552 AFTER,
554 LAST_INNER_POSITION = AFTER
588 parallel_moves_[AFTER] = NULL;
795 // Represents architecture-specific generated code before, during, and after
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 213 // The timer is stopped on m_domAgent destruction, so this method will never be called after m_domAgent has been destroyed.
379 if (element->pseudoElement(AFTER))
380 unbind(element->pseudoElement(AFTER), nodesMap);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.cpp 301 if ((dynamicPseudo == BEFORE || dynamicPseudo == AFTER) && !ruleData.rule()->properties().hasProperty(CSSPropertyContent))
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js 322 Position.AFTER = 2;
328 Position.strings = ['before', 'after', 'inside', 'none'];
515 // stop iteration after level 2
546 Argument position: Position.BEFORE, Position.AFTER or Position.Inside
548 // move node1 after node2
549 tree.moveNode(node1, node2, Position.AFTER);
558 if (position === Position.AFTER) {
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.h 331 parallel_moves_[AFTER] = NULL;
350 AFTER,
352 LAST_INNER_POSITION = AFTER
    [all...]

Completed in 1021 milliseconds

1 2 3