Home
last modified time | relevance | path

Searched refs:index (Results 926 – 950 of 950) sorted by path

1...<<3132333435363738

/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/
H A Dopenssl.cfg61 database = $dir/index.txt # database index file.
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/
H A Dopenssl.cfg61 database = $dir/index.txt # database index file.
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_2_Root_4/
H A Dopenssl.cfg61 database = $dir/index.txt # database index file.
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_2_Root_7/
H A Dopenssl.cfg61 database = $dir/index.txt # database index file.
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_2_Root_8/
H A DREADME.txt7 openssl ocsp -index demoCA/index.txt -port 8889 -rsigner demoCA/cacert.pem -rkey demoCA/private/cak…
H A Dopenssl.cfg61 database = $dir/index.txt # database index file.
/trunk/main/xmlsecurity/test_docs/tools/
H A DREADME.txt16 a directory which contains the index.html. From there you run httpserv.jar:
22 localhost:8000/index.html
/trunk/main/xmlsecurity/tools/uno/
H A DAdapterNode.java76 protected int index(AdapterNode child) in index() method in AdapterNode
H A DAttributeListHelper.java77 public String getAttributeItem(short index, int itemIndex) in getAttributeItem() argument
81 if (index>=0 && index<getLength()) in getAttributeItem()
83 Vector attribute = (Vector)m_AttributeList.get(index); in getAttributeItem()
H A DDomToTreeModelAdapter.java80 public Object getChild(Object parent, int index) in getChild() argument
83 return node.child(index); in getChild()
89 return node.index((AdapterNode) child); in getIndexOfChild()
/trunk/test/testassistant/lib/
H A Dtestcommon.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/openoffice/ org/openoffice/test/ org/openoffice/test/common/ ...
/trunk/test/testassistant/src/org/openoffice/test/assistant/views/
H A DVclExplorerLabelProvider.java35 public String getColumnText(Object obj, int index) { in getColumnText() argument
37 switch (index) { in getColumnText()
50 public Image getColumnImage(Object obj, int index) { in getColumnImage() argument
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DFileProvider.java56 private int index; field in FileProvider.TestClassRunnerForParameters
58 …TestClassRunnerForParameters(Class<?> type, Object[] parameters, int index) throws InitializationE… in TestClassRunnerForParameters() argument
61 this.index = index; in TestClassRunnerForParameters()
71 …return getTestClass().getJavaClass().getSimpleName() + "[" + index + "]" + Arrays.toString(parame… in getName()
76 return method.getName() + "[" + index + "]" + Arrays.toString(parameters); in testName()
/trunk/test/testcommon/source/org/openoffice/test/vcl/widgets/
H A DVclComboBox.java49 public String getItemText(int index) { in getItemText() argument
50 return (String) invoke(Constant.M_GetItemText, new Object[] {index + 1}); in getItemText()
58 int index = ((Long) invoke(Constant.M_GetSelIndex)).intValue(); in getSelIndex() local
59 return index - 1; in getSelIndex()
93 public void select(int index) { in select() argument
94 invoke(Constant.M_Select, new Object[] {index + 1}); in select()
H A DVclListBox.java53 public String getItemText(int index, int col) { in getItemText() argument
54 …return (String) invoke(Constant.M_GetItemText, new Object[] { new Integer(index + 1), new Integer(… in getItemText()
63 public String getItemText(int index) { in getItemText() argument
64 return getItemText(index, 0); in getItemText()
100 public void select(int index) { in select() argument
101 invoke(Constant.M_Select, new Object[] { new Integer(index + 1) }); in select()
H A DVclMenu.java67 public VclMenuItem getItem(int index) { in getItem() argument
69 ….caller.callCommand(Constant.RC_MenuGetItemId, new Object[] { new Integer(index + 1) })).intValue(… in getItem()
H A DVclMenuItem.java210 int index = text.indexOf("~"); in getAccelerator() local
211 return index != -1 && index + 1 < text.length() ? text.charAt(index + 1) : 0; in getAccelerator()
H A DVclToolBox.java63 public String getItemText(int index) { in getItemText() argument
64 return (String) invoke(Constant.M_GetItemText2, new Object[] {index + 1}); in getItemText()
72 public String getItemQuickToolTipText(int index) { in getItemQuickToolTipText() argument
73 return (String) invoke(Constant.M_GetItemQuickHelpText, new Object[] {index + 1}); in getItemQuickToolTipText()
81 public String getItemToolTipText(int index) { in getItemToolTipText() argument
82 return (String) invoke(Constant.M_GetItemHelpText, new Object[] {index + 1}); in getItemToolTipText()
H A DVclTreeListBox.java61 public String getItemText(int index) { in getItemText() argument
83 return index - 1; in getSelIndex()
111 public String getSelText(int index, int col) { in getSelText() argument
120 public void select(int index) { in select() argument
121 invoke(Constant.M_Select, new Object[]{index+1}); in select()
128 public void unselect(int index) { in unselect() argument
129 invoke(Constant.M_Select, new Object[]{index + 1, false}); in unselect()
137 public void collapse(int index) { in collapse() argument
140 invoke(Constant.M_Collapse, new Object[]{index + 1, false}); in collapse()
160 public void expand(int index) { in expand() argument
[all …]
/trunk/test/testgui/source/svt/gui/sc/
H A DBasicFuncOnCalc.java444 for (int index = 3; index < 9; index++) { in closeAlldocuments()
/trunk/test/testuno/source/fvt/uno/sd/slideshow/
H A DSlideShow.java123 public XDrawPage createSlide(int index) throws Exception { in createSlide() argument
124 drawpages.insertNewByIndex(index); in createSlide()
125 XDrawPage xPage = PageUtil.getDrawPageByIndex(impressDocument, index); in createSlide()
/trunk/test/testuno/source/fvt/uno/sw/breaks/
H A DCheckBreaks.java287 int index = content.indexOf("\n"); in getLineCount() local
288 while(index >=0) in getLineCount()
291 content = content.substring(index+1); in getLineCount()
292 index = content.indexOf("\n"); in getLineCount()
/trunk/test/testuno/source/testlib/uno/
H A DSCUtil.java113 …dsheet getSCSheetByIndex(XSpreadsheetDocument xSpreadsheetDocument, short index) throws Exception { in getSCSheetByIndex() argument
118 (XSpreadsheet) UnoRuntime.queryInterface(XSpreadsheet.class, xIndexAccess.getByIndex(index)); in getSCSheetByIndex()
133 XSpreadsheetDocument xSpreadsheetDocument, short index) in getSCSheetNameByIndex() argument
139 XSpreadsheet.class, xIndexAccess.getByIndex(index)); in getSCSheetNameByIndex()
155 XSpreadsheetDocument xSpreadsheetDocument, short index, in setSCSheetNameByIndex() argument
161 XSpreadsheet.class, xIndexAccess.getByIndex(index)); in setSCSheetNameByIndex()
H A DSDUtil.java50 public static Object getPageByIndex(XComponent doc, int index) throws Exception { in getPageByIndex() argument
54 return xIndexedDrawPages.getByIndex(index); in getPageByIndex()
57 public static Object getShapeOfPageByIndex(Object page, int index) throws Exception { in getShapeOfPageByIndex() argument
60 return m_xdrawShapes.getByIndex(index); in getShapeOfPageByIndex()
H A DShapeUtil.java110 …public static XPropertySet getPortion(XShape xShape, int index) throws NoSuchElementException, Wra… in getPortion() argument
117 if(i == index) in getPortion()

Completed in 91 milliseconds

1...<<3132333435363738