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

1 2 3

  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
datastack.h 18 /* The disposition object for this frame. If collector.py and control.py
21 PyObject * disposition; member in struct:DataStackEntry
tracer.c 61 static void CTracer_disable_plugin(CTracer *self, PyObject * disposition);
325 PyObject * disposition = NULL; local
354 disposition = PyDict_GetItem(self->should_trace_cache, filename);
355 if (disposition == NULL) {
364 disposition = PyObject_CallFunctionObjArgs(self->should_trace, filename, frame, NULL);
365 if (disposition == NULL) {
369 if (PyDict_SetItem(self->should_trace_cache, filename, disposition) < 0) {
374 Py_INCREF(disposition);
377 if (disposition == Py_None) {
383 pdisp = (CFileDisposition *) disposition;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 89 * Disposition of a local entry.
91 public static enum Disposition {
124 /** {@code non-null;} disposition of the local */
125 private final Disposition disposition; field in class:LocalList.Entry
137 * @param disposition {@code non-null;} disposition of the local
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
146 if (disposition == null)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 88 * Disposition of a local entry.
90 public static enum Disposition {
123 /** {@code non-null;} disposition of the local */
124 private final Disposition disposition; field in class:LocalList.Entry
136 * @param disposition {@code non-null;} disposition of the local
140 public Entry(int address, Disposition disposition, RegisterSpec spec) {
145 if (disposition == null)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalList.java 89 * Disposition of a local entry.
91 public static enum Disposition {
124 /** {@code non-null;} disposition of the local */
125 private final Disposition disposition; field in class:LocalList.Entry
137 * @param disposition {@code non-null;} disposition of the local
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
146 if (disposition == null)
    [all...]
  /external/google-breakpad/src/common/mac/
MachIPC.h 112 disposition = in_disposition;
121 disposition = MACH_MSG_TYPE_COPY_SEND;
130 disposition = desc.disposition;
139 return disposition;
  /external/libbrillo/brillo/http/
http_form_data.cc 24 const char kContentDisposition[] = "Content-Disposition";
43 std::string disposition = content_disposition_; local
45 base::StringAppendF(&disposition, "; name=\"%s\"", name_.c_str());
46 return disposition;
103 std::string disposition = FormField::GetContentDisposition(); local
104 base::StringAppendF(&disposition, "; filename=\"%s\"", file_name_.c_str());
105 return disposition;
163 FileStream::Disposition::OPEN_EXISTING,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MultipartBuilder.java 177 StringBuilder disposition = new StringBuilder("form-data; name="); local
178 appendQuotedString(disposition, name);
181 disposition.append("; filename=");
182 appendQuotedString(disposition, filename);
185 return addPart(Headers.of("Content-Disposition", disposition.toString()), value);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
exception.py 491 # Enum class for resumable upload failure disposition.
520 self.disposition is of type ResumableTransferDisposition.
523 def __init__(self, message, disposition):
524 super(ResumableUploadException, self).__init__(message, disposition)
526 self.disposition = disposition
530 self.message, self.disposition)
537 self.disposition is of type ResumableTransferDisposition.
540 def __init__(self, message, disposition):
541 super(ResumableDownloadException, self).__init__(message, disposition)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
boto_resumable_upload.py 366 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:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/
test_resumable_uploads.py 127 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)
test_resumable_downloads.py 109 self.assertEqual(e.disposition,
232 self.assertEqual(e.disposition,
349 self.assertEqual(e.disposition, ResumableTransferDisposition.ABORT)
  /external/libbrillo/brillo/streams/
file_stream.h 26 enum class Disposition {
60 // by |mode|. The |disposition| specifies how the file must be opened/created:
74 Disposition disposition,
file_stream.cc 210 Disposition disposition,
226 switch (disposition) {
227 case Disposition::OPEN_EXISTING:
230 case Disposition::CREATE_ALWAYS:
233 case Disposition::CREATE_NEW_ONLY:
236 case Disposition::TRUNCATE_EXISTING:
  /external/lzma/CPP/Windows/
Registry.h 34 LPDWORD disposition = NULL) throw();
Registry.cpp 21 LPSECURITY_ATTRIBUTES securityAttributes, LPDWORD disposition) throw()
28 if (disposition != NULL)
29 *disposition = dispositionReal;
  /packages/apps/Email/provider_src/com/android/email/
LegacyConversions.java 178 final String disposition = MimeUtility.getHeaderParameter( local
180 if (!TextUtils.isEmpty(disposition)) {
205 // Incoming attachment: Try to pull size from disposition (if not downloaded yet)
207 final String disposition = part.getDisposition(); local
208 if (!TextUtils.isEmpty(disposition)) {
209 String s = MimeUtility.getHeaderParameter(disposition, "size");
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 93 // test 2: legacy message using content-disposition:filename style for name
227 * attachment names are sent as content-disposition:filename.
233 // construct parameter parts for content-type:name or content-disposition:filename.
293 String disposition = expected.getDisposition(); local
294 String sizeString = MimeUtility.getHeaderParameter(disposition, "size");
295 String dispositionFilename = MimeUtility.getHeaderParameter(disposition, "filename");
300 // filename is either content-type:name or content-disposition:filename
  /external/valgrind/coregrind/
pub_core_threadstate.h 178 Int disposition; member in struct:__anon25325::__anon25326::__anon25330
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 373 String disposition = part.getDisposition(); local
374 String dispositionType = MimeUtility.getHeaderParameter(disposition, null);
375 // If a disposition is not specified, default to "inline"
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeUtility.java 372 String disposition = part.getDisposition(); local
373 String dispositionType = MimeUtility.getHeaderParameter(disposition, null);
374 // If a disposition is not specified, default to "inline"
  /external/opencv3/3rdparty/include/ffmpeg_/libavformat/
avformat.h 716 int disposition; /**< AV_DISPOSITION_* bit field */ member in struct:AVStream
735 * For streams with AV_DISPOSITION_ATTACHED_PIC disposition, this packet
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgi.py 273 line = headers['content-disposition']
337 disposition = None variable in class:MiniFieldStorage
380 disposition: content-disposition, or None if not specified
456 # Process content-disposition header
458 if 'content-disposition' in self.headers:
459 cdisp, pdict = parse_header(self.headers['content-disposition'])
460 self.disposition = cdisp
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgi.py 273 line = headers['content-disposition']
337 disposition = None variable in class:MiniFieldStorage
380 disposition: content-disposition, or None if not specified
456 # Process content-disposition header
458 if 'content-disposition' in self.headers:
459 cdisp, pdict = parse_header(self.headers['content-disposition'])
460 self.disposition = cdisp
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 273 line = headers['content-disposition']
337 disposition = None variable in class:MiniFieldStorage
380 disposition: content-disposition, or None if not specified
456 # Process content-disposition header
458 if 'content-disposition' in self.headers:
459 cdisp, pdict = parse_header(self.headers['content-disposition'])
460 self.disposition = cdisp
    [all...]

Completed in 1327 milliseconds

1 2 3