Home
last modified time | relevance | path

Searched refs:disposition (Results 1 – 25 of 34) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DLocalList.java125 private final Disposition disposition; field in LocalList.Entry
141 public Entry(int address, Disposition disposition, RegisterSpec spec) { in Entry() argument
146 if (disposition == null) { in Entry()
161 this.disposition = disposition; in Entry()
168 return Integer.toHexString(address) + " " + disposition + " " + in toString()
221 return disposition; in getDisposition()
231 return disposition == Disposition.START; in isStart()
310 public Entry withDisposition(Disposition disposition) { in withDisposition() argument
311 if (disposition == this.disposition) { in withDisposition()
315 return new Entry(address, disposition, spec); in withDisposition()
[all …]
/external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
Dtracer.c61 static void CTracer_disable_plugin(CTracer *self, PyObject * disposition);
325 PyObject * disposition = NULL; in CTracer_handle_call() local
354 disposition = PyDict_GetItem(self->should_trace_cache, filename); in CTracer_handle_call()
355 if (disposition == NULL) { in CTracer_handle_call()
364 disposition = PyObject_CallFunctionObjArgs(self->should_trace, filename, frame, NULL); in CTracer_handle_call()
365 if (disposition == NULL) { in CTracer_handle_call()
369 if (PyDict_SetItem(self->should_trace_cache, filename, disposition) < 0) { in CTracer_handle_call()
374 Py_INCREF(disposition); in CTracer_handle_call()
377 if (disposition == Py_None) { in CTracer_handle_call()
383 pdisp = (CFileDisposition *) disposition; in CTracer_handle_call()
[all …]
Ddatastack.h21 PyObject * disposition; member
/external/google-breakpad/src/common/mac/
DMachIPC.h112 disposition = in_disposition; in MachMsgPortDescriptor()
121 disposition = MACH_MSG_TYPE_COPY_SEND; in MachMsgPortDescriptor()
130 disposition = desc.disposition; in MachMsgPortDescriptor()
139 return disposition; in GetDisposition()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dexception.py523 def __init__(self, message, disposition): argument
524 super(ResumableUploadException, self).__init__(message, disposition)
526 self.disposition = disposition
530 self.message, self.disposition)
540 def __init__(self, message, disposition): argument
541 super(ResumableDownloadException, self).__init__(message, disposition)
543 self.disposition = disposition
547 self.message, self.disposition)
/external/libbrillo/brillo/http/
Dhttp_form_data.cc43 std::string disposition = content_disposition_; in GetContentDisposition() local
45 base::StringAppendF(&disposition, "; name=\"%s\"", name_.c_str()); in GetContentDisposition()
46 return disposition; in GetContentDisposition()
103 std::string disposition = FormField::GetContentDisposition(); in GetContentDisposition() local
104 base::StringAppendF(&disposition, "; filename=\"%s\"", file_name_.c_str()); in GetContentDisposition()
105 return disposition; in GetContentDisposition()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DMultipartBuilder.java177 StringBuilder disposition = new StringBuilder("form-data; name="); in addFormDataPart() local
178 appendQuotedString(disposition, name); in addFormDataPart()
181 disposition.append("; filename="); in addFormDataPart()
182 appendQuotedString(disposition, filename); in addFormDataPart()
185 return addPart(Headers.of("Content-Disposition", disposition.toString()), value); in addFormDataPart()
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dboto_resumable_upload.py366 disposition = ResumableTransferDisposition.WAIT_BEFORE_RETRY
369 disposition = ResumableTransferDisposition.ABORT
372 (resp.status, resp.reason), disposition)
456 if e.disposition == ResumableTransferDisposition.ABORT_CUR_PROCESS:
461 elif e.disposition == ResumableTransferDisposition.ABORT:
466 elif e.disposition == ResumableTransferDisposition.START_OVER:
Dboto_translation.py607 if (e.disposition ==
1500 if e.disposition == boto.exception.ResumableTransferDisposition.ABORT:
1502 elif (e.disposition ==
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/
Dtest_resumable_uploads.py127 self.assertEqual(e.disposition,
251 self.assertEqual(e.disposition,
357 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT_CUR_PROCESS)
374 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
395 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
415 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
481 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
547 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
Dtest_resumable_downloads.py109 self.assertEqual(e.disposition,
232 self.assertEqual(e.disposition,
349 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
Dresumable_upload_handler.py402 disposition = ResumableTransferDisposition.WAIT_BEFORE_RETRY
405 disposition = ResumableTransferDisposition.ABORT
408 (resp.status, resp.reason), disposition)
528 if (e.disposition == ResumableTransferDisposition.ABORT_CUR_PROCESS):
533 elif (e.disposition == ResumableTransferDisposition.ABORT):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
Dresumable_download_handler.py304 if (e.disposition ==
310 elif (e.disposition ==
/external/lzma/CPP/Windows/
DRegistry.cpp21 LPSECURITY_ATTRIBUTES securityAttributes, LPDWORD disposition) throw() in Create() argument
28 if (disposition != NULL) in Create()
29 *disposition = dispositionReal; in Create()
DRegistry.h34 LPDWORD disposition = NULL) throw();
/external/libbrillo/brillo/streams/
Dfile_stream.h74 Disposition disposition,
Dfile_stream.cc210 Disposition disposition, in Open() argument
226 switch (disposition) { in Open()
/external/valgrind/coregrind/
Dpub_core_threadstate.h178 Int disposition; member
/external/llvm/test/Transforms/LoopSimplify/
Dashr-crash.ll14 ; loop disposition is still marked as non-loop-invariant, which is
/external/opencv3/3rdparty/include/ffmpeg_/libavformat/
Davformat.h716 int disposition; /**< AV_DISPOSITION_* bit field */ member
/external/bison/tests/
Dskeletons.at297 # On some platforms, the default disposition for SIGPIPE is terminate,
/external/google-breakpad/src/client/mac/handler/
Dexception_handler.cc796 msg.thread.disposition = MACH_MSG_TYPE_PORT_SEND; in SendMessageToHandlerThread()
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-darwin.c4693 record_port_insert_rights(desc->port.name, desc->port.disposition); in import_complex_message()
4735 record_port_insert_rights(ports[i], desc->port.disposition); in import_complex_message()
4757 uint8_t disposition; in pre_port_desc_read() member
4763 PRE_FIELD_READ("msg->desc.port.disposition", desc->disposition); in pre_port_desc_read()
4804 uint8_t disposition; in pre_oolports_desc_read() member
4816 PRE_FIELD_READ("msg->desc.ool_ports.disposition", desc->disposition); in pre_oolports_desc_read()
5708 req->notify.name, req->notify.disposition); in PRE()
5737 name_for_port(req->name), req->poly.name, req->poly.disposition); in PRE()
/external/curl/packages/OS400/
DREADME.OS40039 order to force libcurl enums of being type int (the pragma disposition in use
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt1710 㹡 < a\-rush\-and\-impatient\-disposition;
4301 隨和 < amiable\-\(disposition\);
5378 稟性 < natural\-disposition;
11415 意向 < disposition;
26854 隨和 > amiable\-\(disposition\);
27170 稟性 > natural\-disposition;
29372 意向 > disposition;
37076 㹡 > a\-rush\-and\-impatient\-disposition;

12