Searched refs:annot (Results 1 - 22 of 22) sorted by relevance

/external/pdfium/fpdfsdk/
H A Dfpdfannot_embeddertest.cpp57 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
58 ASSERT_TRUE(annot);
59 EXPECT_EQ(FPDF_ANNOT_HIGHLIGHT, FPDFAnnot_GetSubtype(annot));
67 FPDFAnnot_GetColor(annot, FPDFANNOT_COLORTYPE_Color, &R, &G, &B, &A));
75 EXPECT_EQ(FPDF_OBJECT_STRING, FPDFAnnot_GetValueType(annot, kAuthorKey));
76 unsigned long len = FPDFAnnot_GetStringValue(annot, kAuthorKey, nullptr, 0);
78 EXPECT_EQ(28u, FPDFAnnot_GetStringValue(annot, kAuthorKey, buf.data(), len));
82 EXPECT_EQ(FPDF_OBJECT_STRING, FPDFAnnot_GetValueType(annot, kContentsKey));
83 len = FPDFAnnot_GetStringValue(annot, kContentsKey, nullptr, 0);
87 FPDFAnnot_GetStringValue(annot, kContentsKe
133 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 2); local
185 FPDF_ANNOTATION annot = FPDFPage_CreateAnnot(page, FPDF_ANNOT_TEXT); local
267 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
344 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
430 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
517 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
631 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
692 FPDF_ANNOTATION annot = FPDFPage_CreateAnnot(page, FPDF_ANNOT_STAMP); local
765 FPDF_ANNOTATION annot = FPDFPage_CreateAnnot(page, FPDF_ANNOT_STAMP); local
826 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
899 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1014 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1046 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1079 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1122 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1149 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, 0); local
1191 FPDF_ANNOTATION annot = local
1205 FPDF_ANNOTATION annot = local
1233 FPDF_ANNOTATION annot = local
[all...]
H A Dfpdfannot.cpp179 CPDF_AnnotContext* CPDFAnnotContextFromFPDFAnnotation(FPDF_ANNOTATION annot) { argument
180 return static_cast<CPDF_AnnotContext*>(annot);
257 FPDF_ANNOTATION annot) {
259 CPDF_AnnotContext* pAnnot = CPDFAnnotContextFromFPDFAnnotation(annot);
280 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_CloseAnnot(FPDF_ANNOTATION annot) { argument
281 delete CPDFAnnotContextFromFPDFAnnotation(annot);
299 FPDFAnnot_GetSubtype(FPDF_ANNOTATION annot) { argument
300 if (!annot)
304 CPDFAnnotContextFromFPDFAnnotation(annot)->GetAnnotDict();
319 FPDFAnnot_UpdateObject(FPDF_ANNOTATION annot, FPDF_PAGEOBJEC argument
256 FPDFPage_GetAnnotIndex(FPDF_PAGE page, FPDF_ANNOTATION annot) argument
353 FPDFAnnot_AppendObject(FPDF_ANNOTATION annot, FPDF_PAGEOBJECT obj) argument
407 FPDFAnnot_GetObjectCount(FPDF_ANNOTATION annot) argument
424 FPDFAnnot_GetObject(FPDF_ANNOTATION annot, int index) argument
442 FPDFAnnot_RemoveObject(FPDF_ANNOTATION annot, int index) argument
467 FPDFAnnot_SetColor(FPDF_ANNOTATION annot, FPDFANNOT_COLORTYPE type, unsigned int R, unsigned int G, unsigned int B, unsigned int A) argument
505 FPDFAnnot_GetColor(FPDF_ANNOTATION annot, FPDFANNOT_COLORTYPE type, unsigned int* R, unsigned int* G, unsigned int* B, unsigned int* A) argument
572 FPDFAnnot_HasAttachmentPoints(FPDF_ANNOTATION annot) argument
583 FPDFAnnot_SetAttachmentPoints(FPDF_ANNOTATION annot, const FS_QUADPOINTSF* quadPoints) argument
624 FPDFAnnot_GetAttachmentPoints(FPDF_ANNOTATION annot, FS_QUADPOINTSF* quadPoints) argument
649 FPDFAnnot_SetRect(FPDF_ANNOTATION annot, const FS_RECTF* rect) argument
679 FPDFAnnot_GetRect(FPDF_ANNOTATION annot, FS_RECTF* rect) argument
693 FPDFAnnot_HasKey(FPDF_ANNOTATION annot, FPDF_BYTESTRING key) argument
707 FPDFAnnot_GetValueType(FPDF_ANNOTATION annot, FPDF_BYTESTRING key) argument
717 FPDFAnnot_SetStringValue(FPDF_ANNOTATION annot, FPDF_BYTESTRING key, FPDF_WIDESTRING value) argument
734 FPDFAnnot_GetStringValue(FPDF_ANNOTATION annot, FPDF_BYTESTRING key, void* buffer, unsigned long buflen) argument
751 FPDFAnnot_SetAP(FPDF_ANNOTATION annot, FPDF_ANNOT_APPEARANCEMODE appearanceMode, FPDF_WIDESTRING value) argument
796 FPDFAnnot_GetAP(FPDF_ANNOTATION annot, FPDF_ANNOT_APPEARANCEMODE appearanceMode, void* buffer, unsigned long buflen) argument
820 FPDFAnnot_GetLinkedAnnot(FPDF_ANNOTATION annot, FPDF_BYTESTRING key) argument
834 FPDFAnnot_GetFlags(FPDF_ANNOTATION annot) argument
843 FPDFAnnot_SetFlags(FPDF_ANNOTATION annot, int flags) argument
858 FPDFAnnot_GetFormFieldFlags(FPDF_PAGE page, FPDF_ANNOTATION annot) argument
[all...]
H A Dcpdfsdk_pageview.cpp106 CPDFSDK_Annot* annot = GetFocusAnnot();
107 if (!annot)
110 docView->GetWidgetHandler()->RenderWidget(annot->GetXFAWidget(), &gs,
506 [p](const std::unique_ptr<CPDF_Annot>& annot) {
507 return annot.get() == p;
H A Dfpdfedit_embeddertest.cpp932 FPDF_ANNOTATION annot = FPDFPage_CreateAnnot(page, FPDF_ANNOT_UNDERLINE); local
933 ASSERT_TRUE(annot);
939 FPDFPage_CloseAnnot(annot);
/external/pdfium/public/
H A Dfpdf_annot.h142 // Get the index of |annot| in |page|. This is the opposite of
146 // annot - handle to an annotation.
148 // Returns the index of |annot|, or -1 on failure.
150 FPDF_ANNOTATION annot);
157 // annot - handle to an annotation.
158 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_CloseAnnot(FPDF_ANNOTATION annot);
173 // annot - handle to an annotation.
177 FPDFAnnot_GetSubtype(FPDF_ANNOTATION annot);
191 // Update |obj| in |annot|. |obj| must be in |annot| alread
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp132 unsigned annot; local
135 annot)) {
136 assert((annot == 1) && "Unexpected annotation on a texture symbol");
145 unsigned annot; local
148 annot)) {
149 assert((annot == 1) && "Unexpected annotation on a surface symbol");
158 unsigned annot; local
161 annot)) {
162 assert((annot == 1) && "Unexpected annotation on a sampler symbol");
168 std::vector<unsigned> annot; local
182 std::vector<unsigned> annot; local
197 std::vector<unsigned> annot; local
212 std::vector<unsigned> annot; local
231 unsigned annot; local
[all...]
/external/tensorflow/tensorflow/python/debug/cli/
H A Dcli_shared_test.py137 annot = run_start_intro.font_attr_segs[11][0]
138 self.assertEqual(2, annot[0])
139 self.assertEqual(5, annot[1])
140 self.assertEqual("run", annot[2][0].content)
141 self.assertEqual("bold", annot[2][1])
142 annot = run_start_intro.font_attr_segs[13][0]
143 self.assertEqual(2, annot[0])
144 self.assertEqual(8, annot[1])
145 self.assertEqual("run -n", annot[2][0].content)
146 self.assertEqual("bold", annot[
[all...]
H A Dtensor_format.py338 annot = formatted.annotations
352 if r not in annot:
355 if BEGIN_INDICES_KEY in annot[r]:
357 elif OMITTED_INDICES_KEY in annot[r]:
362 if prev_indices <= ind < annot[r][indices_key]
374 OMITTED_INDICES_KEY in annot[prev_r]
384 prev_indices = annot[r][indices_key]
396 OMITTED_INDICES_KEY in annot[prev_r]
/external/desugar/java/com/google/devtools/common/options/processor/
H A DProcessorUtils.java46 for (AnnotationMirror annot : element.getAnnotationMirrors()) {
47 if (typeUtils.isSameType(annot.getAnnotationType(), annotationMirror)) {
48 return annot;
/external/pdfium/fxjs/
H A Dcjs_annot.cpp16 CPDFSDK_BAAnnot* ToBAAnnot(CPDFSDK_Annot* annot) { argument
17 return static_cast<CPDFSDK_BAAnnot*>(annot);
109 void Annot::SetSDKAnnot(CPDFSDK_BAAnnot* annot) { argument
110 m_pAnnot.Reset(annot);
H A Dcjs_annot.h27 void SetSDKAnnot(CPDFSDK_BAAnnot* annot);
/external/libxml2/include/libxml/
H A DschemasInternals.h257 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaAttribute
310 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaWildcard
368 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaAttributeGroup
609 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaType
772 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaElement
828 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaFacet
844 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaNotation
929 xmlSchemaAnnotPtr annot; member in struct:_xmlSchema
/external/ltp/testcases/kernel/security/smack/
H A Dsmack_set_socket_labels.c70 char *annot = "security.SMACK64IPNOT"; local
98 rc = fsetxattr(sock, annot, avnot, strlen(avnot) + 1, 0);
/external/pdfium/samples/
H A Dpdfium_test.cc336 snprintf(filename, sizeof(filename), "%s.%d.annot.txt", pdf_name, num);
355 FPDF_ANNOTATION annot = FPDFPage_GetAnnot(page, i); local
356 if (!annot) {
360 FPDF_ANNOTATION_SUBTYPE subtype = FPDFAnnot_GetSubtype(annot);
365 AnnotFlagsToString(FPDFAnnot_GetFlags(annot)).c_str());
368 const int obj_count = FPDFAnnot_GetObjectCount(annot);
374 FPDFPageObj_GetType(FPDFAnnot_GetObject(annot, j)));
385 if (!FPDFAnnot_GetColor(annot, FPDFANNOT_COLORTYPE_Color, &R, &G, &B, &A)) {
390 if (!FPDFAnnot_GetColor(annot, FPDFANNOT_COLORTYPE_InteriorColor, &R, &G,
401 FPDFAnnot_GetStringValue(annot, kContentsKe
[all...]
/external/libxml2/
H A Dxmlschemas.c496 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaAnnotItem
509 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaTreeItem
526 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaAttributeUse
671 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaParticle
691 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaModelGroup
709 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaModelGroupDef
746 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaIDC
3523 * @annot: a schema type structure
3722 * @annot: a schema type structure
3727 xmlSchemaFreeAnnot(xmlSchemaAnnotPtr annot) argument
4291 xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot) argument
6940 xmlSchemaAnnotPtr annot = NULL; local
8151 xmlSchemaAddAnnotation(xmlSchemaAnnotItemPtr annItem, xmlSchemaAnnotPtr annot) argument
8501 xmlSchemaAnnotPtr annot = NULL; local
9792 xmlSchemaAnnotPtr annot; local
[all...]
H A Dxmlschemastypes.c345 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaTreeItem
354 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaParticle
366 xmlSchemaAnnotPtr annot; member in struct:_xmlSchemaModelGroup
/external/pdfium/fpdfsdk/formfiller/
H A Dcffl_formfiller.cpp21 CPDFSDK_Widget* CPDFSDKAnnotToWidget(CPDFSDK_Annot* annot) { argument
22 return static_cast<CPDFSDK_Widget*>(annot);
/external/guice/extensions/persist/lib/
H A Dhibernate-entitymanager.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/hibernate/ org/hibernate/ejb/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...

Completed in 501 milliseconds