/external/autotest/frontend/client/src/autotest/tko/ |
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);
|
SpreadsheetView.java | 35 import com.google.gwt.user.client.ui.Anchor; 133 Anchor swapLink = new Anchor("swap");
|
/external/llvm/utils/yaml-bench/ |
YAMLBench.cpp | 92 StringRef Anchor = n->getAnchor(); 93 if (!Anchor.empty()) 94 outs() << "&" << Anchor << " ";
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/yaml-bench/ |
YAMLBench.cpp | 92 StringRef Anchor = n->getAnchor(); 93 if (!Anchor.empty()) 94 outs() << "&" << Anchor << " ";
|
/device/linaro/bootloader/edk2/OvmfPkg/PlatformDxe/ |
Platform.c | 566 EFI_IFR_GUID_LABEL *Anchor;
581 // The label's number must match the "anchor" label in the form.
584 NULL /* optional copy origin */, sizeof *Anchor);
589 Anchor = OpCode;
590 Anchor->ExtendOpCode = EFI_IFR_EXTEND_OP_LABEL;
591 Anchor->Number = LABEL_RES_NEXT;
634 OpCodeBuffer, // buffer with head anchor, and new contents to be
636 NULL // buffer with tail anchor, for deleting old
|
/external/boringssl/src/util/ |
doc.go | 54 // Anchor, if non-empty, is the URL fragment to use in anchor tags. 55 Anchor string 70 // Anchor, if non-empty, is the URL fragment to use in anchor tags. 71 Anchor string 389 anchor := sanitizeAnchor(firstSentence(comment)) 390 if len(anchor) > 0 { 391 if _, ok := allAnchors[anchor]; ok { 392 return nil, fmt.Errorf("duplicate anchor: %s", anchor [all...] |
/external/autotest/frontend/client/src/autotest/common/ |
Utils.java | 13 import com.google.gwt.user.client.ui.Anchor; 333 public static Anchor createGoogleStorageHttpUrlLink(String label, String bucketPath) { 337 Anchor a = new Anchor(label, url);
|
/external/autotest/frontend/client/src/autotest/moblab/ |
ConfigSettingsView.java | 16 import com.google.gwt.user.client.ui.Anchor; 161 Anchor a = Utils.createGoogleStorageHttpUrlLink("link", configValue);
|
/external/autotest/frontend/client/src/autotest/afe/ |
HostSelector.java | 21 import com.google.gwt.user.client.ui.Anchor; 85 Anchor clearSelection = new Anchor("Clear selection");
|
/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/harfbuzz_ng/src/ |
hb-ot-layout-gpos-table.hh | 52 /* Shared Tables: ValueRecord, Anchor Table, and MarkArray */ 324 * Anchor table (may be NULL) */ 328 * Anchor table (may be NULL) */ 333 struct Anchor 373 const Anchor& get_anchor (unsigned int row, unsigned int col, 377 if (unlikely (row >= rows || col >= cols)) return Null(Anchor); 396 UnsizedArrayOf<OffsetTo<Anchor> > 397 matrixZ; /* Matrix of offsets to Anchor tables-- 416 OffsetTo<Anchor> 417 markAnchor; /* Offset to Anchor table--fro [all...] |
hb-aat-layout-kerx-table.hh | 542 case 1: /* Anchor Point Actions. */ 550 const Anchor markAnchor = c->ankr_table->get_anchor (c->buffer->info[mark].codepoint, 554 const Anchor currAnchor = c->ankr_table->get_anchor (c->buffer->cur ().codepoint,
|
/external/skia/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/app/ |
HelloCanvasAR.java | 43 import com.google.ar.core.Anchor; 114 private final ArrayList<Anchor> anchors = new ArrayList<>(); 406 * successful, construct an Anchor at the hit position and add it to the set of anchors. 416 // Creates an anchor if a plane or an oriented point was hit. 437 * successful, construct an Anchor at the hit position and add it to the set of anchors. 448 // Creates an anchor if a plane or an oriented point was hit. 488 for (Anchor anchor : anchors) { 489 if (anchor.getTrackingState() != TrackingState.TRACKING) { 492 // Get the current pose of an Anchor in world spac [all...] |
/external/skqp/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/app/ |
HelloCanvasAR.java | 43 import com.google.ar.core.Anchor; 114 private final ArrayList<Anchor> anchors = new ArrayList<>(); 406 * successful, construct an Anchor at the hit position and add it to the set of anchors. 416 // Creates an anchor if a plane or an oriented point was hit. 437 * successful, construct an Anchor at the hit position and add it to the set of anchors. 448 // Creates an anchor if a plane or an oriented point was hit. 488 for (Anchor anchor : anchors) { 489 if (anchor.getTrackingState() != TrackingState.TRACKING) { 492 // Get the current pose of an Anchor in world spac [all...] |
/external/snakeyaml/src/test/java/org/pyyaml/ |
CanonicalParser.java | 77 // node: ALIAS | ANCHOR? TAG? (SCALAR|sequence|mapping) 83 String anchor = null; local 84 if (scanner.checkToken(Token.ID.Anchor)) { 86 anchor = token.getValue(); 95 events.add(new ScalarEvent(anchor, tag, new ImplicitTuple(false, false), token 98 events.add(new SequenceStartEvent(anchor, tag, false, null, null, null)); 101 events.add(new MappingStartEvent(anchor, tag, false, null, null, null));
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
ValueMapper.cpp | 24 void ValueMapTypeRemapper::Anchor() {}
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
MCExpr.h | 422 virtual void Anchor();
|
/external/fonttools/Lib/fontTools/varLib/ |
merger.py | 580 anchor = None 582 anchor = ot.Anchor() 583 anchor.Format = 1 584 merger.mergeThings(anchor, allAnchors) 585 rec.MarkAnchor = anchor 600 setattr(rec, Base+'Anchor', anchors) 601 glyphAnchors = [[] if r is None else getattr(r, Base+'Anchor') 607 anchor = None 609 anchor = ot.Anchor( [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/ |
PrintInfo.c | 142 UINT8 Anchor[5];
156 MemToString (Anchor, SmbiosTable->AnchorString, 4);
157 ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_ANCHOR_STR), gShellDebug1HiiHandle, Anchor);
215 UINT8 Anchor[5];
229 MemToString (Anchor, SmbiosTable->AnchorString, 5);
230 ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_ANCHOR_STR), gShellDebug1HiiHandle, Anchor);
[all...] |
/external/fonttools/Lib/fontTools/otlLib/ |
builder.py | 112 self = ot.Anchor() 139 """[otTables.Anchor, otTables.Anchor, ...] --> otTables.BaseRecord""" 146 """[otTables.Anchor, otTables.Anchor, ...] --> otTables.ComponentRecord""" 209 """[[Anchor, Anchor], [Anchor, Anchor, Anchor]] --> LigatureAttach"" [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/ |
ParserImpl.java | 71 * properties ::= TAG ANCHOR? | ANCHOR TAG? 96 * block_node: { ALIAS TAG ANCHOR SCALAR BLOCK-SEQUENCE-START BLOCK-MAPPING-START FLOW-SEQUENCE-START FLOW-MAPPING-START } 97 * flow_node: { ALIAS ANCHOR TAG SCALAR FLOW-SEQUENCE-START FLOW-MAPPING-START } 104 * block_node_or_indentless_sequence: { ALIAS ANCHOR TAG SCALAR BLOCK-SEQUENCE-START BLOCK-MAPPING-START FLOW-SEQUENCE-START FLOW-MAPPING-START BLOCK-ENTRY } 109 * flow_sequence_entry: { ALIAS ANCHOR TAG SCALAR FLOW-SEQUENCE-START FLOW-MAPPING-START KEY } 110 * flow_mapping_entry: { ALIAS ANCHOR TAG SCALAR FLOW-SEQUENCE-START FLOW-MAPPING-START KEY } 348 * properties ::= TAG ANCHOR? | ANCHOR TAG? 380 String anchor = null local [all...] |
/external/autotest/frontend/client/src/autotest/afe/create/ |
CreateJobViewDisplay.java | 28 import com.google.gwt.user.client.ui.Anchor;
|