Searched defs:pos (Results 26 - 50 of 2338) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dcircular-queue-inl.h46 SamplingCircularQueue::Cell** pos) {
47 if (**pos == kEnd) *pos = buffer_;
45 WrapPositionIfNeeded( SamplingCircularQueue::Cell** pos) argument
/external/chromium/net/proxy/
H A Dproxy_config_service_android.cc40 size_t pos; local
41 while ( (pos = exList.find(',')) != std::string::npos) {
42 config.proxy_rules().bypass_rules.AddRuleFromString(exList.substr(0, pos));
43 exList.erase(0, pos + 1);
/external/chromium_org/net/websockets/
H A Dwebsocket_net_log_params.cc20 size_t pos = 0; local
21 while (pos <= headers_size) {
22 if (pos == headers_size ||
23 ((*headers)[pos] == '\r' &&
24 pos + 1 < headers_size && (*headers)[pos + 1] == '\n')) {
25 std::string entry = headers->substr(last, pos - last);
26 pos += 2;
27 last = pos;
34 for (; pos < headers_siz
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dfile_ref_util.cc16 size_t pos = path.rfind('/');
17 CHECK(pos != std::string::npos);
18 return path.substr(pos + 1);
23 size_t pos = file_path.rfind(base::FilePath::kSeparators[0]); local
24 CHECK(pos != base::FilePath::StringType::npos);
26 return WideToUTF8(file_path.substr(pos + 1));
28 return file_path.substr(pos + 1);
/external/chromium_org/remoting/host/setup/
H A Doauth_helper_unittest.cc13 size_t pos = s.find(old_substr); local
14 if (pos == std::string::npos) {
17 return s.substr(0, pos) + new_substr +
18 s.substr(pos + old_substr.length(), std::string::npos);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPositionIterator.h46 PositionIterator(const Position& pos) argument
47 : m_anchorNode(pos.anchorNode())
48 , m_nodeAfterPositionInAnchor(m_anchorNode->childNode(pos.deprecatedEditingOffset()))
49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset())
/external/chromium_org/third_party/icu/source/i18n/
H A Dfphdlimp.h34 FieldPosition& pos; member in class:FieldPositionOnlyHandler
37 FieldPositionOnlyHandler(FieldPosition& pos);
H A Dnfsubs.h33 int32_t pos; member in class:NFSubstitution
38 NFSubstitution(int32_t pos,
57 static NFSubstitution* makeSubstitution(int32_t pos,
111 * @param pos The position in toInsertInto where the owning rule's
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
123 * @param pos The position in toInsertInto where the owning rule's
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
226 int32_t getPos() const { return pos; }
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.h67 int32_t pos; member in class:TokenIterator
/external/chromium_org/ui/base/text/
H A Dutf16_indexing.cc17 ptrdiff_t UTF16IndexToOffset(const string16& s, size_t base, size_t pos) { argument
24 DCHECK_LE(pos, s.length());
26 while (base < pos)
28 while (pos < base)
29 delta -= IsValidCodePointIndex(s, pos++) ? 1 : 0;
36 // the second. When stepping from pos to pos+1 we check s[pos:pos+1] == s[pos]
39 size_t pos = base; local
[all...]
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_separator_views.cc32 int pos = 0; local
35 pos = height() - kSeparatorHeight;
42 pos = height() / 2;
45 canvas->FillRect(gfx::Rect(0, pos, width(), kSeparatorHeight),
/external/icu4c/i18n/
H A Dfphdlimp.h34 FieldPosition& pos; member in class:FieldPositionOnlyHandler
37 FieldPositionOnlyHandler(FieldPosition& pos);
H A Dnfsubs.h33 int32_t pos; member in class:NFSubstitution
38 NFSubstitution(int32_t pos,
57 static NFSubstitution* makeSubstitution(int32_t pos,
111 * @param pos The position in toInsertInto where the owning rule's
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
123 * @param pos The position in toInsertInto where the owning rule's
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
226 int32_t getPos() const { return pos; }
/external/icu4c/test/intltest/
H A Dtokiter.h67 int32_t pos; member in class:TokenIterator
/external/javassist/src/main/javassist/convert/
H A DTransformAfter.java30 protected int match2(int pos, CodeIterator iterator) throws BadBytecode { argument
31 iterator.move(pos);
37 pos = iterator.next();
39 iterator.writeByte(iterator.byteAt(pos), p);
40 iterator.write16bit(iterator.u16bitAt(pos + 1), p + 1);
41 iterator.writeByte(INVOKESTATIC, pos);
42 iterator.write16bit(newIndex, pos + 1);
/external/linux-tools-perf/
H A Dbuiltin-evlist.c29 struct perf_evsel *pos; local
35 list_for_each_entry(pos, &session->evlist->entries, node)
36 printf("%s\n", event_name(pos));
/external/netcat/
H A Datomicio.c44 size_t pos = 0; local
50 while (n > pos) {
51 res = (f) (fd, s + pos, n - pos);
63 return pos;
65 pos += (size_t)res;
68 return (pos);
/external/wpa_supplicant_8/hostapd/
H A Dnt_password_hash.c19 char *password, buf[64], *pos; local
29 pos = buf;
30 while (*pos != '\0') {
31 if (*pos == '\r' || *pos == '\n') {
32 *pos = '\0';
35 pos++;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_passphrase.c19 char *ssid, *passphrase, buf[64], *pos; local
39 pos = buf;
40 while (*pos != '\0') {
41 if (*pos == '\r' || *pos == '\n') {
42 *pos = '\0';
45 pos++;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java53 void setCharPositionInLine(int pos); argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java85 int pos;
88 pos = ((FormattedHeader) header).getValuePos();
96 pos = 0;
98 while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) {
99 pos++;
101 int beginIndex = pos;
102 while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) {
103 pos
114 parseChallenge( CharArrayBuffer buffer, int pos, int len) argument
[all...]
H A DRFC2617Scheme.java67 final CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException {
69 ParserCursor cursor = new ParserCursor(pos, buffer.length());
66 parseChallenge( final CharArrayBuffer buffer, int pos, int len) argument
/external/apache-http/src/org/apache/http/message/
H A DParserCursor.java49 private int pos; field in class:ParserCursor
61 this.pos = lowerBound;
73 return this.pos;
76 public void updatePos(int pos) { argument
77 if (pos < this.lowerBound) {
80 if (pos > this.upperBound) {
83 this.pos = pos;
87 return this.pos >= this.upperBound;
95 buffer.append(Integer.toString(this.pos));
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTreeWalker2Result.java65 * @param pos Start node for traversal
69 public void traverse(int pos) throws org.xml.sax.SAXException argument
71 m_dtm = m_transformer.getXPathContext().getDTM(pos);
72 m_startNode = pos;
74 super.traverse(pos);
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_dense_matrix_test.cc104 int pos = row_idx * num_rows + col_idx; local
105 EXPECT_EQ(m.values()[pos], (i + 1) * (j + 1));

Completed in 1984 milliseconds

1234567891011>>