HomeSort by relevance Sort by last modified time
    Searched full:textstart (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DescribedAs.java 36 int textStart = 0;
38 description.appendText(descriptionTemplate.substring(textStart, arg.start()));
40 textStart = arg.end();
43 if (textStart < descriptionTemplate.length()) {
44 description.appendText(descriptionTemplate.substring(textStart));
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
plan9obj.go 73 func (f *plan9File) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
74 textStart = f.plan9.LoadAddress + f.plan9.HdrSize
90 return textStart, symtab, pclntab, nil
93 func (f *plan9File) text() (textStart uint64, text []byte, err error) {
98 textStart = f.plan9.LoadAddress + f.plan9.HdrSize
134 textStart := f.LoadAddress + f.HdrSize
135 return data[ssym.Value-textStart : esym.Value-textStart], nil
elf.go 67 func (f *elfFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
69 textStart = sect.Addr
81 return textStart, symtab, pclntab, nil
84 func (f *elfFile) text() (textStart uint64, text []byte, err error) {
89 textStart = sect.Addr
macho.go 81 func (f *machoFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
83 textStart = sect.Addr
95 return textStart, symtab, pclntab, nil
98 func (f *machoFile) text() (textStart uint64, text []byte, err error) {
103 textStart = sect.Addr
disasm.go 35 textStart uint64 // start PC of text
54 textStart, textBytes, err := e.Text()
81 textStart: textStart,
82 textEnd: textStart + uint64(len(textBytes)),
188 if start < d.textStart {
189 start = d.textStart
207 symStart < d.textStart ||
224 code := d.text[:end-d.textStart]
230 i := pc - d.textStart
    [all...]
pe.go 98 func (f *peFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
109 textStart = imageBase + uint64(sect.VirtualAddress)
126 return textStart, symtab, pclntab, nil
129 func (f *peFile) text() (textStart uint64, text []byte, err error) {
143 textStart = imageBase + uint64(sect.VirtualAddress)
objfile.go 19 pcln() (textStart uint64, symtab, pclntab []byte, err error)
20 text() (textStart uint64, text []byte, err error)
147 textStart, symtab, pclntab, err := e.raw.pcln()
151 return gosym.NewTable(symtab, gosym.NewLineTable(pclntab, textStart))
goobj.go 104 func (f *goobjFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
200 func (f *goobjFile) text() (textStart uint64, text []byte, err error) {
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
plan9obj.go 73 func (f *plan9File) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
74 textStart = f.plan9.LoadAddress + f.plan9.HdrSize
90 return textStart, symtab, pclntab, nil
93 func (f *plan9File) text() (textStart uint64, text []byte, err error) {
98 textStart = f.plan9.LoadAddress + f.plan9.HdrSize
134 textStart := f.LoadAddress + f.HdrSize
135 return data[ssym.Value-textStart : esym.Value-textStart], nil
elf.go 67 func (f *elfFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
69 textStart = sect.Addr
81 return textStart, symtab, pclntab, nil
84 func (f *elfFile) text() (textStart uint64, text []byte, err error) {
89 textStart = sect.Addr
macho.go 81 func (f *machoFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
83 textStart = sect.Addr
95 return textStart, symtab, pclntab, nil
98 func (f *machoFile) text() (textStart uint64, text []byte, err error) {
103 textStart = sect.Addr
disasm.go 35 textStart uint64 // start PC of text
54 textStart, textBytes, err := e.Text()
81 textStart: textStart,
82 textEnd: textStart + uint64(len(textBytes)),
188 if start < d.textStart {
189 start = d.textStart
207 symStart < d.textStart ||
224 code := d.text[:end-d.textStart]
230 i := pc - d.textStart
    [all...]
pe.go 98 func (f *peFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
109 textStart = imageBase + uint64(sect.VirtualAddress)
126 return textStart, symtab, pclntab, nil
129 func (f *peFile) text() (textStart uint64, text []byte, err error) {
143 textStart = imageBase + uint64(sect.VirtualAddress)
objfile.go 19 pcln() (textStart uint64, symtab, pclntab []byte, err error)
20 text() (textStart uint64, text []byte, err error)
147 textStart, symtab, pclntab, err := e.raw.pcln()
151 return gosym.NewTable(symtab, gosym.NewLineTable(pclntab, textStart))
goobj.go 104 func (f *goobjFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
200 func (f *goobjFile) text() (textStart uint64, text []byte, err error) {
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
StreamingTextView.java 189 private void addDottySpans(SpannableStringBuilder displayText, String text, int textStart) {
192 int wordStart = textStart + m.start();
193 int wordEnd = textStart + m.end();
200 int textStart) {
202 int start = textStart;
203 int end = textStart + text.length();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 99 int textStart = findTextStart(doc, lineStart, offset);
101 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(textStart);
103 Pair<Integer,Integer> balance = getBalance(doc, textStart, offset);
108 if (textStart > lineStart) {
109 lineIndent = doc.get(lineStart, textStart - lineStart);
353 int textStart = findTextStart(doc, lineStart, command.offset);
356 if (textStart > lineStart) {
357 sb.append(doc.get(lineStart, textStart - lineStart));
390 * Returns a pair of (tag-balance,bracket-balance) for the range textStart to offset.
  /packages/apps/Settings/res/layout/
locale_order_list.xml 44 android:textAlignment="textStart"
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UScriptRun.java 155 scriptStart = textStart;
156 scriptLimit = textStart;
162 textIndex = textStart;
191 textStart = start;
355 int ch = UTF16.charAt(text, textStart, textLimit, textIndex - textStart);
539 private int textStart;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UScriptRun.java 153 scriptStart = textStart;
154 scriptLimit = textStart;
160 textIndex = textStart;
189 textStart = start;
353 int ch = UTF16.charAt(text, textStart, textLimit, textIndex - textStart);
537 private int textStart;
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
xedext_test.go 193 textStart := i
204 return addr, enc, string(fixSpace(line[textStart:textEnd]))
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
xedext_test.go 193 textStart := i
204 return addr, enc, string(fixSpace(line[textStart:textEnd]))
  /external/skia/tools/bookmaker/
spellCheck.cpp 137 const char* textStart = def->fContentStart;
158 const char* lineEnd = strchr(textStart, '\n');
159 this->wordCheck(lineEnd - textStart, textStart);
160 textStart = lineEnd;
304 this->childCheck(def, textStart);
  /external/skqp/tools/bookmaker/
spellCheck.cpp 138 const char* textStart = def->fContentStart;
169 const char* lineEnd = strchr(textStart, '\n');
170 this->wordCheck(lineEnd - textStart, textStart);
171 textStart = lineEnd;
313 this->childCheck(def, textStart);
  /libcore/ojluni/src/main/java/java/text/
Bidi.java 170 * @param textStart the index into the text array of the start of the paragraph.
180 public Bidi(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) {
187 if (textStart < 0 || paragraphLength > text.length - textStart) {
188 throw new IllegalArgumentException("bad range: " + textStart +
199 bidiBase = new android.icu.text.Bidi(text, textStart, embeddings, embStart,

Completed in 728 milliseconds

1 2 3 4 5