HomeSort by relevance Sort by last modified time
    Searched full:trigger (Results 101 - 125 of 3820) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
PresPublishTriggerType.java 25 /** Publish Trigger Indication Definitions
47 /** Trigger is unknown. */
57 * Gets the publish trigger types.
65 * Sets the publish trigger type.
  /libcore/tzdata/update_test_app/res/values/
strings.xml 11 <string name="trigger_install">Trigger Install</string>
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
CachedLaterTest.java 52 mHarness.getLater(mTrap); // trigger create()
59 mHarness.getLater(mTrap); // trigger create()
67 mHarness.getLater(mTrap); // trigger create()
84 mHarness.getLater(mTrap); // trigger create()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
if_plip.h 22 unsigned long trigger; member in struct:plipconf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
if_plip.h 21 unsigned long trigger; member in struct:plipconf
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug418.go 19 // Recursive used to trigger an internal compiler error.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug418.go 19 // Recursive used to trigger an internal compiler error.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
cortex-a8-fix-b.s 35 @ Trigger Cortex-A8 erratum workaround with b instructions.
cortex-a8-fix-bcc.s 35 @ Trigger Cortex-A8 erratum workaround with conditional branches.
cortex-a8-fix-bl.s 35 @ Trigger Cortex-A8 erratum workaround with bl instructions.
  /external/llvm/test/CodeGen/X86/
masked_memop.ll 20 define <16 x i32> @test1(<16 x i32> %trigger, <16 x i32>* %addr) {
21 %mask = icmp eq <16 x i32> %trigger, zeroinitializer
33 define <16 x i32> @test2(<16 x i32> %trigger, <16 x i32>* %addr) {
34 %mask = icmp eq <16 x i32> %trigger, zeroinitializer
50 define void @test3(<16 x i32> %trigger, <16 x i32>* %addr, <16 x i32> %val) {
51 %mask = icmp eq <16 x i32> %trigger, zeroinitializer
63 define <16 x float> @test4(<16 x i32> %trigger, <16 x float>* %addr, <16 x float> %dst) {
64 %mask = icmp eq <16 x i32> %trigger, zeroinitializer
77 define <8 x double> @test5(<8 x i32> %trigger, <8 x double>* %addr, <8 x double> %dst) {
78 %mask = icmp eq <8 x i32> %trigger, zeroinitialize
    [all...]
  /external/autotest/server/site_tests/platform_KernelErrorPaths/
platform_KernelErrorPaths.py 19 # Simply sending the trigger into lkdtm resets the target
30 def _provoke_crash(self, interface, trigger, cpu):
39 @param trigger: the text string to write for triggering a crash
48 command = "echo %s | taskset -c %d tee %s" % (trigger, cpu,
52 command = "echo %s > %s" % (trigger, interface)
87 def _wait_for_restart_and_check(self, boot_id, trigger, text, cpu=0,
93 @param trigger: Text string that specifies what caused the panic/reboot.
95 @param cpu: CPU on which the trigger happened.
130 (text, trigger, cpu))
174 self._run_client_command('echo x > /proc/sysrq-trigger')
    [all...]
  /external/autotest/client/tests/kernel_sysrq_info/
kernel_sysrq_info.py 23 Trigger one SysRq command, and return the kernel log output
28 with open("/proc/sysrq-trigger", "w") as f:
  /external/autotest/server/site_tests/network_WiFi_WakeOnDisconnect/
network_WiFi_WakeOnDisconnect.py 31 # Kick over the router to trigger wake on disconnect.
37 # Ensure that wake on packet did not trigger a full wake.
  /external/llvm/test/Transforms/SimplifyCFG/
preserve-branchweights-partial.ll 3 ; This test case was written to trigger an incorrect assert statement in
11 ; be 0 to trigger the assert.
  /external/skia/tests/
ErrorTest.cpp 55 // should trigger the default error callback, which just prints to the screen.
60 // should trigger *our* callback.
  /frameworks/base/core/java/android/hardware/soundtrigger/
IRecognitionStatusCallback.aidl 35 * Called when a generic sound trigger event is witnessed.
38 * recognition event such as trigger audio data (if
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MailWebView.java 9 // NARROW_COLUMNS reflow can trigger the document to change size, so notify interested parties.
10 // This is also a good trigger to know when to alter scroll position.
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 122 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;
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;
125 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
127 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
131 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 146 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;
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;
149 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
151 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END;
155 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE peopl (…)
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_ae_precapture_trigger.py 26 """Test the AE state machine when using the precapture trigger.
44 # has an AE precapture trigger (which should be ignored since AE is
59 # Capture an auto request and verify the AE state; no trigger.
67 # Capture with auto request with a precapture trigger.
71 print "AE state after auto request with precapture trigger:", state
  /external/libjpeg-turbo/doc/html/
dynsections.js 6 var trigger = $('#'+base+'-trigger');
7 var src=$(trigger).attr('src');
12 $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');
17 $(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
  /external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown/
demo.html 48 x-trigger {
70 <polymer-element name="x-trigger" extends="paper-icon-button" relative on-tap="{{toggle}}" noink>
93 <x-trigger icon="menu">
99 </x-trigger>
101 <x-trigger icon="menu">
107 </x-trigger>
109 <x-trigger icon="menu">
115 </x-trigger>
117 <x-trigger icon="menu">
125 </x-trigger>
    [all...]
  /external/webrtc/webrtc/video/
vie_remb_unittest.cc 87 // Lower the estimate with more than 3% to trigger a call to SetREMBData right
116 // Lower the estimate to trigger a callback.
144 // Increased estimate shouldn't trigger a callback right away.
149 // Decreasing the estimate less than 3% shouldn't trigger a new callback.
178 // Decrease estimate to trigger a REMB.
214 // Lower the estimate, should trigger a call to SetREMBData right away.
220 // Call OnReceiveBitrateChanged again, this should not trigger a new callback.
228 // Only register receiving modules and make sure we fallback to trigger a REMB
246 // Lower the estimate to trigger a new packet REMB packet.
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/res/values/
strings.xml 25 This will trigger a rich notification that is bridged over to the Wear device.
35 This will trigger a notification on Wear that lets you open up the full
46 <string name="action_test_toggle_geofence">Toggle Geofence Trigger</string>

Completed in 2416 milliseconds

1 2 3 45 6 7 8 91011>>