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

1 2

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
uda1341.h 23 * Default rate set after inicialization
60 AFTER,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
uda1341.h 23 * Default rate set after inicialization
60 AFTER,
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfo.cpp 257 #define AFTER(_list) ((_list).offset + (_list).itemSize * (_list).count)
258 mHeader.pragmaList.offset = AFTER(mHeader.dependencyTable);
261 mHeader.objectSlotList.offset = AFTER(mHeader.pragmaList);
264 mHeader.exportVarNameList.offset = AFTER(mHeader.objectSlotList);
267 mHeader.exportFuncNameList.offset = AFTER(mHeader.exportVarNameList);
270 mHeader.exportForeachFuncList.offset = AFTER(mHeader.exportFuncNameList);
272 #undef 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...]
  /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/webkit/Source/WebCore/rendering/
RenderCounter.cpp 66 case AFTER:
76 if (RenderObject* after = renderer->afterPseudoElementRenderer())
77 return after;
112 case AFTER:
141 case AFTER:
174 case AFTER:
226 case AFTER:
308 if (previousSibling) { // But we already found another counter that we come after.
483 return 0; // RenderCounters are restricted to before and after pseudo elements
485 if ((containerStyle == BEFORE) || (containerStyle == AFTER))
    [all...]
RenderObjectChildList.cpp 254 // Only table parts need to search for the :before or :after parent
305 if (last && last->style()->styleType() != AFTER)
315 // In CSS2, before/after pseudo-content cannot nest. Check this first.
316 if (owner->style()->styleType() == BEFORE || owner->style()->styleType() == AFTER)
328 case AFTER:
343 // :after content and not :before content.
348 // then we don't generate the :after content.
349 if (newContentWanted && type == AFTER && owner->virtualContinuation())
452 ASSERT(styledObject->node()); // The styled object cannot be anonymous or else it could not have ':before' or ':after' pseudo elements.
RenderRuby.cpp 70 && object->firstChild()->style()->styleType() == AFTER;
130 // Insert :before and :after content before/after the RenderRubyRun(s)
202 // If the child's parent is an anoymous block (must be generated :before/:after content)
237 // Insert :before and :after content before/after the RenderRubyRun(s)
309 // If the child's parent is an anoymous block (must be generated :before/:after content)
RenderTableRow.cpp 70 children()->updateBeforeAfterContent(this, AFTER);
85 // Make sure we don't append things after :after-generated content if we have it.
RenderInline.cpp 72 // properly dirty line boxes that they are removed from. Effects that do :before/:after only on hover could crash otherwise.
138 // and after the block share the same style, but the block doesn't
158 // Update pseudos for :before and :after now.
161 children()->updateBeforeAfterContent(this, AFTER);
238 // Make sure we don't append things after :after-generated content if we have it.
246 // the children after |beforeChild| and put them in a clone of this object.
255 // Someone may have put a <p> inside a <q>, causing a split. When this happens, the :after content
256 // has to move into the inline continuation. Call updateBeforeAfterContent to ensure that our :after
260 children()->updateBeforeAfterContent(this, AFTER);
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 705 #define AFTER VG_(get_ThreadState)(tid)->os_state.post_mach_trap_fn
4718 mach_port_name_t after; member in struct:__anon16838
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
FloatingChildLayout.java 79 public static final int AFTER = 4;
274 mForegroundPhase = ForegroundPhase.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
  /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.
191 * @param items The animations that will be started one after another.
269 * <code>play(a1).after(a2)</code> sets up the AnimatorSet to play
392 * The amount of time, in milliseconds, to delay starting the animation after
403 * The amount of time, in milliseconds, to delay starting the animation after
475 // insert "play-after" delays
661 // The Dependency rule (WITH or AFTER) that the listener should wait for on
683 if (mRule == Dependency.AFTER) {
1113 public Builder after(Animator anim) { method in class:AnimatorSet.Builder
1133 public Builder after(long delay) { method in class:AnimatorSet.Builder
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyleConstants.h 71 NOPSEUDO, FIRST_LINE, FIRST_LETTER, BEFORE, AFTER, SELECTION, FIRST_LINE_INHERITED, SCROLLBAR, FILE_UPLOAD_BUTTON, INPUT_PLACEHOLDER,
  /external/chromium/chrome/browser/sync/resources/
gaia_login.js 142 // We're in ltr and in the translation the word 'Google' is AFTER the
  /external/v8/src/arm/
lithium-arm.h 326 parallel_moves_[AFTER] = NULL;
345 AFTER,
347 LAST_INNER_POSITION = AFTER
    [all...]
  /external/v8/src/ia32/
lithium-ia32.h 318 parallel_moves_[AFTER] = NULL;
337 AFTER,
339 LAST_INNER_POSITION = AFTER
    [all...]
  /external/v8/src/mips/
lithium-mips.h 325 parallel_moves_[AFTER] = NULL;
344 AFTER,
346 LAST_INNER_POSITION = AFTER
    [all...]
  /external/v8/src/x64/
lithium-x64.h 327 parallel_moves_[AFTER] = NULL;
346 AFTER,
348 LAST_INNER_POSITION = AFTER
    [all...]

Completed in 833 milliseconds

1 2