Home
last modified time | relevance | path

Searched refs:segIndex (Results 1 – 8 of 8) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DURI.java537 int segIndex = -1; in initialize() local
543 segIndex = tempString.lastIndexOf('/'); in initialize()
545 if (segIndex != -1) in initialize()
547 if (!tempString.substring(segIndex++).equals("..")) in initialize()
549 path = path.substring(0, segIndex).concat(path.substring(index in initialize()
560 segIndex = tempString.lastIndexOf('/'); in initialize()
562 if (segIndex != -1) in initialize()
564 path = path.substring(0, segIndex + 1); in initialize()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DURI.java557 int segIndex = -1; in initialize() local
563 segIndex = tempString.lastIndexOf('/'); in initialize()
565 if (segIndex != -1) in initialize()
567 if (!tempString.substring(segIndex++).equals("..")) in initialize()
569 path = path.substring(0, segIndex).concat(path.substring(index in initialize()
580 segIndex = tempString.lastIndexOf('/'); in initialize()
582 if (segIndex != -1) in initialize()
584 path = path.substring(0, segIndex + 1); in initialize()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFile.h185 uint8_t segIndex; member
192 uint8_t segIndex; member
DMachONormalizedFileBinaryWriter.cpp1175 | entry.segIndex); in buildRebaseInfo()
1217 if (lastSegIndex != entry.segIndex || lastSegOffset != entry.segOffset) { in buildBindInfo()
1219 | entry.segIndex); in buildBindInfo()
1221 lastSegIndex = entry.segIndex; in buildBindInfo()
1238 | entry.segIndex); in buildLazyBindInfo()
DMachONormalizedFileYAML.cpp592 io.mapRequired("segment-index", rebase.segIndex); in mapping()
616 io.mapRequired("segment-index", bind.segIndex); in mapping()
DMachONormalizedFileFromAtoms.cpp1442 rebase.segIndex = segmentIndex; in addRebaseAndBindingInfo()
1450 bind.segIndex = segmentIndex; in addRebaseAndBindingInfo()
1467 bind.segIndex = segmentIndex; in addRebaseAndBindingInfo()
/external/llvm-project/llvm/test/tools/llvm-objdump/MachO/
Dbad-bind.test23 …ed or malformed object (for BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB bad segIndex (too large) for o…
31 RUN: not llvm-objdump --macho --bind %p/Inputs/macho-bind-do-bind-no-segIndex 2>&1 | FileCheck --ch…
32 BIND-NO-SEGINDEX: macho-bind-do-bind-no-segIndex': truncated or malformed object (for BIND_OPCODE_D…
77 … or malformed object (for REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB bad segIndex (too large) for o…
/external/llvm-project/lld/MachO/
DWriter.cpp432 uint8_t segIndex = 0; in createLoadCommands() local
435 seg->index = segIndex++; in createLoadCommands()