HomeSort by relevance Sort by last modified time
    Searched refs:anchor (Results 26 - 50 of 701) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/MC/
MCAsmInfoELF.h 17 virtual void anchor();
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.h 23 void anchor() override;
  /external/llvm/lib/Target/Lanai/
LanaiMachineFunctionInfo.cpp 14 void LanaiMachineFunctionInfo::anchor() {} function in class:LanaiMachineFunctionInfo
  /external/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiMCAsmInfo.h 23 void anchor() override;
LanaiMCAsmInfo.cpp 20 void LanaiMCAsmInfo::anchor() {} function in class:LanaiMCAsmInfo
  /external/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430MCAsmInfo.cpp 17 void MSP430MCAsmInfo::anchor() { } function in class:MSP430MCAsmInfo
MSP430MCAsmInfo.h 23 void anchor() override;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCAsmInfo.h 23 void anchor() override;
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCAsmInfo.h 24 virtual void anchor();
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.h 26 virtual void anchor();
40 void anchor() override;
47 void anchor() override;
54 void anchor() override;
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCAsmInfo.h 23 void anchor() override;
  /external/conscrypt/platform/src/main/java/org/conscrypt/
TrustedCertificateIndex.java 49 for (TrustAnchor anchor : anchors) {
50 index(anchor);
55 TrustAnchor anchor = new TrustAnchor(cert, null); local
56 index(anchor);
57 return anchor;
60 public void index(TrustAnchor anchor) {
62 X509Certificate cert = anchor.getTrustedCert();
66 subject = anchor.getCA();
84 anchors.add(anchor);
109 for (TrustAnchor anchor : anchors)
    [all...]
  /external/slf4j/slf4j-site/src/site/pages/js/
decorator.js 4 // class="anchor"/></a>Logger context</h3>
7 var anchor = findAnchorInURL(document.URL);
8 decoratePropertiesInTables(anchor);
9 decorateDoAnchor(anchor);
10 decorateConversionWordInTables(anchor);
25 function decoratePropertiesInTables(anchor) {
48 "'><span class='anchor'/></a><b>" +tmpHTML +"</b>";
49 scrollIfMatch(p, nameAttr, anchor);
53 function decorateConversionWordInTables(anchor) {
62 "'><span class='anchor'/></a>" +tmpHTML
    [all...]
  /external/bison/lib/
fd-hook.c 31 static struct fd_hook anchor = { &anchor, &anchor, NULL, NULL }; variable in typeref:struct:fd_hook
37 if (remaining_list == &anchor)
48 return execute_close_hooks (anchor.private_next, primary, fd);
55 if (remaining_list == &anchor)
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg);
81 link->private_next = anchor.private_next;
82 link->private_prev = &anchor;
85 anchor.private_next->private_prev = link
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-key-function.cpp 30 virtual void anchor();
33 void Derived<char>::anchor() { } function in class:Derived
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
AliasEvent.java 24 public AliasEvent(String anchor, Mark startMark, Mark endMark) {
25 super(anchor, startMark, endMark);
MappingStartEvent.java 35 public MappingStartEvent(String anchor, String tag, boolean implicit, Mark startMark,
37 super(anchor, tag, implicit, startMark, endMark, flowStyle);
SequenceStartEvent.java 30 public SequenceStartEvent(String anchor, String tag, boolean implicit, Mark startMark,
32 super(anchor, tag, implicit, startMark, endMark, flowStyle);
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
TestCertificateSource.java 44 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); local
45 if (anchor == null) {
48 return anchor.getTrustedCert();
53 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); local
54 if (anchor == null) {
57 return anchor.getTrustedCert();
63 for (java.security.cert.TrustAnchor anchor : mIndex.findAllByIssuerAndSignature(cert)) {
64 certs.add(anchor.getTrustedCert());
  /external/clang/lib/Driver/
Action.cpp 43 void InputAction::anchor() {} function in class:InputAction
49 void BindArchAction::anchor() {} function in class:BindArchAction
54 void CudaDeviceAction::anchor() {} function in class:CudaDeviceAction
60 void CudaHostAction::anchor() {} function in class:CudaHostAction
65 void JobAction::anchor() {} function in class:JobAction
74 void PreprocessJobAction::anchor() {} function in class:PreprocessJobAction
79 void PrecompileJobAction::anchor() {} function in class:PrecompileJobAction
84 void AnalyzeJobAction::anchor() {} function in class:AnalyzeJobAction
89 void MigrateJobAction::anchor() {} function in class:MigrateJobAction
94 void CompileJobAction::anchor() {} function in class:CompileJobAction
99 void BackendJobAction::anchor() {} function in class:BackendJobAction
104 void AssembleJobAction::anchor() {} function in class:AssembleJobAction
109 void LinkJobAction::anchor() {} function in class:LinkJobAction
115 void LipoJobAction::anchor() {} function in class:LipoJobAction
121 void DsymutilJobAction::anchor() {} function in class:DsymutilJobAction
127 void VerifyJobAction::anchor() {} function in class:VerifyJobAction
136 void VerifyDebugInfoJobAction::anchor() {} function in class:VerifyDebugInfoJobAction
142 void VerifyPCHJobAction::anchor() {} function in class:VerifyPCHJobAction
    [all...]
  /frameworks/base/core/java/android/security/net/config/
TrustedCertificateStoreAdapter.java 37 TrustAnchor anchor = mConfig.findTrustAnchorByIssuerAndSignature(cert); local
38 if (anchor == null) {
41 return anchor.certificate;
51 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); local
52 if (anchor == null) {
55 return anchor.certificate;
61 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); local
62 if (anchor == null) {
65 return anchor.overridesPins;
  /frameworks/base/core/java/android/view/autofill/
AutofillPopupWindow.java 54 * the anchor view.
90 public void update(View anchor, int offsetX, int offsetY, int width, int height,
93 // delegates to the anchor but present itself with the same bounds as the
95 // symmetrically when the dropdown is below and above the anchor.
98 actualAnchor = new View(anchor.getContext()) {
107 return anchor.getAccessibilityViewId();
112 return anchor.getViewTreeObserver();
117 return anchor.getApplicationWindowToken();
122 return anchor.getRootView();
127 return anchor.getLayoutDirection()
    [all...]
  /external/clang/include/clang/Sema/
SemaConsumer.h 27 virtual void anchor();
  /external/llvm/include/llvm/ExecutionEngine/
ObjectCache.h 23 virtual void anchor();
  /external/llvm/lib/Target/AMDGPU/
R600MachineFunctionInfo.h 23 void anchor() override;

Completed in 1162 milliseconds

12 3 4 5 6 7 8 91011>>