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

1 2

  /external/ImageMagick/coders/
caption.c 13 % Read Text Caption. %
79 % ReadCAPTIONImage() reads a CAPTION image file and returns it. It
99 *caption,
141 Format caption.
148 if (LocaleNCompare(option,"caption:",8) == 0)
154 (void) SetImageProperty(image,"caption",property,exception);
156 caption=ConstantString(GetImageProperty(image,"caption",exception));
158 (void) CloneString(&draw_info->text,caption);
166 text=AcquireString(caption);
97 *caption, local
    [all...]
pango.c 113 *caption,
186 Format caption.
199 (void) SetImageProperty(image,"caption",property,exception);
201 caption=ConstantString(GetImageProperty(image,"caption",exception));
339 pango_layout_set_text(layout,caption,-1);
346 if (pango_parse_markup(caption,-1,0,NULL,NULL,NULL,&error) == 0)
349 pango_layout_set_markup(layout,caption,-1);
392 caption=DestroyString(caption);
111 *caption, local
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_ffpushbutton.cpp 109 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
110 CXFA_Margin* captionMargin = caption ? caption->GetMarginIfExists() : nullptr;
140 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
141 if (!caption || caption->IsHidden())
176 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
177 if (!caption || !caption->IsVisible())
cxfa_ffcheckbutton.cpp 101 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
102 if (caption && caption->IsVisible()) {
104 iCapPlacement = caption->GetPlacementType();
105 fCapReserve = caption->GetReserve();
125 CXFA_Margin* captionMargin = caption ? caption->GetMarginIfExists() : nullptr;
cxfa_fffield.cpp 194 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
195 if (caption && !caption->IsHidden()) {
196 iCapPlacement = caption->GetPlacementType();
202 fCapReserve = caption->GetReserve();
234 CXFA_Margin* capMargin = caption ? caption->GetMarginIfExists() : nullptr;
605 CXFA_Caption* caption = m_pNode->GetCaptionIfExists();
606 if (!caption || !caption->IsVisible()
    [all...]
cxfa_widgetacc.cpp 273 CXFA_Caption* caption = pAcc->GetNode()->GetCaptionIfExists();
274 if (!caption || caption->IsHidden())
639 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
640 if (!caption || !caption->IsVisible())
646 XFA_AttributeEnum iCapPlacement = caption->GetPlacementType();
647 float fCapReserve = caption->GetReserve();
664 CXFA_Font* font = caption->GetFontIfExists();
681 CXFA_Margin* captionMargin = caption->GetMarginIfExists()
706 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
810 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
1146 CXFA_Caption* caption = m_pNode->GetCaptionIfExists(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 37 public String caption; field in class:LocalMediaItem
61 return caption;
86 details.addDetail(MediaDetails.INDEX_TITLE, caption);
  /external/skia/samplecode/
SampleCCPRGeometry.cpp 158 SkString caption; local
161 caption.appendf("RenderPass_%s", GrCCCoverageProcessor::RenderPassName(fRenderPass));
163 caption.appendf(" (%s)", SkCubicTypeName(fCubicType));
166 caption = "Use GPU backend to visualize geometry.";
189 canvas->drawText(caption.c_str(), caption.size(), 10, 30, captionPaint);
  /external/skqp/samplecode/
SampleCCPRGeometry.cpp 158 SkString caption; local
161 caption.appendf("RenderPass_%s", GrCCCoverageProcessor::RenderPassName(fRenderPass));
163 caption.appendf(" (%s)", SkCubicTypeName(fCubicType));
166 caption = "Use GPU backend to visualize geometry.";
189 canvas->drawText(caption.c_str(), caption.size(), 10, 30, captionPaint);
  /packages/apps/Messaging/src/com/android/messaging/ui/
AttachmentPreviewFactory.java 87 // Some views have a caption, set the text/visibility if one exists
88 final TextView captionView = (TextView) attachmentView.findViewById(R.id.caption);
90 final String caption = attachmentData.getText(); local
91 captionView.setVisibility(TextUtils.isEmpty(caption) ? View.GONE : View.VISIBLE);
92 captionView.setText(caption);
  /packages/experimental/KBars/app/src/main/java/js/kbars/
FitSystemWindowsActivity.java 38 public String caption; field in class:FitSystemWindowsActivity.Flag
50 flag.caption = f.getName().substring(prefix.length()).replace("NAVIGATION", "NAV").replace("TRANSPARENT", "TRANSP").replace("LAYOUT", "LAY");
78 setText(flag.caption);
129 private void append(StringBuilder sb, String caption, int vis) {
133 sb.append(caption).append(':');
142 sb.append(flag.caption);
  /external/tensorflow/tensorflow/python/debug/cli/
debugger_cli_common.py 1099 def caption(self): member in class:MenuItem
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main_wnd.cc 148 void GtkMainWnd::MessageBox(const char* caption, const char* text,
154 gtk_window_set_title(GTK_WINDOW(dialog), caption); local
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc 191 void MainWnd::MessageBox(const char* caption, const char* text, bool is_error) {
196 ::MessageBoxA(handle(), text, caption, flags); local
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/dream/
DreamBackend.java 55 public CharSequence caption; field in class:DreamBackend.DreamInfo
64 sb.append('[').append(caption);
124 dreamInfo.caption = resolveInfo.loadLabel(pm);
357 sb.append(di.caption);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 441 String caption = mContext.getResources() local
452 .setContentText(caption)
507 String caption = mContext.getResources() local
518 .setContentText(caption)
  /external/ImageMagick/MagickWand/
operation.c 623 if (LocaleCompare("caption",option+1) == 0)
2919 *caption; local
    [all...]
mogrify.c 2389 *caption; local
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_node.cpp 1940 CXFA_Caption* caption = GetCaptionIfExists(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ManagedServices.java 162 return mConfig.caption;
232 proto.write(ManagedServicesProto.CAPTION, getCaption());
360 Slog.i(TAG, "Read " + mConfig.caption + " permissions from xml");
431 (enabled ? " Allowing " : "Disallowing ") + mConfig.caption + " " + pkgOrComponent);
1280 public String caption; field in class:ManagedServices.Config
    [all...]
  /external/python/cpython2/PC/bdist_wininst/
install.c 598 char *text, *caption; local
600 if (!g_PyArg_ParseTuple(args, "ssi", &text, &caption, &flags))
602 rc = MessageBox(GetFocus(), text, caption, flags);
    [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c 626 char *text, *caption; local
628 if (!g_PyArg_ParseTuple(args, "ssi", &text, &caption, &flags))
630 rc = MessageBox(GetFocus(), text, caption, flags);
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/reporting/maven-reporting-impl/2.0.5/
maven-reporting-impl-2.0.5.jar 
  /toolchain/binutils/binutils-2.27/binutils/
windint.h 408 /* Caption. */
409 unichar *caption; member in struct:rc_dialog
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r3297-4/
javac-9-dev-r3297-4.jar 

Completed in 1822 milliseconds

1 2