Home
last modified time | relevance | path

Searched refs:Marker (Results 1 – 25 of 41) sorted by relevance

12

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
DViewableTaggedData.java29 private List<Marker> markers = new ArrayList<Marker>();
33 ViewableTaggedData(List<Marker> markers) { in ViewableTaggedData()
37 private ViewableTaggedData(List<Marker> markers, Style style, Metrics metrics) { in ViewableTaggedData()
117 for (Marker m : markers) { in draw()
137 for (Marker m : markers) { in measure()
144 private final List<Marker> markers = new ArrayList<Marker>();
178 List<Marker> getMarkers() { in getMarkers()
716 private static abstract class Marker implements Comparable<Marker> { class in ViewableTaggedData
719 private Marker(int position) { in Marker() method in ViewableTaggedData.Marker
723 abstract int order(Marker rhs); in order()
[all …]
/third_party/rust/crates/proc-macro2/src/
Dlib.rs163 use crate::marker::Marker;
187 _marker: Marker,
193 _marker: Marker,
200 _marker: Marker, in _new()
207 _marker: Marker, in _new_fallback()
244 _marker: Marker, in from_str()
342 _marker: Marker,
350 _marker: Marker, in _new()
389 _marker: Marker,
396 _marker: Marker, in _new()
[all …]
Dextra.rs6 use crate::marker::Marker;
17 _marker: Marker,
48 _marker: Marker, in new()
Dmarker.rs7 pub(crate) type Marker = PhantomData<ProcMacroAutoTraits>; typedef
12 pub(crate) use core::marker::PhantomData as Marker;
/third_party/ffmpeg/tests/ref/fate/
Dimf4 Marker resource count: 2
5 Marker resource 0
6 Marker 0
9 Marker resource 1
10 Marker 0
13 Marker 1
/third_party/typescript/tests/cases/fourslash/
Dfourslash.ts139 interface Marker {
205 marker?: Marker;
212 markers(): Marker[];
214 markerName(m: Marker): string;
215 marker(name?: string): Marker;
220 markerByName(s: string): Marker;
229 marker(name?: string | Marker): void;
230 … eachMarker(markers: ReadonlyArray<string>, action: (marker: Marker, index: number) => void): void;
231 eachMarker(action: (marker: Marker, index: number) => void): void;
345 noSignatureHelp(...markers: (string | Marker)[]): void;
[all …]
/third_party/parse5/packages/parse5/lib/parser/
Dformatting-element-list.ts8 Marker, enumerator
13 type: EntryType.Marker;
24 const MARKER: MarkerEntry = { type: EntryType.Marker };
49 if (entry.type === EntryType.Marker) {
148 …(entry) => entry.type === EntryType.Marker || this.treeAdapter.getTagName(entry.element) === tagNa…
Dformatting-element-list.test.ts25 assert.strictEqual(list.entries[0].type, EntryType.Marker);
29 assert.strictEqual(list.entries[0].type, EntryType.Marker);
117 expect(list.entries[1]).toHaveProperty('type', EntryType.Marker);
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
Drequirements.py9 from .markers import Marker, _normalize_extra_values
43 self.marker: Optional[Marker] = None
45 self.marker = Marker.__new__(Marker)
Dmarkers.py193 class Marker: class
229 if not isinstance(other, Marker):
/third_party/node/deps/v8/src/heap/cppgc/
Dgarbage-collector.h20 using CollectionType = Marker::MarkingConfig::CollectionType;
22 using MarkingType = Marker::MarkingConfig::MarkingType;
25 using IsForcedGC = Marker::MarkingConfig::IsForcedGC;
Dmarker.cc35 bool EnterIncrementalMarkingIfNeeded(Marker::MarkingConfig config, in EnterIncrementalMarkingIfNeeded()
37 if (config.marking_type == Marker::MarkingConfig::MarkingType::kIncremental || in EnterIncrementalMarkingIfNeeded()
39 Marker::MarkingConfig::MarkingType::kIncrementalAndConcurrent) { in EnterIncrementalMarkingIfNeeded()
49 bool ExitIncrementalMarkingIfNeeded(Marker::MarkingConfig config, in ExitIncrementalMarkingIfNeeded()
51 if (config.marking_type == Marker::MarkingConfig::MarkingType::kIncremental || in ExitIncrementalMarkingIfNeeded()
53 Marker::MarkingConfig::MarkingType::kIncrementalAndConcurrent) { in ExitIncrementalMarkingIfNeeded()
653 Marker::Marker(HeapBase& heap, cppgc::Platform* platform, MarkingConfig config) in Marker() function in cppgc::internal::Marker
Dmarker.h188 class V8_EXPORT_PRIVATE Marker final : public MarkerBase {
190 Marker(HeapBase&, cppgc::Platform*, MarkingConfig = MarkingConfig::Default());
Dheap.cc159 const Marker::MarkingConfig marking_config{ in StartGarbageCollection()
162 marker_ = std::make_unique<Marker>(AsBase(), platform_.get(), marking_config); in StartGarbageCollection()
Dmarking-visitor.h18 class Marker; variable
/third_party/typescript/src/harness/
DfourslashInterfaceImpl.ts6 public markers(): FourSlash.Marker[] {
14 public marker(name: string): FourSlash.Marker {
18 public markerName(m: FourSlash.Marker) {
38 public markerByName(s: string): FourSlash.Marker {
70 public marker(name?: string | FourSlash.Marker) {
74 …public eachMarker(markers: readonly string[], action: (marker: FourSlash.Marker, index: number) =>…
75 public eachMarker(action: (marker: FourSlash.Marker, index: number) => void): void;
76 …r(a: readonly string[] | ((marker: FourSlash.Marker, index: number) => void), b?: (marker: FourSla…
142 public noSignatureHelp(...markers: (string | FourSlash.Marker)[]): void {
146 …gerReason(reason: ts.SignatureHelpTriggerReason, ...markers: (string | FourSlash.Marker)[]): void {
[all …]
DfourslashImpl.ts33 markerPositions: ts.ESMap<string, Marker>;
35 markers: Marker[];
49 export interface Marker { interface
57 marker?: Marker;
68 marker?: Marker;
437 public goToMarker(name: string | Marker = "") {
452 …public goToEachMarker(markers: readonly Marker[], action: (marker: Marker, index: number) => void)…
469 public markerName(m: Marker): string {
583 const marker: Marker = this.getMarkerByName(markerName);
604 …: number, endPos: number | undefined) => boolean, startMarker: Marker, endMarker?: Marker): boolea…
[all …]
/third_party/json/tests/thirdparty/Fuzzer/
DFuzzerMerge.cpp78 std::string Marker; in Parse() local
80 ISS1 >> Marker; in Parse()
82 if (Marker == "STARTED") { in Parse()
90 } else if (Marker == "DONE") { in Parse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSafeStackColoring.h100 struct Marker { struct
106 DenseMap<BasicBlock *, SmallVector<std::pair<unsigned, Marker>, 4>> BBMarkers; argument
DSafeStackColoring.cpp68 DenseMap<BasicBlock *, SmallDenseMap<Instruction *, Marker>> BBMarkerSet; in collectMarkers()
122 auto ProcessMarker = [&](Instruction *I, const Marker &M) { in collectMarkers()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DDataMov.cpp25 static constexpr uint32_t Marker = 0xBEEFFEEB; \ in TEST_F()
26 __ mov(IceType_i32, Encoded_GPR_##Reg##q(), Immediate(Marker)); \ in TEST_F()
33 ASSERT_EQ((Marker & ~Mask##Size) | Value, test.Reg##d()) << TestString; \ in TEST_F()
103 static constexpr uint64_t Marker = 0xD0DA33EEBEEFFEEB; \ in TEST_F()
110 test.setQwordTo(T0, Marker); \ in TEST_F()
113 ASSERT_EQ((Marker & ~Mask##Size) | Value, test.contentsOfQword(T0)) \ in TEST_F()
163 static constexpr uint64_t Marker = 0xC0FFEEA0BEEFFEEFull; \ in TEST_F()
171 test.setQwordTo(T1, Marker); \ in TEST_F()
174 ASSERT_EQ((Marker & ~MaskResult##Size) | Value, test.Dst()) << TestString; \ in TEST_F()
224 static constexpr uint64_t Marker = 0xC0FFEEA0BEEFFEEFull; \ in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DValue.h419 #define HANDLE_CONSTANT_MARKER(Marker, Constant) Marker = Constant##Val, argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DValue.h470 #define HANDLE_CONSTANT_MARKER(Marker, Constant) Marker = Constant##Val, argument
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
Dittptmark64.asm62 ;;; ;;; Intel Processor Trace Marker Functionality
Dittptmark32.asm62 ;;; ;;; Intel Processor Trace Marker Functionality

12