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

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/Target/SystemZ/
SystemZSubtarget.h 35 virtual void anchor();
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.h 27 virtual void anchor();
XCoreMachineFunctionInfo.cpp 16 void XCoreFunctionInfo::anchor() { } function in class:XCoreFunctionInfo
XCoreMachineFunctionInfo.h 29 virtual void anchor();
  /external/llvm/tools/llvm-diff/
DiffConsumer.h 32 virtual void anchor();
DifferenceEngine.h 52 virtual void anchor();
  /external/pcre/pcrecpp/include/
pcrecpp.h 279 // anchor your match at the beginning of the string. For example, you
632 enum Anchor {
634 ANCHOR_START, // Anchor at start only
635 ANCHOR_BOTH // Anchor at start and end
641 Anchor anchor,
667 Anchor anchor,
680 Anchor anchor,
    [all...]
  /external/v8/src/
v8threads.h 97 void DeleteThreadStateList(ThreadState* anchor);
107 // The first object is a flying anchor that is only there to simplify linking
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarLayoutManager.java 144 * on screen. The anchor page break is the page break that is currently within or at the
163 * Set the anchor to the following position on the next layout pass.
197 * The anchor view is the first fully visible view on screen at the beginning
206 View anchor = getFirstFullyVisibleChild(); local
207 if (anchor != null) {
208 anchorPosition = getPosition(anchor);
209 anchorTop = getDecoratedTop(anchor);
242 View anchor = layoutAnchor(recycler, anchorPosition, anchorTop); local
243 if (anchor != null) {
244 View adjacentRow = anchor;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
MultiStatusBar.py 13 label = Label(self, bd=1, relief=SUNKEN, anchor=W)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
MultiStatusBar.py 13 label = Label(self, bd=1, relief=SUNKEN, anchor=W)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
MultiStatusBar.py 13 label = Label(self, bd=1, relief=SUNKEN, anchor=W)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
MultiStatusBar.py 13 label = Label(self, bd=1, relief=SUNKEN, anchor=W)
  /external/lz4/lib/
lz4opt.h 223 const BYTE* anchor = ip; local
238 llen = ip - anchor;
347 res = LZ4HC_encodeSequence(&ip, &op, &anchor, (int)mlen, ip - offset, limit, oend);
353 { int lastRun = (int)(iend - anchor);
357 memcpy(op, anchor, iend - anchor);
358 op += iend-anchor;
lz4hc.c 261 const BYTE** anchor,
271 if (debug) printf("literal : %u -- match : %u -- offset : %u\n", (U32)(*ip - *anchor), (U32)matchLength, (U32)(*ip-match));
275 length = (int)(*ip - *anchor);
282 LZ4_wildCopy(*op, *anchor, (*op) + length);
303 *anchor = *ip;
321 const BYTE* anchor = ip; local
359 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
407 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0;
409 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) return 0;
427 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 34 void anchor() override;
51 void anchor() override;
72 void anchor() override;
93 void anchor() override;
114 void anchor() override;
136 void anchor() override;
161 void anchor() override;
193 void anchor() override;
227 void anchor() override;
257 void anchor() override
    [all...]
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
XmlConfigTests.java 313 for (TrustAnchor anchor : anchors) {
314 assertTrue(anchor.overridesPins);
327 for (TrustAnchor anchor : anchors) {
328 if (anchor.certificate.getSubjectDN().toString().equals(DEBUG_CA_SUBJ)) {
330 assertTrue(anchor.overridesPins);
345 for (TrustAnchor anchor : anchors) {
346 if (anchor.certificate.getSubjectDN().toString().equals(DEBUG_CA_SUBJ)) {
348 assertTrue(anchor.overridesPins);
426 for (TrustAnchor anchor : config.getTrustAnchors()) {
427 assertTrue(anchor.overridesPins)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ListPopupWindowTest.java 652 final MockViewForListPopupWindow anchor = local
654 anchor.wireTo(mPopupWindow);
656 mActivityRule.runOnUiThread(anchor::requestFocus);
658 assertTrue(anchor.isFocused());
678 final MockViewForListPopupWindow anchor = local
680 anchor.wireTo(mPopupWindow);
682 mActivityRule.runOnUiThread(anchor::requestFocus);
684 assertTrue(anchor.isFocused());
759 final View anchor = mActivity.findViewById(mPopupWindowBuilder.mAnchorId); local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
RevocationChecker.java 55 private TrustAnchor anchor; field in class:RevocationChecker
92 RevocationChecker(TrustAnchor anchor, ValidatorParams params)
96 init(anchor, params);
99 void init(TrustAnchor anchor, ValidatorParams params)
149 this.anchor = anchor;
268 for (TrustAnchor anchor : anchors) {
269 X509Certificate cert = anchor.getTrustedCert();
304 if (anchor != null) {
305 issuerCert = anchor.getTrustedCert()
    [all...]
  /external/regex-re2/re2/testing/
regexp_benchmark.cc 106 Prog::Anchor anchor, bool expect_match);
802 Prog::Anchor anchor, bool expect_match) {
809 CHECK_EQ(prog->SearchDFA(text, NULL, anchor, Prog::kFirstMatch,
819 Prog::Anchor anchor, bool expect_match) {
825 CHECK_EQ(prog->SearchNFA(text, NULL, anchor, Prog::kFirstMatch, NULL, 0),
    [all...]
  /external/pcre/pcrecpp/
pcrecpp.cc 90 pcre2_code* RE::Compile(Anchor anchor) {
129 if (anchor != ANCHOR_BOTH) {
305 Anchor anchor,
311 pcre2_code* re = (anchor == ANCHOR_BOTH) ? re_full_ : re_partial_;
341 if (anchor != UNANCHORED)
366 Anchor anchor,
371 int matches = TryMatch(text, 0, anchor, true, match_data)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 110 define_tokens( <tokens:{it | :<it.name> => <it.type>}; anchor, wrap="\n", separator=", "> )
121 register_names( <tokenNames:{it | <it>}; separator=", ", anchor, wrap="\n"> )
202 RULE_METHODS = [ <rules:{r|:<r.ruleName>}; separator=", ", wrap="\n", anchor> ].freeze
889 EOT = unpack( <dfa.javaCompressedEOT; anchor, separator=", ", wrap="\n"> )
890 EOF = unpack( <dfa.javaCompressedEOF; anchor, separator=", ", wrap="\n"> )
891 MIN = unpack( <dfa.javaCompressedMin; anchor, separator=", ", wrap="\n"> )
892 MAX = unpack( <dfa.javaCompressedMax; anchor, separator=", ", wrap="\n"> )
893 ACCEPT = unpack( <dfa.javaCompressedAccept; anchor, separator=", ", wrap="\n"> )
894 SPECIAL = unpack( <dfa.javaCompressedSpecial; anchor, separator=", ", wrap="\n"> )
896 <dfa.javaCompressedTransition:{s|unpack( <s; wrap="\n", anchor, separator=", "> )}; separator=",\n"
    [all...]
  /external/opencv/cv/src/
cvfilter.cpp 138 _anchor.x == anchor.x && _anchor.y == anchor.y) )
146 anchor = _anchor;
148 if( anchor.x == -1 )
149 anchor.x = ksize.width / 2;
150 if( anchor.y == -1 )
151 anchor.y = ksize.height / 2;
153 max_ky = MAX( anchor.y, ksize.height - anchor.y - 1 );
158 (unsigned)anchor.x >= (unsigned)ksize.width |
    [all...]
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.cpp 264 void ARMTargetMachine::anchor() {}
279 void ARMLETargetMachine::anchor() {}
289 void ARMBETargetMachine::anchor() {}
299 void ThumbTargetMachine::anchor() {}
311 void ThumbLETargetMachine::anchor() {}
321 void ThumbBETargetMachine::anchor() {}
  /external/boringssl/src/util/
doc.go 53 // Anchor, if non-empty, is the URL fragment to use in anchor tags.
54 Anchor string
69 // Anchor, if non-empty, is the URL fragment to use in anchor tags.
70 Anchor string
354 anchor := sanitizeAnchor(firstSentence(comment))
355 if len(anchor) > 0 {
356 if _, ok := allAnchors[anchor]; ok {
357 return nil, fmt.Errorf("duplicate anchor: %s", anchor
    [all...]

Completed in 749 milliseconds

1 2 3 4 5 6 7 891011>>