HomeSort by relevance Sort by last modified time
    Searched full:trigger (Results 76 - 100 of 5233) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/sysctl/
Makefile 4 # No binaries, but make sure arg-less "make" doesn't trigger "run_tests".
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
117-line-continuation-and-non-continuation-backslash.c 5 * To trigger the bug, there must be a line-continuation sequence
  /external/python/cpython3/Lib/test/crashers/
trace_at_recursion_limit.py 4 A misbehaving trace hook can trigger a segfault by exceeding the recursion
  /external/skia/infra/bots/recipes/android_compile.expected/
android_compile_trybot.json 11 "name": "Trigger and wait for task on android-compile.skia.org"
  /external/skqp/infra/bots/recipes/android_compile.expected/
android_compile_trybot.json 11 "name": "Trigger and wait for task on android-compile.skia.org"
  /external/sl4a/Common/src/com/googlecode/android_scripting/trigger/
Trigger.java 17 package com.googlecode.android_scripting.trigger;
30 public interface Trigger extends Serializable {
42 * Returns the event name that this {@link Trigger} is interested in.
44 // TODO(damonkohler): This could be removed by maintaining a reverse mapping from Trigger to event
  /external/valgrind/drd/tests/
pth_barrier_reinit.c 0 /** Trigger barrier reinitialization, which is not allowed by the POSIX
  /frameworks/base/data/keyboards/
Vendor_054c_Product_0268.kl 54 # L2 trigger
57 # R2 trigger
60 # L1 trigger
63 # R1 trigger
  /frameworks/base/services/core/java/com/android/server/timezone/
PackageTrackerIntentHelper.java 32 * Schedule a "reliability trigger" after at least minimumDelayMillis, replacing any existing
33 * scheduled one. A reliability trigger ensures that the {@link PackageTracker} can pick up
35 * the device is idle. The trigger is expected to call
41 * Make sure there is no reliability trigger scheduled. No-op if there wasn't one.
  /frameworks/support/lifecycle/livedata/src/test/java/androidx/lifecycle/
TransformationsTest.java 75 LiveData<Integer> trigger = new MutableLiveData<>(); local
78 LiveData<String> result = Transformations.switchMap(trigger,
94 trigger.setValue(1);
99 trigger.setValue(2);
108 LiveData<Integer> trigger = new MutableLiveData<>(); local
111 LiveData<String> result = Transformations.switchMap(trigger,
127 trigger.setValue(1);
137 trigger.setValue(2);
146 LiveData<Integer> trigger = new MutableLiveData<>(); local
148 LiveData<String> result = Transformations.switchMap(trigger,
169 LiveData<Integer> trigger = new MutableLiveData<>(); local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/test2json/testdata/
benchshort.test 1 # This file ends in an early EOF to trigger the Benchmark prefix test,
  /prebuilts/go/linux-x86/src/cmd/internal/test2json/testdata/
benchshort.test 1 # This file ends in an early EOF to trigger the Benchmark prefix test,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
pr19910-1.s 1 # U suffix should not trigger an error.
pr19910-2.s 1 # Mistyping V instead of U should trigger an error message
  /frameworks/base/core/java/android/hardware/
TriggerEvent.java 20 * This class represents a Trigger Event - the event
21 * associated with a Trigger Sensor. When the sensor detects a trigger
25 * after the trigger.
28 * when the trigger happened, the timestamp along with detailed
  /external/scapy/test/
pipetool.uts 325 d1 = TriggerDrain(lambda x:x=="trigger")
336 s.send("trigger")
338 s.send("trigger")
342 assert c.q.get(timeout=5) == "trigger"
350 d1 = TriggerDrain(lambda x:x=="trigger")
363 s.send("trigger")
365 s.send("trigger")
369 assert c.q.get(timeout=5) == "trigger"
377 d1 = TriggerDrain(lambda x:x=="trigger")
388 s.send("trigger")
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/CapsuleApp/
CapsuleApp.uni 4 // This application can trigger capsule update process. It can also
21 #string STR_MODULE_DESCRIPTION #language en-US "This application can trigger capsule update process. It can also generate capsule image, or dump capsule variable information."
  /external/trappy/trappy/stats/
Indexer.py 79 """"The index unifies the indices of all trigger
82 :param triggers: A (list or single) trigger
83 :type triggers: :mod:`trappy.stats.Trigger.Trigger`
92 """Function to unify all the indices of each trigger
96 for trigger in self._triggers:
97 trace = trigger.trace
98 trappy_event = getattr(trace, trigger.template.name)
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 90 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
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;
93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
96 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
97 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
99 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /art/test/144-static-field-sigquit/
info.txt 8 to trigger occasionally with the buildbots.
  /development/samples/browseable/SwipeRefreshMultipleViews/
_index.jd 9 gesture to a layout with multiple children, enabling the ability to trigger a
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 9 if (a > b) // simply filling in 0 or 1 doesn't trigger the assertion
  /external/clang/test/SemaCXX/
PR20110.cpp 5 // FIXME: These templates should trigger errors in C++11 mode.
  /external/llvm/test/MC/Mips/
mips-register-names-invalid.s 4 # $32 used to trigger an assertion instead of the usual error message due to
  /external/llvm/test/Transforms/Inline/
inline-indirect.ll 2 ; This test used to trigger an assertion in the assumption cache when

Completed in 2679 milliseconds

1 2 34 5 6 7 8 91011>>