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

1 2 3 4 5 6 7 8 91011>>

  /external/curl/tests/server/
testpart.c 11 * you should have received as part of this distribution. The terms
34 char *part; local
41 rc = getpart(&part, &partlen, argv[1], argv[2], stdin);
45 printf("%c", part[i]);
46 free(part);
  /art/libdexfile/dex/
dex_file_layout.cc 85 const DexLayoutSection::Subsection& part = section.parts_[i]; local
87 << part.start_offset_ << "-" << part.end_offset_ << ") ";
  /device/generic/goldfish/wifi/ipv6proxy/
main.cpp 53 char* part = nullptr; local
56 part = strchr(str, delimiter);
57 if (part != nullptr) {
58 *part = '\0';
59 str = part + 1;
61 } while (part != nullptr);
  /external/curl/tests/libtest/
lib652.c 11 * you should have received as part of this distribution. The terms
33 curl_mimepart *part; local
62 part = curl_mime_addpart(mime);
63 if(!part) {
68 res = curl_mime_filename(part, "myfile.jpg");
73 res = curl_mime_type(part, "image/jpeg");
78 res = curl_mime_data(part, buffer, sizeof buffer);
83 res = curl_mime_encoder(part, "base64");
105 /* send a multi-part mail */
lib643.c 11 * you should have received as part of this distribution. The terms
79 curl_mimepart *part = NULL; local
105 part = curl_mime_addpart(mime);
106 if(!part) {
114 /* Fill in the file upload part */
116 res = curl_mime_name(part, "sendfile");
118 res = curl_mime_data_cb(part, datasize, read_callback,
121 res = curl_mime_filename(part, "postit2.c");
125 res = curl_mime_name(part, "sendfile alternative");
127 res = curl_mime_data_cb(part, datasize, read_callback
258 curl_mimepart *part = curl_mime_addpart(mime); local
    [all...]
lib654.c 11 * you should have received as part of this distribution. The terms
75 curl_mimepart *part; local
109 part = curl_mime_addpart(mime);
110 curl_mime_data(part, "hello", CURL_ZERO_TERMINATED);
111 curl_mime_name(part, "greeting");
112 curl_mime_type(part, "application/X-Greeting");
113 curl_mime_encoder(part, "base64");
115 curl_mime_headers(part, hdrs, TRUE);
116 part = curl_mime_addpart(mime);
117 curl_mime_filedata(part, "log/file654.txt")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 320 // part of the template stuff, just add it.
330 // part of the template stuff, just add it.
458 AVTPart part = (AVTPart) m_parts.elementAt(i); local
459 buf.append(part.getSimpleString());
498 AVTPart part = (AVTPart) m_parts.elementAt(i); local
499 part.evaluate(xctxt, buf, context, nsNode);
546 AVTPart part = (AVTPart) m_parts.elementAt(i); local
548 if (part.canTraverseOutsideSubtree())
574 AVTPart part = (AVTPart) m_parts.elementAt(i); local
576 part.fixupVariables(vars, globalsSize)
592 AVTPart part = (AVTPart) m_parts.elementAt(i); local
    [all...]
  /external/curl/docs/examples/
smtp-mime.c 11 * you should have received as part of this distribution. The terms
78 curl_mimepart *part; local
110 /* The inline part is an alterative proposing the html and the text
115 part = curl_mime_addpart(alt);
116 curl_mime_data(part, inline_html, CURL_ZERO_TERMINATED);
117 curl_mime_type(part, "text/html");
120 part = curl_mime_addpart(alt);
121 curl_mime_data(part, inline_text, CURL_ZERO_TERMINATED);
123 /* Create the inline part. */
124 part = curl_mime_addpart(mime)
    [all...]
  /external/fio/lib/
flist_sort.c 100 struct flist_head *part[MAX_LIST_LENGTH_BITS+1]; /* sorted partial lists local
102 int lev; /* index into part[] */
109 memset(part, 0, sizeof(part));
119 for (lev = 0; part[lev]; lev++) {
120 cur = merge(priv, cmp, part[lev], cur);
121 part[lev] = NULL;
132 part[lev] = cur;
136 if (part[lev])
137 list = merge(priv, cmp, part[lev], list)
    [all...]
  /frameworks/base/tools/aapt/
ResourceFilter.cpp 20 const String8& part = configStrs[i]; local
21 if (part == "en_XA") {
23 } else if (part == "ar_XB") {
30 if (val.initFromFilterString(part)) {
34 } else if (!AaptConfig::parse(part, &entry.first)) {
35 fprintf(stderr, "Invalid configuration: %s\n", part.string());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
EclipseUiHelper.java 54 IViewPart part = page.showView(viewId, local
  /external/icu/icu4c/source/i18n/
selfmt.cpp 137 const MessagePattern::Part& part=pattern.getPart(partIndex++); local
138 const UMessagePatternPartType type=part.getType();
142 // part is an ARG_SELECTOR followed by a message
143 if(pattern.partSubstringMatches(part, keyword)) {
146 } else if(msgStart==0 && pattern.partSubstringMatches(part, other)) {
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 22 int part[3]; local
25 part[0] = part[1] = part[2] = 0;
34 if (part[i] > INT_MAX/10) return TRY_OTHER;/* number too big */
35 part[i] = part[i]*10+*text++-'0';
45 part[i++] = ATM_ITF_ANY; /* all *_ANY have the same value */
50 part[i++] = ATM_VPI_UNSPEC; /* all *_UNSPEC have the same
58 part[2] = part[1]
    [all...]
  /external/python/cpython2/Modules/
cgen.py 437 # Variable indicating the current input part.
439 part = 1 variable
452 if part == 1:
454 # In part 1, copy everything literally
458 part = part + 1 variable
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 62 // should have only one part since we parse smiley only
63 Part part = getPart(0); local
64 ArrayList<Token> tokens = part.getTokens();
  /frameworks/base/tools/streaming_proto/
string_utils.cpp 100 string part = str.substr(base, found - base); local
101 if (!part.empty()) {
102 result.push_back(part);
  /prebuilts/go/darwin-x86/src/mime/multipart/
writer.go 22 lastpart *part
88 // header. The body of the part should be written to the returned
89 // Writer. After calling CreatePart, any previous part may no longer
119 p := &part{
175 type part struct { type
181 func (p *part) close() error {
186 func (p *part) Write(d []byte) (n int, err error) {
188 return 0, errors.New("multipart: can't write to finished part")
  /prebuilts/go/linux-x86/src/mime/multipart/
writer.go 22 lastpart *part
88 // header. The body of the part should be written to the returned
89 // Writer. After calling CreatePart, any previous part may no longer
119 p := &part{
175 type part struct { type
181 func (p *part) close() error {
186 func (p *part) Write(d []byte) (n int, err error) {
188 return 0, errors.New("multipart: can't write to finished part")
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 88 IWorkbenchPart part = page.findView(PropertyView.ID); local
89 if (part != null) {
112 IWorkbenchPart part = page.findView(PixelPerfectTreeView.ID); local
113 if (part != null) {
  /toolchain/binutils/binutils-2.27/libiberty/
partition.c 5 This file is part of GNU CC.
47 partition part = (partition) local
50 part->num_elements = num_elements;
53 part->elements[e].class_element = e;
54 part->elements[e].next = &(part->elements[e]);
55 part->elements[e].class_count = 1;
58 return part;
64 partition_delete (partition part)
66 free (part);
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_item.java 177 production_part part; local
191 part = the_production().rhs(pos);
193 /* consider what kind of production part it is -- skip actions */
194 if (!part.is_action())
196 sym = ((symbol_part)part).the_symbol();
233 production_part part; local
243 part = the_production().rhs(pos);
246 if (!part.is_action())
248 sym = ((symbol_part)part).the_symbol();
lr_item_core.java 36 production_part part; local
56 part = _the_production.rhs(_dot_pos);
57 if (!part.is_action())
58 _symbol_after_dot = ((symbol_part)part).the_symbol();
84 /** The position of the "dot" -- this indicates the part of the production
90 /** The position of the "dot" -- this indicates the part of the production
209 production_part part; local
226 /* print the name of the part */
233 part = _the_production.rhs(i);
234 if (part == null
    [all...]
  /external/e2fsprogs/lib/blkid/
getsize.c 136 int part = -1; local
153 part = st.st_rdev & 7;
155 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) {
156 pp = &lab.d_partitions[part];
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_pipe.c 705 struct si_shader_part *part = parts[i]; local
707 parts[i] = part->next;
708 radeon_shader_binary_clean(&part->binary);
709 FREE(part);
  /external/pdfium/xfa/fwl/
cfwl_barcode.cpp 168 CFWL_ThemePart part; local
169 part.m_pWidget = this;
170 if (RetainPtr<CFGAS_GEFont> pFont = pTheme->GetFont(&part)) {
174 m_pBarcodeEngine->SetFontSize(pTheme->GetFontSize(&part));
175 m_pBarcodeEngine->SetFontColor(pTheme->GetTextColor(&part));

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>