/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
TrustedCertificateIndex.java | 47 for (TrustAnchor anchor : anchors) { 48 index(anchor); 53 TrustAnchor anchor = new TrustAnchor(cert, null); local 54 index(anchor); 55 return anchor; 58 public void index(TrustAnchor anchor) { 60 X509Certificate cert = anchor.getTrustedCert(); 64 subject = anchor.getCA(); 73 anchors.add(anchor); 85 for (TrustAnchor anchor : anchors) [all...] |
/external/icu4c/layout/ |
AnchorTables.h | 28 LEPoint &anchor) const; 33 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const; 40 void getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const; 48 void getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const;
|
AnchorTables.cpp | 16 LEPoint &anchor) const 23 f1->getAnchor(fontInstance, anchor); 31 f2->getAnchor(glyphID, fontInstance, anchor); 39 f3->getAnchor(fontInstance, anchor); 47 f1->getAnchor(fontInstance, anchor); 52 void Format1AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const 60 fontInstance->pixelsToUnits(pixels, anchor); 63 void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const 75 fontInstance->pixelsToUnits(point, anchor); 78 void Format3AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) cons [all...] |
MarkArrays.cpp | 17 LEPoint &anchor) const 29 anchorTable->getAnchor(glyphID, fontInstance, anchor);
|
MarkArrays.h | 33 LEPoint &anchor) const;
|
/external/clang/test/CodeGenCXX/ |
vtable-key-function.cpp | 30 virtual void anchor(); 33 void Derived<char>::anchor() { } function in class:Derived
|
rtti-linkage.cpp | 126 virtual void anchor() {} function in class:T 129 template <> class T<2> { virtual void anchor(); };
|
vtable-linkage.cpp | 58 // Anchor is the key function 61 virtual void anchor(); 64 void E<char>::anchor() { } function in class:E
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_selection_model.h | 16 // anchor: the index of the last tab the user clicked on. Extending the 20 // anchor and active index correspond to the same thing. 31 // See class description for details of the anchor. 32 void set_anchor(int anchor) { anchor_ = anchor; } 33 int anchor() const { return anchor_; } function in class:TabStripSelectionModel 47 // updates the anchor and active indices. 57 // Sets the anchor, active and selection to |index|. 63 // Adds |index| to the selection. This does not change the active or anchor 68 // anchor indices [all...] |
/dalvik/tools/ |
deadcode.py | 20 anchor = -1 29 if anchor is not -1: 30 sections[sectionName] = buffer[anchor] 35 if anchor is not -1: 36 sections[sectionName] = buffer[anchor:result.start()] 40 anchor = start
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
extension_popup_gtk.h | 27 GtkWidget* anchor, 33 GtkWidget* anchor,
|
/external/chromium/chrome/browser/ui/gtk/ |
first_run_bubble.h | 30 GtkWidget* anchor, 47 GtkWidget* anchor, 71 // The widget we anchor to, and a descendant of the toplevel window we
|
/external/webkit/Source/WebKit/qt/tests/qwebhistoryinterface/ |
tst_qwebhistoryinterface.cpp | 90 QWebElement anchor = m_view->page()->mainFrame()->findFirstElement("a[id=vlink]"); local 91 QString linkColor = anchor.styleProperty("color", QWebElement::ComputedStyle);
|
/frameworks/base/core/java/android/widget/ |
PopupWindow.java | 133 View anchor = mAnchor != null ? mAnchor.get() : null; 134 if (anchor != null && mPopupView != null) { 138 updateAboveAnchor(findDropDownPosition(anchor, p, mAnchorXoff, mAnchorYoff)); 192 // used when the drop-down is placed above its anchor view, and the one to be 193 // used when the drop-down is placed below its anchor view. We extract 199 // at least one other drawable, intended for the 'below-anchor state'. 203 // Find the above-anchor view - this one's easy, it should be labeled as such. 206 // Now, for the below-anchor view, look for any other drawable specified in the 207 // StateListDrawable which is not for the above-anchor state and use that. 599 * Allow PopupWindow to scroll the anchor's parent to provide more roo [all...] |
PopupMenu.java | 32 * The popup will appear below the anchor view if there is room, or above it if there is not. 60 * @param anchor Anchor view for this popup. The popup will appear below the anchor if there 63 public PopupMenu(Context context, View anchor) { 68 mAnchor = anchor; 69 mPopup = new MenuPopupHelper(context, mMenu, anchor);
|
/external/chromium/chrome/common/extensions/docs/js/ |
sample_search.js | 52 for (var i = 0, anchor; anchor = anchors[i]; i++) { 53 if (anchor.className == "selected") { 54 anchor.className = "";
|
/external/clang/test/SemaTemplate/ |
virtual-member-functions.cpp | 6 virtual void anchor(); 10 template<class T> void A<T>::anchor() { } function in class:PR5557::A 17 x.anchor(); // expected-note{{instantiation}}
|
/external/webkit/Source/WebCore/dom/ |
TreeScope.cpp | 154 HTMLAnchorElement* anchor = static_cast<HTMLAnchorElement*>(node); local 157 if (equalIgnoringCase(anchor->name(), name)) 158 return anchor; 161 if (anchor->name() == name) 162 return anchor;
|
/external/junit/src/junit/awtui/ |
AboutDialog.java | 47 constraintsLabel1.anchor = GridBagConstraints.CENTER; 53 constraintsLabel2.anchor = GridBagConstraints.CENTER; 59 constraintsButton1.anchor = GridBagConstraints.CENTER; 66 constraintsLogo1.anchor = GridBagConstraints.CENTER;
|
/external/junit/src/junit/swingui/ |
AboutDialog.java | 59 constraintsLabel1.anchor = GridBagConstraints.CENTER; 65 constraintsLabel2.anchor = GridBagConstraints.CENTER; 71 constraintsButton1.anchor = GridBagConstraints.CENTER; 78 constraintsLogo1.anchor = GridBagConstraints.CENTER;
|
CounterPanel.java | 76 int anchor, int fill, 86 constraints.anchor= anchor;
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
anchor.js | 1 description("Test URLs that have an anchor.");
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuPopupHelper.java | 91 public void setAnchorView(View anchor) { 92 mAnchorView = anchor; 101 throw new IllegalStateException("MenuPopupHelper cannot be used without an anchor"); 114 View anchor = mAnchorView; local 115 if (anchor != null) { 117 mTreeObserver = anchor.getViewTreeObserver(); // Refresh to latest 119 anchor.addOnAttachStateChangeListener(this); 120 mPopup.setAnchorView(anchor); 196 final View anchor = mAnchorView; local 197 if (anchor == null || !anchor.isShown()) [all...] |
/external/doclava/src/com/google/doclava/ |
AttributeInfo.java | 75 public String anchor() { method in class:AttributeInfo 80 return mClass.htmlPage() + "#" + anchor(); 85 data.setValue(base + ".anchor", anchor());
|
/external/proguard/src/proguard/gui/ |
MemberSpecificationDialog.java | 83 constraints.anchor = GridBagConstraints.WEST; 89 constraintsStretch.anchor = GridBagConstraints.WEST; 94 constraintsLast.anchor = GridBagConstraints.WEST; 101 constraintsLastStretch.anchor = GridBagConstraints.WEST; 109 panelConstraints.anchor = GridBagConstraints.NORTHWEST; 117 stretchPanelConstraints.anchor = GridBagConstraints.NORTHWEST; 121 labelConstraints.anchor = GridBagConstraints.CENTER; 126 lastLabelConstraints.anchor = GridBagConstraints.CENTER; 132 advancedButtonConstraints.anchor = GridBagConstraints.SOUTHWEST; 138 okButtonConstraints.anchor = GridBagConstraints.SOUTHEAST [all...] |