HomeSort by relevance Sort by last modified time
    Searched defs:di (Results 1 - 25 of 75) sorted by null

1 2 3

  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsMessageReceiver.java 66 Intent di = new Intent(); local
67 di.setClass(context, SmsReceivedDialog.class);
68 di.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
69 di.putExtra(SmsReceivedDialog.SMS_FROM_ADDRESS_EXTRA, fromAddress);
70 di.putExtra(SmsReceivedDialog.SMS_FROM_DISPLAY_NAME_EXTRA, fromDisplayName);
71 di.putExtra(SmsReceivedDialog.SMS_MESSAGE_EXTRA, message.getMessageBody().toString());
72 context.startActivity(di);
  /packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
SmsMessageReceiver.java 76 Intent di = new Intent(); local
77 di.setClass(context, DialogSmsDisplay.class);
78 di.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP |
80 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, fromAddress);
81 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
82 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);
87 di.setType(Integer.toString(notificationId));
89 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, di, 0);
  /external/bluetooth/bluez/tools/
hcieventmask.c 46 struct hci_dev_info di; local
69 if (hci_devinfo(dev, &di) < 0) {
86 if (di.features[5] & LMP_SNIFF_SUBR)
89 if (di.features[5] & LMP_PAUSE_ENC)
92 if (di.features[6] & LMP_EXT_INQ)
95 if (di.features[6] & LMP_NFLUSH_PKTS)
98 if (di.features[7] & LMP_LSTO)
101 if (di.features[6] & LMP_SIMPLE_PAIR) {
114 if (di.features[4] & LMP_LE)
117 if (di.features[6] & LMP_LE_BREDR
    [all...]
csr_hci.c 45 struct hci_dev_info di; local
64 if (hci_devinfo(dev, &di) < 0) {
ciptool.c 134 struct hci_dev_info di; local
140 hci_devinfo(dev_id, &di);
141 if (!(di.link_policy & HCI_LP_RSWITCH)) {
  /packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
DialogSmsDisplayTests.java 278 Intent di = new Intent(); local
279 di.setClass(dialogSmsDisplayActivity, DialogSmsDisplay.class);
280 di.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP |
282 di.putExtra(DialogSmsDisplay.SMS_FROM_ADDRESS_EXTRA, dest);
283 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
284 di.putExtra(DialogSmsDisplay.SMS_NOTIFICATION_ID_EXTRA, notificationId);
285 dialogSmsDisplayActivity.onNewIntent(di);
  /bionic/libm/src/
e_jn.c 58 double a, b, temp, di; local
182 for(i=n-1,di=(double)(i+i);i>0;i--){
184 b *= di;
187 di -= two;
190 for(i=n-1,di=(double)(i+i);i>0;i--){
192 b *= di;
195 di -= two;
e_jnf.c 34 float a, b, temp, di; local
135 for(i=n-1,di=(float)(i+i);i>0;i--){
137 b *= di;
140 di -= two;
143 for(i=n-1,di=(float)(i+i);i>0;i--){
145 b *= di;
148 di -= two;
  /external/bluetooth/hcidump/src/
csrsniff.c 157 struct hci_dev_info di; local
204 if (hci_devinfo(dev, &di) < 0) {
225 if (!bacmp(&di.bdaddr, BDADDR_ANY)) {
233 bacpy(&bdaddr, &di.bdaddr);
235 need_raw = !hci_test_bit(HCI_RAW, &di.flags);
bpasniff.c 362 struct hci_dev_info di; local
409 if (hci_devinfo(dev, &di) < 0) {
  /external/fdlibm/
e_jn.c 61 double a, b, temp, di; local
186 for(i=n-1,di=(double)(i+i);i>0;i--){
188 b *= di;
191 di -= two;
194 for(i=n-1,di=(double)(i+i);i>0;i--){
196 b *= di;
199 di -= two;
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.c 135 #define di _sch_isdigit macro
151 #define D (const unsigned short) (di |xd|pr) /* decimal digit */
  /external/antlr/src/org/antlr/runtime/
DFA.java 192 int di = 0; local
198 data[di++] = (short)v;
212 int di = 0; local
218 data[di++] = v;
  /external/bluetooth/bluez/compat/
dun.c 58 struct rfcomm_dev_info *di; local
68 dl = malloc(sizeof(*dl) + RFCOMM_MAX_DEV * sizeof(*di));
76 di = dl->dev_info;
84 r = func(di + i, arg);
244 static int show_conn(struct rfcomm_dev_info *di, unsigned long arg)
248 if (di->state == BT_CONNECTED &&
249 (di->flags & (1<<RFCOMM_REUSE_DLC)) &&
250 (di->flags & (1<<RFCOMM_TTY_ATTACHED)) &&
251 (di->flags & (1<<RFCOMM_RELEASE_ONHUP))) {
253 if (find_pppd(di->id, &pid))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.cc 177 DirectoryIterator di;
178 di.Iterate(old_dir.pathname());
179 while (di.Next()) {
180 if (di.Name() == "." || di.Name() == "..")
186 source.SetFilename(di.Name());
187 dest.SetFilename(di.Name());
197 DirectoryIterator *di = IterateDirectory(); local
198 di->Iterate(folder);
199 while (di->Next())
    [all...]
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 82 Derived<int> di; // expected-note{{instantiation of}} member in namespace:Ambig
136 Derived<int> di; member in namespace:PR5812
example-dynarray.cpp 128 dynarray<int> di; local
129 di.push_back(0);
130 di.push_back(1);
131 di.push_back(2);
132 di.push_back(3);
133 di.push_back(4);
134 assert(di.size() == 5);
135 for (dynarray<int>::iterator I = di.begin(), IEnd = di.end(); I != IEnd; ++I)
136 assert(*I == I - di.begin())
    [all...]
  /external/libgsm/src/
short_term.c 202 register word di, zzz, ui, sav, rpi; local
207 di = sav = *s;
215 zzz = GSM_MULT_R(rpi, di);
219 di = GSM_ADD( di, zzz );
222 *s = di;
242 register float sav, di, temp; local
249 sav = di = *s;
255 temp = rpfi * di + ufi;
256 di += rpfi * ufi
    [all...]
  /external/valgrind/main/callgrind/
bb.c 201 DebugInfo* di; local
204 di = VG_(find_DebugInfo)(addr);
205 obj = CLG_(get_obj_node)( di );
210 offset = di ? VG_(DebugInfo_get_text_bias)(di):0;
212 Addr start = di ? VG_(DebugInfo_get_text_avma)(di) : 0;
218 CLG_ASSERT( obj->size == (di ? VG_(DebugInfo_get_text_size)(di) : 0) );
debug.c 379 DebugInfo* di; local
387 CLG_(get_debug_info)(addr, fl_buf, fn_buf, &ln, &di);
394 if (di) {
395 obj_name = VG_(DebugInfo_get_filename)(di);
  /dalvik/tests/068-classloader/src/
Main.java 349 System.out.println("Got LinkageError on DI (early)");
361 static void useImplement(DoubledImplement di, boolean isOne) {
362 //System.out.println("useObject: " + di.toString() + " -- "
363 // + di.getClass().getClassLoader());
365 di.one();
367 System.err.println("ERROR: did not get LinkageError on DI");
371 System.out.println("Got LinkageError on DI (late)");
  /device/moto/wingray/taudio/
resample.c 77 int di, div; local
82 di = 0;
99 div = divs[++di % divs_len];
  /external/bluetooth/bluez/test/
bdaddr.c 318 struct hci_dev_info di; local
362 if (hci_devinfo(dev, &di) < 0) {
376 if (!bacmp(&di.bdaddr, BDADDR_ANY)) {
384 bacpy(&bdaddr, &di.bdaddr);
  /external/opencv/cv/src/
cvfilter.cpp 255 int i1, i2, di; local
260 delta = di = -pix_sz;
267 delta = di = pix_sz;
279 for( i = i1; i != i2; i += di )
    [all...]
cvutils.cpp 301 int i1, i2, di; local
303 i1 = top-1, i2 = 0, di = -1, j = 1, dj = 1;
305 i1 = top+srcroi.height, i2=dstroi.height, di = 1, j = srcroi.height-2, dj = -1;
307 for( i = i1; i != i2; i += di )

Completed in 1935 milliseconds

1 2 3