Searched defs:pos (Results 201 - 225 of 2350) sorted by relevance

1234567891011>>

/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_ls.cc207 string16::size_type pos = entry.name.rfind(ASCIIToUTF16(" -> ")); local
211 if (pos != string16::npos)
212 entry.name = entry.name.substr(0, pos);
/external/chromium/net/spdy/
H A Dspdy_protocol_test.cc220 int pos = 0; local
224 EXPECT_EQ(parsed.flags(), ids[pos].flags());
225 EXPECT_EQ(parsed.id(), ids[pos].id());
226 EXPECT_EQ(value, static_cast<uint32>(pos));
228 ++pos;
/external/chromium_org/base/i18n/
H A Dbreak_iterator.cc61 int32_t pos; local
68 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
69 if (pos == UBRK_DONE) {
73 pos_ = static_cast<size_t>(pos);
77 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
78 if (pos == UBRK_DONE)
80 pos_ = static_cast<size_t>(pos);
83 if (pos == UBRK_DONE && prev_ == pos_) {
H A Dbreak_iterator.h50 // // Region [iter.prev(), iter.pos()) contains a word.
97 // Returns the string between prev() and pos().
98 // Advance() must have been called successfully at least once for pos() to
102 // Returns the value of pos() returned before Advance() was last called.
107 size_t pos() const { return pos_; } function in class:base::i18n::BreakIterator
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dinet_pton.c22 const char* pos = src; local
30 if (isspace((int)(*pos)))
33 unsigned long value = strtoul(pos, &end_pos, 10);
34 if (value > 255 || pos == end_pos)
37 pos = end_pos;
40 if (*pos != '.')
42 ++pos;
45 if (*pos != '\0')
55 const char* pos = src; local
56 while (*pos !
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dutility.cc83 uint32_t pos; local
84 for (pos = 1; ; ++pos) {
85 if (0 == pos) {
89 int c = strval[pos];
98 *length = pos;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DBreakBlockquoteCommand.cpp65 // pos is a position equivalent to the caret. We use downstream() so that pos will
67 Position pos = endingSelection().start().downstream(); local
70 Node* topBlockquote = highestEnclosingNodeOfType(pos, isMailBlockquote);
100 pos = pos.next();
103 while (isFirstVisiblePositionInNode(VisiblePosition(pos), enclosingNodeOfType(pos, isMailBlockquote)))
104 pos = pos
[all...]
H A DInsertLineBreakCommand.cpp56 void InsertLineBreakCommand::insertNodeAfterPosition(Node* node, const Position& pos) argument
61 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement();
62 if (cb == pos.deprecatedNode())
65 insertNodeAfter(node, pos.deprecatedNode());
68 void InsertLineBreakCommand::insertNodeBeforePosition(Node* node, const Position& pos) argument
73 Element* cb = pos.deprecatedNode()->enclosingBlockFlowElement();
74 if (cb == pos.deprecatedNode())
77 insertNodeBefore(node, pos.deprecatedNode());
103 Position pos(caret.deepEquivalent());
105 pos
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcurrfmt.cpp55 FieldPosition& pos,
58 return fmt->format(obj, appendTo, pos, ec);
63 ParsePosition& pos) const
65 fmt->parseCurrency(source, result, pos);
53 format(const Formattable& obj, UnicodeString& appendTo, FieldPosition& pos, UErrorCode& ec) const argument
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.h160 void expectPosition(FieldPosition& pos, int32_t id, int32_t start, int32_t limit,
203 int32_t pos, int32_t width, UChar pad);
206 int32_t pos, int32_t width, UChar pad) {
207 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
211 int32_t pos, int32_t width, const UnicodeString& pad);
214 int32_t pos, int32_t width, const UnicodeString& pad) {
215 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
225 int32_t pos);
228 int32_t pos) {
229 expectPad(fmt, pat, pos,
205 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
213 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
227 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dscanner.h9 unsigned char *bot, *tok, *ptr, *cur, *pos, *lim, *top, *eof; member in struct:Scanner
/external/chromium_org/ui/gfx/
H A Dselection_model.h87 void set_selection_start(size_t pos) { selection_.set_start(pos); } argument
/external/chromium_org/v8/src/
H A Dfunc-name-inferrer.cc76 Handle<String> FuncNameInferrer::MakeNameFromStackHelper(int pos, argument
78 if (pos >= names_stack_.length()) return prev;
79 if (pos < names_stack_.length() - 1 &&
80 names_stack_.at(pos).type == kVariableName &&
81 names_stack_.at(pos + 1).type == kVariableName) {
83 return MakeNameFromStackHelper(pos + 1, prev);
88 factory->dot_string(), names_stack_.at(pos).name);
89 return MakeNameFromStackHelper(pos + 1,
92 return MakeNameFromStackHelper(pos + 1, names_stack_.at(pos)
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.cc40 const char *pos = 0; local
42 pos = internal_strstr(env, name);
43 if (pos == 0)
45 if (pos != env && ((pos[-1] >= 'a' && pos[-1] <= 'z') || pos[-1] == '_')) {
47 env = pos + 1;
52 pos += internal_strlen(name);
54 if (pos[
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DSimpleDERReader.java20 int pos; field in class:SimpleDERReader
41 pos = off;
50 return buffer[pos++];
60 System.arraycopy(buffer, pos, b, 0, len);
62 pos += len;
/external/harfbuzz_ng/src/
H A Dtest.cc113 hb_glyph_position_t *pos = &positions[i]; local
118 pos->x_offset,
119 pos->x_offset,
120 pos->x_advance,
121 pos->y_advance);
/external/icu4c/common/
H A Dbytestrie.cpp30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { argument
35 value=((leadByte-kMinTwoByteValueLead)<<8)|*pos;
37 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1];
39 value=(pos[0]<<16)|(pos[1]<<8)|pos[2];
41 value=(pos[0]<<24)|(pos[1]<<16)|(pos[
47 jumpByDelta(const uint8_t *pos) argument
68 const uint8_t *pos=pos_; local
79 branchNext(const uint8_t *pos, int32_t length, int32_t inByte) argument
149 nextImpl(const uint8_t *pos, int32_t inByte) argument
[all...]
H A Dbytestrieiterator.cpp104 const uint8_t *pos=pos_; local
105 if(pos==NULL) {
113 pos=bytes_+stack_->elementAti(stackSize-2);
118 pos=branchNext(pos, length, errorCode);
119 if(pos==NULL) {
123 str_->append((char)*pos++, errorCode);
132 int32_t node=*pos++;
136 value_=readValue(pos, node>>1);
140 pos_=skipValue(pos, nod
180 branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
H A Ducharstrieiterator.cpp103 const UChar *pos=pos_; local
104 if(pos==NULL) {
112 pos=uchars_+stack_->elementAti(stackSize-2);
117 pos=branchNext(pos, length, errorCode);
118 if(pos==NULL) {
122 str_.append(*pos++);
131 int32_t node=*pos++;
134 pos=skipNodeValue(pos, nod
184 branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) argument
[all...]
/external/icu4c/i18n/
H A Dcurrfmt.cpp56 FieldPosition& pos,
59 return fmt->format(obj, appendTo, pos, ec);
64 ParsePosition& pos) const
66 CurrencyAmount* currAmt = fmt->parseCurrency(source, pos);
54 format(const Formattable& obj, UnicodeString& appendTo, FieldPosition& pos, UErrorCode& ec) const argument
/external/icu4c/test/intltest/
H A Dnumfmtst.h172 void expectPosition(FieldPosition& pos, int32_t id, int32_t start, int32_t limit,
215 int32_t pos, int32_t width, UChar pad);
218 int32_t pos, int32_t width, UChar pad) {
219 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
223 int32_t pos, int32_t width, const UnicodeString& pad);
226 int32_t pos, int32_t width, const UnicodeString& pad) {
227 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad);
237 int32_t pos);
240 int32_t pos) {
241 expectPad(fmt, pat, pos,
217 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
225 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
239 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
/external/iproute2/lib/
H A Ddnet_ntop.c19 static __inline__ int do_digit(char *str, u_int16_t *addr, u_int16_t scale, size_t *pos, size_t len, int *started) argument
23 if (*pos == len)
29 (*pos)++;
40 size_t pos = 0; local
55 if (do_digit(str + pos, &area, 10, &pos, len, &started))
58 if (do_digit(str + pos, &area, 1, &pos, len, &started))
61 if (pos == len)
64 *(str + pos)
[all...]
H A Ddnet_pton.c44 int pos; local
46 pos = dnet_num(src, &area);
47 if ((pos == 0) || (area > 63) || (*(src + pos) != '.'))
49 pos = dnet_num(src + pos + 1, &node);
50 if ((pos == 0) || (node > 1023))
/external/javassist/src/main/javassist/convert/
H A DTransformFieldAccess.java56 public int transform(CtClass clazz, int pos, argument
59 int c = iterator.byteAt(pos);
62 int index = iterator.u16bitAt(pos + 1);
75 iterator.write16bit(newIndex, pos + 1);
79 return pos;
H A DTransformNew.java50 public int transform(CtClass clazz, int pos, CodeIterator iterator, argument
54 int c = iterator.byteAt(pos);
56 index = iterator.u16bitAt(pos + 1);
58 if (iterator.byteAt(pos + 3) != DUP)
62 iterator.writeByte(NOP, pos);
63 iterator.writeByte(NOP, pos + 1);
64 iterator.writeByte(NOP, pos + 2);
65 iterator.writeByte(NOP, pos + 3);
71 smt.removeNew(pos);
76 sm.removeNew(pos);
[all...]

Completed in 830 milliseconds

1234567891011>>