Searched defs:pos (Results 101 - 125 of 2792) sorted by relevance

1234567891011>>

/external/bsdiff/
H A Dsink_file.cc21 bool SinkFile::Seek(off_t pos) { argument
H A Dsuffix_array_index_unittest.cc55 uint64_t pos; local
58 SearchPrefix("zzz", &length, &pos); // lexicographically highest.
61 SearchPrefix(" ", &length, &pos); // lexicographically lowest.
65 SearchPrefix("abc", &length, &pos);
69 SearchPrefix("abcd", &length, &pos);
71 EXPECT_EQ(18U, pos);
74 SearchPrefix("abcW", &length, &pos);
/external/compiler-rt/test/tsan/
H A Dsignal_sync2.cc28 int pos = signals_handled++; local
29 if (pos >= kSignalCount)
31 data[pos] = pos;
32 __atomic_store_n(&ready[pos], 1, __ATOMIC_RELEASE);
62 for (int pos = 0; pos < kSignalCount; pos++) {
63 while (__atomic_load_n(&ready[pos], __ATOMIC_ACQUIRE) == 0) {
65 if (data[pos] !
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUtilityExtensions.java58 Transliterator.Position pos) {
60 formatInput(appendTo, input, pos);
71 Transliterator.Position pos) {
72 if (0 <= pos.contextStart &&
73 pos.contextStart <= pos.start &&
74 pos.start <= pos.limit &&
75 pos.limit <= pos
57 formatInput(ReplaceableString input, Transliterator.Position pos) argument
69 formatInput(StringBuffer appendTo, ReplaceableString input, Transliterator.Position pos) argument
102 formatInput(Replaceable input, Transliterator.Position pos) argument
110 formatInput(StringBuffer appendTo, Replaceable input, Transliterator.Position pos) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSymbolTable.java69 * found, return null and leave pos unchanged. That is, if the
70 * character at pos cannot start a name, or if pos is at or after
74 * @param pos on entry, the index of the first character to parse.
77 * failed, pos is unchanged on exit.
82 String parseReference(String text, ParsePosition pos, int limit); argument
H A DUnescapeTransliterator.java150 Position pos, boolean isIncremental) {
151 int start = pos.start;
152 int limit = pos.limit;
259 pos.contextLimit += limit - pos.limit;
260 pos.limit = limit;
261 pos.start = start;
149 handleTransliterate(Replaceable text, Position pos, boolean isIncremental) argument
/external/icu/icu4c/source/common/
H A Druleiter.h48 ParsePosition& pos; member in class:RuleCharacterIterator
99 * @param pos upon input, the index of the next character to return. If a
100 * variable has been dereferenced, then pos will <em>not</em> increment as
104 ParsePosition& pos);
138 int32_t pos; member in struct:RuleCharacterIterator::Pos
148 * RuleCharacterIterator::Pos pos;
149 * iterator.getPos(pos);
151 * iterator.getPos(pos);
155 * iterator.setPos(pos);
H A Dstringpiece.cpp21 StringPiece::StringPiece(const StringPiece& x, int32_t pos) { argument
22 if (pos < 0) {
23 pos = 0;
24 } else if (pos > x.length_) {
25 pos = x.length_;
27 ptr_ = x.ptr_ + pos;
28 length_ = x.length_ - pos;
31 StringPiece::StringPiece(const StringPiece& x, int32_t pos, int32_t len) { argument
32 if (pos < 0) {
33 pos
[all...]
/external/icu/icu4c/source/i18n/
H A Dcurrfmt.cpp45 FieldPosition& pos,
48 return fmt->format(obj, appendTo, pos, ec);
53 ParsePosition& pos) const
55 CurrencyAmount* currAmt = fmt->parseCurrency(source, pos);
43 format(const Formattable& obj, UnicodeString& appendTo, FieldPosition& pos, UErrorCode& ec) const argument
H A Drbt_data.cpp47 int32_t pos = UHASH_FIRST; local
49 while ((e = other.variableNames.nextElement(pos)) != 0) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSymbolTable.java73 * found, return null and leave pos unchanged. That is, if the
74 * character at pos cannot start a name, or if pos is at or after
78 * @param pos on entry, the index of the first character to parse.
81 * failed, pos is unchanged on exit.
87 String parseReference(String text, ParsePosition pos, int limit); argument
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/impl/
H A DUtilityExtensions.java56 Transliterator.Position pos) {
58 formatInput(appendTo, input, pos);
69 Transliterator.Position pos) {
70 if (0 <= pos.contextStart &&
71 pos.contextStart <= pos.start &&
72 pos.start <= pos.limit &&
73 pos.limit <= pos
55 formatInput(ReplaceableString input, Transliterator.Position pos) argument
67 formatInput(StringBuffer appendTo, ReplaceableString input, Transliterator.Position pos) argument
100 formatInput(Replaceable input, Transliterator.Position pos) argument
108 formatInput(StringBuffer appendTo, Replaceable input, Transliterator.Position pos) argument
[all...]
/external/iproute2/lib/
H A Dipx_ntop.c8 static __inline__ int do_digit(char *str, u_int32_t addr, u_int32_t scale, size_t *pos, size_t len) argument
12 if (*pos == len)
20 (*pos)++;
28 size_t pos = 0; local
34 if (do_digit(str + pos, ntohl(addr->ipx_net), i, &pos, len))
37 if (pos == len)
40 *(str + pos) = '.';
41 pos++;
44 if (do_digit(str + pos, add
[all...]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/
H A DLambdaArgumentTypePlaceholder.java31 private int pos; field in class:LambdaArgumentTypePlaceholder
34 public LambdaArgumentTypePlaceholder(int pos) { argument
35 this.pos = pos;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutineScanner.java62 private void scan(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode { argument
64 if (done.contains(new Integer(pos)))
67 done.add(new Integer(pos));
70 iter.move(pos);
74 pos = iter.next();
75 next = scanOp(pos, iter, sub) && iter.hasNext();
81 private boolean scanOp(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode { argument
82 subroutines[pos] = sub;
84 int opcode = iter.byteAt(pos);
87 scanTableSwitch(pos, ite
125 scanLookupSwitch(int pos, CodeIterator iter, Subroutine sub) argument
139 scanTableSwitch(int pos, CodeIterator iter, Subroutine sub) argument
[all...]
H A DUtil.java26 public static int getJumpTarget(int pos, CodeIterator iter) { argument
27 int opcode = iter.byteAt(pos);
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
29 return pos;
/external/javassist/src/main/javassist/convert/
H A DTransformWriteField.java29 public int transform(CtClass tclazz, int pos, CodeIterator iterator, argument
32 int c = iterator.byteAt(pos);
34 int index = iterator.u16bitAt(pos + 1);
40 iterator.move(pos);
44 pos = iterator.insertGap(3);
45 iterator.writeByte(ACONST_NULL, pos);
46 iterator.writeByte(DUP_X2, pos + 1);
47 iterator.writeByte(POP, pos + 2);
52 pos = iterator.insertGap(2);
53 iterator.writeByte(ACONST_NULL, pos);
[all...]
/external/javassist/src/main/javassist/expr/
H A DConstructorCall.java35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) { argument
36 super(pos, i, decl, m);
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java69 private static void verifySubroutine(Subroutine[] subs, int pos, int start, argument
71 Subroutine sub = subs[pos];
180 private static void addJump(Bytecode code, int opcode, int pos) { argument
183 code.addIndex(pos - current);
/external/jline/src/src/main/java/jline/
H A DCandidateListCompletionHandler.java41 final int pos) throws IOException {
53 setBuffer(reader, value, pos);
59 setBuffer(reader, value, pos);
40 complete(final ConsoleReader reader, final List candidates, final int pos) argument
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DEOF.java15 public EOF(int line, int pos) argument
19 setPos(pos);
H A DTAlt.java15 public TAlt(int line, int pos) argument
19 setPos(pos);
H A DTAnd.java15 public TAnd(int line, int pos) argument
19 setPos(pos);
H A DTArgWhitespace.java15 public TArgWhitespace(String text, int line, int pos) argument
19 setPos(pos);
H A DTAssignment.java15 public TAssignment(int line, int pos) argument
19 setPos(pos);

Completed in 462 milliseconds

1234567891011>>