HomeSort by relevance Sort by last modified time
    Searched refs:part (Results 276 - 300 of 1557) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test__locale.py 13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
  /system/bt/osi/src/socket_utils/
README 22 Note that only a part of the source files are pulled from libcutils/sockets, and
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
vldconst.s 136 # reuse high part of d1 in pool
143 # d17 should not reuse high part of d11 and s12.
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 626 for (final MessagePartData part : message.getParts()) {
627 if (part.isAttachment() &&
628 ContentType.isConversationListPreviewableType(part.getContentType())) {
629 uriString = part.getContentUri().toString();
630 type = part.getContentType();
1527 final MessagePartData part = MessagePartData.createFromCursor(cursor); local
1529 currentDraftParts.put(part.getContentUri(), part); local
1544 final MessagePartData part = currentDraftParts.valueAt(index); local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
multipart.go 28 // A Part represents a single part in a multipart body.
29 type Part struct {
55 func (p *Part) FormName() string {
67 // FileName returns the filename parameter of the Part's
69 func (p *Part) FileName() string {
76 func (p *Part) parseContentDisposition() {
102 func newPart(mr *Reader) (*Part, error) {
103 bp := &Part{
120 func (bp *Part) populateHeaders() error
    [all...]
  /prebuilts/go/linux-x86/src/mime/multipart/
multipart.go 28 // A Part represents a single part in a multipart body.
29 type Part struct {
55 func (p *Part) FormName() string {
67 // FileName returns the filename parameter of the Part's
69 func (p *Part) FileName() string {
76 func (p *Part) parseContentDisposition() {
102 func newPart(mr *Reader) (*Part, error) {
103 bp := &Part{
120 func (bp *Part) populateHeaders() error
    [all...]
  /external/llvm/test/MC/Mips/
hilo-addressing.s 11 # Check that 1 is added to the high 16 bits if bit 15 of the low part is 1.
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_tooltipctrlimp.cpp 119 CFWL_ThemePart part; local
120 part.m_pWidget = m_pInterface;
122 pTheme->GetCapacity(&part, FWL_WGTCAPACITY_CXBorder));
124 pTheme->GetCapacity(&part, FWL_WGTCAPACITY_CYBorder));
  /external/v8/src/base/
cpu.h 44 // arm implementer/part information
52 int part() const { return part_; } function in class:v8::base::final
54 // ARM-specific part codes
62 // Denver-specific part code
65 // PPC-specific part codes
  /external/v8/src/
fixed-dtoa.cc 29 uint32_t part = static_cast<uint32_t>(accumulator & kMask32); local
32 low_bits_ = (accumulator << 32) + part;
35 part = static_cast<uint32_t>(accumulator & kMask32);
38 high_bits_ = (accumulator << 32) + part;
  /prebuilts/go/darwin-x86/src/net/http/
proxy_test.go 29 {"foofoobar.com", true}, // not match as a part of foobar.com
30 {"baz.com", true}, // not match as a part of barbaz.com
  /prebuilts/go/linux-x86/src/net/http/
proxy_test.go 29 {"foofoobar.com", true}, // not match as a part of foobar.com
30 {"baz.com", true}, // not match as a part of barbaz.com
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonMatchingStrategy.java 33 import org.eclipse.ui.part.FileEditorInput;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorMatchingStrategy.java 29 import org.eclipse.ui.part.FileEditorInput;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceExplorerView.java 58 import org.eclipse.ui.part.ViewPart;
187 public void selectionChanged(IWorkbenchPart part, ISelection selection) {
188 // first we test if the part is an editor.
189 if (part instanceof IEditorPart) {
191 IEditorInput input = ((IEditorPart)part).getEditorInput();
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
pcrelcp-1.s 1 .symver x,expfn@TST2 ; .symver required to make @ part of name.
  /external/autotest/server/cros/faft/utils/
faft_checkers.py 244 part = self.faft_client.system.get_root_part()[-1]
245 if self.faft_framework.ROOTFS_MAP[expected_part] != part:
246 logging.info("Expected root part %s but got %s",
247 self.faft_framework.ROOTFS_MAP[expected_part], part)
  /external/chromium-trace/catapult/dashboard/dashboard/
list_tests.py 105 Row entities. These test paths omit the Master/bot/suite part.
115 """Returns the part of a test path starting from after the test suite."""
219 for index, part in enumerate(pattern_parts):
220 if '*' not in part:
221 query_filters.append((property_names[index], part))
  /external/curl/lib/
parsedate.c 11 * you should have received as part of this distribution. The terms
345 int part = 0; /* max 6 parts */ local
347 while(*date && (part < 6)) {
482 part++;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 202 // create and fill the first message part
203 MimeBodyPart part = new MimeBodyPart(); local
204 part.setText(
211 mp.addBodyPart(part);
213 //for each attachment create new message part
  /external/libbrillo/brillo/http/
http_form_data.cc 128 for (auto& part : parts_) {
129 std::string data = GetBoundaryStart() + part->GetContentHeader();
131 if (!part->ExtractDataStreams(streams))
  /external/libchrome/base/
cpu.cc 113 unsigned implementer = 0, architecture = 0, variant = 0, part = 0, local
122 {"CPU part", &part},
177 part == 0x4d &&
  /external/v8/tools/
gen-postmortem-metadata.py 383 part = parts[ii];
384 cctype += part[0].upper() + part[1:].lower();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ConversationMessageData.java 360 for (final MessagePartData part : mParts) {
361 if (part.isText()) {
374 // This is optimized for single text part case, which is the majority
376 // For single text part, we just return the part without creating the StringBuilder
382 for (final MessagePartData part : mParts) {
383 if (part.isText()) {
385 // First text part
386 firstTextPart = part.getText();
391 // Need the StringBuilder and the separator starting from 2nd text part
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/store/
ImapFolder.java 31 import com.android.phone.common.mail.Part;
267 * Part - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID
292 // TODO Why are we only fetching the first part given?
293 final Part fetchPart = fp.getFirstPart();
297 // TODO Why can a single part have more than one Id? And why should we only fetch
471 private static void parseBodyStructure(ImapList bs, Part part, String id)
482 * For each part in the message we're going to add a new BodyPart and parse
501 part.setBody(mp)
    [all...]

Completed in 732 milliseconds

<<11121314151617181920>>