HomeSort by relevance Sort by last modified time
    Searched refs:Anchor (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/autotest/frontend/client/src/autotest/common/ui/
TableSelectionPanel.java 5 import com.google.gwt.user.client.ui.Anchor;
18 private Anchor selectAll = new Anchor("all");
19 private Anchor selectVisible;
20 private Anchor selectNone = new Anchor("none");
31 selectVisible = new Anchor("visible");
ToggleLink.java 8 import com.google.gwt.user.client.ui.Anchor;
14 private Anchor link;
20 link = new Anchor(activateText);
TableActionsPanel.java 10 import com.google.gwt.user.client.ui.Anchor;
30 private Anchor exportCsvLink = new Anchor("Export to CSV");
Paginator.java 7 import com.google.gwt.user.client.ui.Anchor;
25 protected Anchor link;
29 link = new Anchor(text);
  /external/regex-re2/re2/
set.h 20 Set(const RE2::Options& options, RE2::Anchor anchor);
44 RE2::Anchor anchor_;
prog.h 173 // Whether to anchor the search.
174 enum Anchor {
179 // Kind of match to look for (for anchor != kFullMatch)
194 kFullMatch, // match only entire text; implies anchor==kAnchored
249 // Anchor and kind control the kind of search.
263 Anchor anchor, MatchKind kind,
273 Anchor anchor, MatchKind kind,
294 Anchor anchor, MatchKind kind
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
WidgetList.java 5 import com.google.gwt.user.client.ui.Anchor;
33 Anchor addLink = new Anchor(type);
55 assert (event.getSource() instanceof Anchor);
57 Anchor addLink = (Anchor) event.getSource();
MetricsPlot.java 13 import com.google.gwt.user.client.ui.Anchor;
50 Anchor link = new Anchor(yValue);
ParameterizedFieldListDisplay.java 8 import com.google.gwt.user.client.ui.Anchor;
21 private Anchor deleteLink = new Anchor("[X]");
39 private Anchor addLink = new Anchor("Add");
FilterSelector.java 11 import com.google.gwt.user.client.ui.Anchor;
32 private Anchor deleteLink = new Anchor("[X]");
78 private Anchor addLink = new Anchor("[Add Filter]");
TestLabelManager.java 15 import com.google.gwt.user.client.ui.Anchor;
41 private Anchor createLabelLink, cancelCreateLink;
49 createLabelLink = new Anchor("Create new label");
50 cancelCreateLink = new Anchor("Cancel create label");
CommonPanel.java 12 import com.google.gwt.user.client.ui.Anchor;
51 private Anchor quickReferenceLink = new Anchor(SHOW_QUICK_REFERENCE);
53 private Anchor showHideControlsLink = new Anchor(HIDE_CONTROLS);
SeriesSelector.java 10 import com.google.gwt.user.client.ui.Anchor;
32 private Anchor addLink = new Anchor("[Add Series]");
46 private Anchor deleteLink = new Anchor("Delete Series");
ContentSelect.java 17 import com.google.gwt.user.client.ui.Anchor;
38 private Anchor addLink = new Anchor(ADD_ADDITIONAL_CONTENT);
FilterStringViewer.java 13 import com.google.gwt.user.client.ui.Anchor;
37 private Anchor view = new Anchor(VIEW_FILTER_STRING);
  /external/regex-re2/re2/testing/
tester.h 63 Prog::Anchor anchor);
69 Prog::Anchor anchor,
73 const StringPiece& context, Prog::Anchor anchor);
101 Prog::Anchor anchor);
103 // Run TestCase(text, text, anchor) for all anchoring modes.
106 // Run TestCase(text, context, anchor) for all anchoring modes
    [all...]
tester.cc 123 // Returns string representation of anchor kind.
124 static string FormatAnchor(Prog::Anchor anchor) {
125 switch (anchor) {
282 Prog::Anchor anchor,
306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_,
317 prog_->SearchNFA(text, context, anchor, kind_,
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL,
337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
AnchorToken.java 39 return ID.Anchor;
Token.java 23 Alias, Anchor, BlockEnd, BlockEntry, BlockMappingStart, BlockSequenceStart, Directive, DocumentEnd, DocumentStart, FlowEntry, FlowMappingEnd, FlowMappingStart, FlowSequenceEnd, FlowSequenceStart, Key, Scalar, StreamEnd, StreamStart, Tag, Value, Whitespace, Comment, Error
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
AnchorTokenTest.java 34 assertEquals(ID.Anchor, token.getTokenId());
  /prebuilts/tools/linux-x86_64/kythe/proto/
xref.proto 70 // {(bar, {first-call-anchor, second-call-anchor}),
71 // (baz, {first-call-anchor})}
103 // If known and unambiguous, an anchor ticket for this node's definition
341 // anchor within the requested source location.
347 // Starting byte offset of this references's anchor (source_ticket) span.
349 // Ending byte offset of this references's anchor (source_ticket) span.
352 // Anchor ticket of the target's definition. Populated only if
354 // a single unambiguous definition. For each ticket, an Anchor will be
366 // Each anchor cited as a target definition in the references. The map i
    [all...]
  /external/opencv3/modules/cudafilters/test/
test_filters.cpp 52 IMPLEMENT_PARAM_CLASS(Anchor, cv::Point)
73 PARAM_TEST_CASE(Blur, cv::cuda::DeviceInfo, cv::Size, MatType, KSize, Anchor, BorderType, UseRoi)
79 cv::Point anchor; local
89 anchor = GET_PARAM(4);
101 cv::Ptr<cv::cuda::Filter> blurFilter = cv::cuda::createBoxFilter(src.type(), -1, ksize, anchor, borderType);
107 cv::blur(src, dst_gold, ksize, anchor, borderType);
117 testing::Values(Anchor(cv::Point(-1, -1)), Anchor(cv::Point(0, 0)), Anchor(cv::Point(2, 2))),
124 PARAM_TEST_CASE(Filter2D, cv::cuda::DeviceInfo, cv::Size, MatType, KSize, Anchor, BorderType, UseRoi
130 cv::Point anchor; local
228 cv::Point anchor; local
500 cv::Point anchor; local
551 cv::Point anchor; local
605 cv::Point anchor; local
    [all...]
  /external/llvm/include/llvm/Support/
YAMLParser.h 104 virtual void anchor();
117 Node(unsigned int Type, std::unique_ptr<Document> &, StringRef Anchor,
120 /// \brief Get the value of the anchor attached to this node. If it does not
122 StringRef getAnchor() const { return Anchor; }
167 StringRef Anchor;
177 void anchor() override;
192 void anchor() override;
195 ScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag,
197 : Node(NK_Scalar, D, Anchor, Tag), Value(Val) {
235 void anchor() override
    [all...]
  /external/llvm/include/llvm/IR/
SymbolTableListTraits.h 86 ListTy *Anchor(static_cast<ListTy *>(this));
87 return reinterpret_cast<ItemParentClass*>(reinterpret_cast<char*>(Anchor)-
  /external/pcre/dist/
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,
676 Anchor anchor,
691 Anchor anchor,
    [all...]

Completed in 952 milliseconds

1 2 3