/external/pcre/dist/ |
pcrecpp.cc | 112 pcre* RE::Compile(Anchor anchor) { 132 if (anchor != ANCHOR_BOTH) { 504 Anchor anchor, 508 pcre* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_; 528 if (anchor != UNANCHORED) 561 Anchor anchor, 568 int matches = TryMatch(text, 0, anchor, true, vec, vecsize) [all...] |
/external/regex-re2/util/ |
pcre.cc | 103 pcre* PCRE::Compile(Anchor anchor) { 119 if (anchor != ANCHOR_BOTH) { 459 Anchor anchor, 463 pcre* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_; 490 if (anchor != UNANCHORED) 554 Anchor anchor, 561 int matches = TryMatch(text, 0, anchor, true, vec, vecsize) [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.image.js | 31 anchor: "corner" or "center" 46 Setting "anchor" to "center" causes the pixels in the image to be anchored at 61 anchor: "corner" // or "center" 151 // if the anchor is at the center of the pixel, expand the 153 if (series.images.anchor == "center") {
|
jquery.flot.image.min.js | 7 (function($){var options={series:{images:{show:false,alpha:1,anchor:"corner"}}};$.plot.image={};$.plot.image.loadDataImages=function(series,options,callback){var urls=[],points=[];var defaultShow=options.series.images.show;$.each(series,function(i,s){if(!(defaultShow||s.images.show))return;if(s.data)s=s.data;$.each(s,function(i,p){if(typeof p[0]=="string"){urls.push(p[0]);points.push(p)}})});$.plot.image.load(urls,function(loadedImages){$.each(points,function(i,p){var url=p[0];if(loadedImages[url])p[0]=loadedImages[url]});callback()})};$.plot.image.load=function(urls,callback){var missing=urls.length,loaded={};if(missing==0)callback({});$.each(urls,function(i,url){var handler=function(){--missing;loaded[url]=this;if(missing==0)callback(loaded)};$("<img />").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;i<points.length;i+=ps){var img=points[i],x1=points[i+1],y1=points[i+2],x2=points[i+3],y2=points[i+4],xaxis=series.xaxis,yaxis=series.yaxis,tmp;if(!img||img.width<=0||img.height<=0)continue;if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}if(series.images.anchor=="center"){tmp=.5*(x2-x1)/(img.width-1);x1-=tmp;x2+=tmp;tmp=.5*(y2-y1)/(img.height-1);y1-=tmp;y2+= (…)
|
/external/clang/lib/CodeGen/ |
CodeGenAction.cpp | 45 virtual void anchor(); 274 void BackendConsumer::anchor() {} function in class:clang::BackendConsumer 830 void EmitAssemblyAction::anchor() { } function in class:EmitAssemblyAction 834 void EmitBCAction::anchor() { } function in class:EmitBCAction 838 void EmitLLVMAction::anchor() { } function in class:EmitLLVMAction 842 void EmitLLVMOnlyAction::anchor() { } function in class:EmitLLVMOnlyAction 846 void EmitCodeGenOnlyAction::anchor() { } function in class:EmitCodeGenOnlyAction 850 void EmitObjAction::anchor() { } function in class:EmitObjAction [all...] |
/external/icu/icu4c/source/common/ |
ustring.cpp | 628 UChar *anchor = dst; /* save a pointer to start of dst */ local 636 return anchor; 645 UChar *anchor = dst; /* save a pointer to start of dst */ local 659 return anchor; 967 UChar *anchor = dst; /* save a pointer to start of dst */ local 972 return anchor; 980 UChar *anchor = dst; /* save a pointer to start of dst */ local 987 return anchor; [all...] |
/external/llvm/lib/ExecutionEngine/Orc/ |
IndirectionUtils.cpp | 22 void JITCompileCallbackManager::anchor() {} function in class:llvm::orc::JITCompileCallbackManager 23 void IndirectStubsManager::anchor() {} function in class:llvm::orc::IndirectStubsManager
|
/external/llvm/lib/Target/Mips/ |
MipsTargetMachine.cpp | 105 void MipsebTargetMachine::anchor() { } function in class:MipsebTargetMachine 114 void MipselTargetMachine::anchor() { } function in class:MipselTargetMachine
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXTargetMachine.cpp | 108 void NVPTXTargetMachine32::anchor() {} function in class:NVPTXTargetMachine32 117 void NVPTXTargetMachine64::anchor() {} function in class:NVPTXTargetMachine64
|
/external/proguard/src/proguard/gui/ |
ListPanel.java | 55 listConstraints.anchor = GridBagConstraints.NORTHWEST; 175 buttonConstraints.anchor = GridBagConstraints.NORTHWEST;
|
ProGuardGUI.java | 176 constraints.anchor = GridBagConstraints.WEST; 182 constraintsStretch.anchor = GridBagConstraints.WEST; 187 constraintsLast.anchor = GridBagConstraints.WEST; 194 constraintsLastStretch.anchor = GridBagConstraints.WEST; 202 splashPanelConstraints.anchor = GridBagConstraints.NORTHWEST; 210 welcomePaneConstraints.anchor = GridBagConstraints.CENTER;//NORTHWEST; 217 panelConstraints.anchor = GridBagConstraints.NORTHWEST; 225 stretchPanelConstraints.anchor = GridBagConstraints.NORTHWEST; 232 glueConstraints.anchor = GridBagConstraints.NORTHWEST; 236 bottomButtonConstraints.anchor = GridBagConstraints.SOUTHEAST [all...] |
/external/regex-re2/re2/ |
compile.cc | 135 static Prog* CompileSet(const RE2::Options& options, RE2::Anchor anchor, 211 void Setup(Regexp::ParseFlags, int64, RE2::Anchor); 234 RE2::Anchor anchor_; // anchor mode for RE2::Set 952 RE2::Anchor anchor) { 983 anchor_ = anchor; 1092 Prog* Compiler::CompileSet(const RE2::Options& options, RE2::Anchor anchor, [all...] |
/frameworks/base/core/java/android/security/net/config/ |
NetworkSecurityTrustManager.java | 37 * {@link X509ExtendedTrustManager} that implements the trust anchor and pinning for a 173 for (TrustAnchor anchor : anchors) { 174 issuers[i++] = anchor.certificate;
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuPopupHelper.java | 93 * @param anchor the view to which the popup window should be anchored 95 public void setAnchorView(@NonNull View anchor) { 96 mAnchorView = anchor; 116 * Sets the alignment of the popup window relative to the anchor view. 120 * @param gravity alignment of the popup relative to the anchor 127 * @return alignment of the popup relative to the anchor 135 throw new IllegalStateException("MenuPopupHelper cannot be used without an anchor"); 141 throw new IllegalStateException("MenuPopupHelper cannot be used without an anchor"); 173 * Shows the popup menu and makes a best-effort to anchor it to the 174 * specified (x,y) coordinate relative to the anchor view [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
MenuPopupHelper.java | 96 * @param anchor the view to which the popup window should be anchored 98 public void setAnchorView(@NonNull View anchor) { 99 mAnchorView = anchor; 119 * Sets the alignment of the popup window relative to the anchor view. 123 * @param gravity alignment of the popup relative to the anchor 130 * @return alignment of the popup relative to the anchor 138 throw new IllegalStateException("MenuPopupHelper cannot be used without an anchor"); 144 throw new IllegalStateException("MenuPopupHelper cannot be used without an anchor"); 176 * Shows the popup menu and makes a best-effort to anchor it to the 177 * specified (x,y) coordinate relative to the anchor view [all...] |
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
PKIX.java | 107 for (TrustAnchor anchor : this.anchors) { 108 if (anchor.getNameConstraints() != null) { 110 ("name constraints in trust anchor not supported");
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
DocXMLRPCServer.py | 28 Each context dictionary maps object names to anchor names.""" 71 anchor = (cl and cl.__name__ or '') + '-' + name 75 self.escape(anchor), self.escape(name))
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
DocXMLRPCServer.py | 28 Each context dictionary maps object names to anchor names.""" 71 anchor = (cl and cl.__name__ or '') + '-' + name 75 self.escape(anchor), self.escape(name))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
DocXMLRPCServer.py | 28 Each context dictionary maps object names to anchor names.""" 71 anchor = (cl and cl.__name__ or '') + '-' + name 75 self.escape(anchor), self.escape(name))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
DocXMLRPCServer.py | 28 Each context dictionary maps object names to anchor names.""" 71 anchor = (cl and cl.__name__ or '') + '-' + name 75 self.escape(anchor), self.escape(name))
|
/prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/ |
doxia-sink-api-1.0.jar | |
/external/freetype/src/autofit/ |
aflatin2.c | 1844 AF_Edge anchor = NULL; local [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/ |
aflatin2.c | 1860 AF_Edge anchor = NULL; local [all...] |
/external/llvm/lib/Support/ |
CommandLine.cpp | 68 void GenericOptionValue::anchor() {} function in class:GenericOptionValue 69 void OptionValue<boolOrDefault>::anchor() {} function in class:OptionValue 70 void OptionValue<std::string>::anchor() {} function in class:OptionValue 71 void Option::anchor() {} function in class:Option 72 void basic_parser_impl::anchor() {} function in class:basic_parser_impl 73 void parser<bool>::anchor() {} function in class:parser 74 void parser<boolOrDefault>::anchor() {} function in class:parser 75 void parser<int>::anchor() {} function in class:parser 76 void parser<unsigned>::anchor() {} function in class:parser 77 void parser<unsigned long long>::anchor() {} function in class:parser 78 void parser<double>::anchor() {} function in class:parser 79 void parser<float>::anchor() {} function in class:parser 80 void parser<std::string>::anchor() {} function in class:parser 81 void parser<char>::anchor() {} function in class:parser [all...] |
/external/conscrypt/src/platform/java/org/conscrypt/ |
TrustManagerImpl.java | 96 * trusted and must still form a valid chain to an anchor. 390 // anchor. If the leaf is a trust anchor we still continue with path building to build the 448 // Note that we do not stop at the first trust anchor since it is possible that the trust 449 // anchor is not self-signed and its issuer may be needed for additional validation such as 450 // certificate pinning. In the common case the first trust anchor will be self-signed or 454 for (TrustAnchor anchor : sortPotentialAnchors(anchors)) { 455 X509Certificate anchorCert = anchor.getTrustedCert(); 462 trustAnchorChain.add(anchor); 482 // Otherwise all chains based on the current trust anchor were rejected, fail [all...] |