Searched defs:Segment (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpath_util_test.py8 from path_util import SplitParent, Split, Segment namespace
35 self.assertEqual([('', '')], list(Segment('')))
36 self.assertEqual([('', 'hi'), ('hi', '')], list(Segment('hi')))
41 list(Segment('p1/p2/hi')))
46 list(Segment('foo/bar/baz.txt')))
H A Dpath_util.py74 def Segment(path): function
H A Dredirector.py10 from path_util import Segment, Join, SplitParent namespace
66 for sub_url, _ in Segment(url):
67 for base, filename in Segment(sub_url):
/external/okhttp/okio/src/main/java/okio/
H A DSegment.java27 final class Segment { class
43 Segment next;
46 Segment prev;
52 public Segment pop() {
53 Segment result = next != this ? next : null;
65 public Segment push(Segment segment) {
81 public Segment split(int byteCount) {
89 Segment before = SegmentPool.INSTANCE.take();
97 Segment afte
[all...]
/external/valgrind/main/drd/
H A Ddrd_segment.h61 } Segment; typedef in typeref:struct:segment
63 extern Segment* DRD_(g_sg_list);
65 Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created);
66 static int DRD_(sg_get_refcnt)(const Segment* const sg);
67 Segment* DRD_(sg_get)(Segment* const sg);
68 void DRD_(sg_put)(Segment* const sg);
69 static struct bitmap* DRD_(sg_bm)(Segment* const sg);
70 void DRD_(sg_merge)(Segment* const sg1, Segment* cons
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkPathMeasure.h88 struct Segment { struct in class:SkPathMeasure
96 SkTDArray<Segment> fSegments;
99 static const Segment* NextSegment(const Segment*);
106 const Segment* distanceToSegment(SkScalar distance, SkScalar* t);
/external/skia/include/core/
H A DSkPathMeasure.h88 struct Segment { struct in class:SkPathMeasure
96 SkTDArray<Segment> fSegments;
99 static const Segment* NextSegment(const Segment*);
106 const Segment* distanceToSegment(SkScalar distance, SkScalar* t);
/external/chromium_org/v8/src/
H A Dzone.cc20 class Segment { class in namespace:v8::internal
22 void Initialize(Segment* next, int size) {
27 Segment* next() const { return next_; }
31 int capacity() const { return size_ - sizeof(Segment); }
33 Address start() const { return address(sizeof(Segment)); }
42 Segment* next_;
113 Segment* keep = NULL;
116 for (Segment* current = segment_head_; current != NULL; ) {
117 Segment* next = current->next();
183 Segment* Zon
[all...]
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp72 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section, argument
75 assert(Segment.size() <= 16 && Section.size() <= 16 &&
76 "Segment or section string too long");
78 if (i < Segment.size())
79 SegmentName[i] = Segment[i];
170 StringRef &Segment, // Out.
183 Segment = GetEmptyOrTrim(0);
190 if (Segment.empty() || Segment.size() > 16)
169 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
H A DMCContext.cpp207 getMachOSection(StringRef Segment, StringRef Section, argument
217 Name += Segment;
226 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
/external/clang/lib/Driver/
H A DMultilib.cpp34 /// normalize Segment to "/foo/bar" or "".
35 static void normalizePathSegment(std::string &Segment) { argument
36 StringRef seg = Segment;
47 Segment = "";
53 Segment = "/" + seg.str();
55 Segment = seg;
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.h130 class Segment class in class:DynamicLoaderMacOSXDYLD
134 Segment() : function in class:DynamicLoaderMacOSXDYLD::Segment
158 operator==(const Segment& rhs) const
177 std::vector<Segment> segments; // All segment vmaddr and vmsize pairs for this executable (from memory of inferior)
248 const Segment *
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc839 * CMapTable::CMapFormat4::Builder::Segment class
841 CMapTable::CMapFormat4::Builder::Segment::Segment() {} function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
843 CMapTable::CMapFormat4::Builder::Segment::Segment(Segment* other) function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
850 CMapTable::CMapFormat4::Builder::Segment::Segment(int32_t start_count, function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
860 CMapTable::CMapFormat4::Builder::Segment::~Segment() {}
[all...]
H A Dcmap_table.h327 // CMapTable::CMapFormat4::Builder::Segment
328 class Segment : public RefCounted<Segment> { class in class:sfntly::CMapTable::CMapFormat4::Builder
330 Segment();
331 explicit Segment(Segment* other);
332 Segment(int32_t start_count,
336 ~Segment();
356 std::vector<Ptr<Segment> >*
357 DeepCopy(std::vector<Ptr<Segment> >* origina
[all...]
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc839 * CMapTable::CMapFormat4::Builder::Segment class
841 CMapTable::CMapFormat4::Builder::Segment::Segment() {} function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
843 CMapTable::CMapFormat4::Builder::Segment::Segment(Segment* other) function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
850 CMapTable::CMapFormat4::Builder::Segment::Segment(int32_t start_count, function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
860 CMapTable::CMapFormat4::Builder::Segment::~Segment() {}
[all...]
H A Dcmap_table.h327 // CMapTable::CMapFormat4::Builder::Segment
328 class Segment : public RefCounted<Segment> { class in class:sfntly::CMapTable::CMapFormat4::Builder
330 Segment();
331 explicit Segment(Segment* other);
332 Segment(int32_t start_count,
336 ~Segment();
356 std::vector<Ptr<Segment> >*
357 DeepCopy(std::vector<Ptr<Segment> >* origina
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h16 // individual segment is represented as an instance of LiveRange::Segment,
142 /// It manages an ordered list of Segment objects.
152 struct Segment { struct in class:llvm::LiveRange
157 Segment() : valno(nullptr) {} function in struct:llvm::LiveRange::Segment
159 Segment(SlotIndex S, SlotIndex E, VNInfo *V) function in struct:llvm::LiveRange::Segment
175 bool operator<(const Segment &Other) const {
178 bool operator==(const Segment &Other) const {
185 typedef SmallVector<Segment,4> Segments;
207 /// advanceTo - Advance the specified iterator to point to the Segment
209 /// end of the range. If no Segment contain
[all...]
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp482 StringRef Segment, Section;
486 MCSectionMachO::ParseSectionSpecifier(SectionVal, Segment, Section,
495 getContext().getMachOSection(Segment, Section, TAA, StubSize,
518 StringRef Segment, Section; local
525 MCSectionMachO::ParseSectionSpecifier(GV->getSection(), Segment, Section,
536 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
H A DLiveDebugVariables.cpp517 LiveInterval::Segment *Segment = LR->getSegmentContaining(Start); local
518 if (!Segment || Segment->valno != VNI) {
523 if (Segment->end < Stop)
524 Stop = Segment->end, ToEnd = false;
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp288 const MachineOperand &Segment = MI->getOperand(Op+X86::AddrSegmentReg); local
289 if (Segment.getReg()) {
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dpseudotcp.h130 struct Segment { struct in class:cricket::PseudoTcp
174 bool process(Segment& seg);
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlIDs.h35 Segment = 0x18538067, enumerator in enum:mkv
41 /* Segment Information */
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp37 bool parseSectionSwitch(const char *Segment, const char *Section,
373 bool DarwinAsmParser::parseSectionSwitch(const char *Segment, argument
384 Segment, Section, TAA, StubSize,
571 StringRef Segment, Section; local
576 MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
583 bool isText = Segment == "__TEXT"; // FIXME: Hack.
585 Segment, Section, TAA, StubSize,
748 StringRef Segment; local
749 if (getParser().parseIdentifier(Segment))
766 Segment, Sectio
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAAConvexPathRenderer.cpp31 struct Segment { struct
60 typedef SkTArray<Segment, true> SegmentArray;
133 Segment& sega = (*segments)[a];
135 Segment& segb = (*segments)[b];
145 if (Segment::kLine == segb.fType) {
157 const Segment& sega = (*segments)[a];
159 Segment& segb = (*segments)[b];
229 segments->back().fType = Segment::kLine;
249 segments->back().fType = Segment::kQuad;
360 const Segment
[all...]
/external/llvm/include/llvm/MC/
H A DMCContext.h253 const MCSectionMachO *getMachOSection(StringRef Segment,
258 const MCSectionMachO *getMachOSection(StringRef Segment, argument
262 return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);

Completed in 6145 milliseconds

12