Searched refs:current (Results 1 - 25 of 3767) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/
H A DMemoryObject.cpp19 uint64_t current = address; local
22 if (current + size > limit)
25 while (current - address < size) {
26 if (readByte(current, &buf[(current - address)]))
29 current++;
/external/chromium_org/v8/src/
H A Dconversions-inl.h92 bool SubStringEquals(Iterator* current, argument
95 ASSERT(**current == *substring);
97 ++*current;
98 if (*current == end || **current != *substring) return false;
100 ++*current;
109 Iterator* current,
111 while (*current != end) {
112 if (!unicode_cache->IsWhiteSpaceOrLineTerminator(**current)) return true;
113 ++*current;
108 AdvanceToNonspace(UnicodeCache* unicode_cache, Iterator* current, EndMark end) argument
121 InternalStringToIntDouble(UnicodeCache* unicode_cache, Iterator current, EndMark end, bool negative, bool allow_trailing_junk) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeTraversal.h39 static Node* next(const Node& current) { return traverseNextTemplate(current); } argument
40 static Node* next(const ContainerNode& current) { return traverseNextTemplate(current); } argument
41 static Node* next(const Node& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } argument
42 static Node* next(const ContainerNode& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } argument
45 static Node* nextSkippingChildren(const Node& current) { return traverseNextSkippingChildrenTemplate(current); } argument
46 nextSkippingChildren(const ContainerNode& current) argument
47 nextSkippingChildren(const Node& current, const Node* stayWithin) argument
48 nextSkippingChildren(const ContainerNode& current, const Node* stayWithin) argument
83 traverseNextTemplate(NodeType& current) argument
93 traverseNextTemplate(NodeType& current, const Node* stayWithin) argument
105 traverseNextSkippingChildrenTemplate(NodeType& current) argument
113 traverseNextSkippingChildrenTemplate(NodeType& current, const Node* stayWithin) argument
[all...]
H A DNodeTraversal.cpp32 Node* NodeTraversal::previousIncludingPseudo(const Node& current, const Node* stayWithin) argument
34 if (current == stayWithin)
36 if (Node* previous = current.pseudoAwarePreviousSibling()) {
41 return current.parentNode();
44 Node* NodeTraversal::nextIncludingPseudo(const Node& current, const Node* stayWithin) argument
46 if (Node* next = current.pseudoAwareFirstChild())
48 if (current == stayWithin)
50 if (Node* next = current.pseudoAwareNextSibling())
52 for (Node* parent = current.parentNode(); parent; parent = parent->parentNode()) {
61 Node* NodeTraversal::nextIncludingPseudoSkippingChildren(const Node& current, cons argument
76 nextAncestorSibling(const Node& current) argument
86 nextAncestorSibling(const Node& current, const Node* stayWithin) argument
99 lastWithin(const ContainerNode& current) argument
107 previous(const Node& current, const Node* stayWithin) argument
120 previousSkippingChildren(const Node& current, const Node* stayWithin) argument
135 nextPostOrder(const Node& current, const Node* stayWithin) argument
147 previousAncestorSiblingPostOrder(const Node& current, const Node* stayWithin) argument
159 previousPostOrder(const Node& current, const Node* stayWithin) argument
[all...]
H A DElementTraversal.h38 static ElementType* firstChild(const ContainerNode& current) { return firstChildTemplate(current); } argument
39 static ElementType* firstChild(const Node& current) { return firstChildTemplate(current); } argument
40 static ElementType* lastChild(const ContainerNode& current) { return lastChildTemplate(current); } argument
41 static ElementType* lastChild(const Node& current) { return lastChildTemplate(current); } argument
44 static ElementType* firstAncestor(const Node& current);
45 static ElementType* firstAncestorOrSelf(Node& current) { retur argument
46 firstAncestorOrSelf(Element& current) argument
50 firstWithin(const ContainerNode& current) argument
51 firstWithin(const Node& current) argument
52 lastWithin(const ContainerNode& current) argument
53 lastWithin(const Node& current) argument
56 next(const ContainerNode& current) argument
57 next(const Node& current) argument
58 next(const ContainerNode& current, const Node* stayWithin) argument
59 next(const Node& current, const Node* stayWithin) argument
60 previous(const ContainerNode& current) argument
61 previous(const Node& current) argument
62 previous(const ContainerNode& current, const Node* stayWithin) argument
63 previous(const Node& current, const Node* stayWithin) argument
66 nextSkippingChildren(const ContainerNode& current) argument
67 nextSkippingChildren(const Node& current) argument
68 nextSkippingChildren(const ContainerNode& current, const Node* stayWithin) argument
69 nextSkippingChildren(const Node& current, const Node* stayWithin) argument
113 firstWithinTemplate(NodeType& current) argument
120 lastWithinTemplate(NodeType& current) argument
130 nextTemplate(NodeType& current) argument
140 nextTemplate(NodeType& current, const Node* stayWithin) argument
150 previousTemplate(NodeType& current) argument
160 previousTemplate(NodeType& current, const Node* stayWithin) argument
171 firstChildTemplate(NodeType& current) argument
180 firstAncestor(const Node& current) argument
190 firstAncestorOrSelfTemplate(NodeType& current) argument
199 lastChildTemplate(NodeType& current) argument
209 firstWithinTemplate(NodeType& current) argument
219 lastWithinTemplate(NodeType& current) argument
229 nextTemplate(NodeType& current) argument
239 nextTemplate(NodeType& current, const Node* stayWithin) argument
249 previousTemplate(NodeType& current) argument
259 previousTemplate(NodeType& current, const Node* stayWithin) argument
269 nextSkippingChildrenTemplate(NodeType& current) argument
279 nextSkippingChildrenTemplate(NodeType& current, const Node* stayWithin) argument
288 previousIncludingPseudo(const Node& current, const Node* stayWithin) argument
297 nextIncludingPseudo(const Node& current, const Node* stayWithin) argument
306 nextIncludingPseudoSkippingChildren(const Node& current, const Node* stayWithin) argument
315 pseudoAwarePreviousSibling(const Node& current) argument
324 previousSibling(const Node& current) argument
333 nextSibling(const Node& current) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/
H A Dbackground.js7 var current = min; variable
10 chrome.browserAction.setIcon({path:"icon" + current + ".png"});
11 current++;
13 if (current > max)
14 current = min;
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_token_store_unittest.cc12 EXPECT_EQ(NULL, CloudPrintTokenStore::current());
14 EXPECT_EQ(store, CloudPrintTokenStore::current());
15 CloudPrintTokenStore::current()->SetToken("myclientlogintoken");
16 EXPECT_EQ(CloudPrintTokenStore::current()->token(), "myclientlogintoken");
18 EXPECT_EQ(NULL, CloudPrintTokenStore::current());
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.cpp20 Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
22 if (!current)
29 TlsSetValue(currentTLS, current);
31 current->error = EGL_SUCCESS;
32 current->API = EGL_OPENGL_ES_API;
33 current->display = EGL_NO_DISPLAY;
34 current->drawSurface = EGL_NO_SURFACE;
35 current->readSurface = EGL_NO_SURFACE;
37 return current;
42 void *current local
109 Current *current = (Current*)TlsGetValue(currentTLS); local
118 Current *current = GetCurrentData(); local
125 Current *current = GetCurrentData(); local
132 Current *current = GetCurrentData(); local
139 Current *current = GetCurrentData(); local
146 Current *current = GetCurrentData(); local
153 Current *current = GetCurrentData(); local
160 Current *current = GetCurrentData(); local
167 Current *current = GetCurrentData(); local
174 Current *current = GetCurrentData(); local
181 Current *current = GetCurrentData(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DSharedTimer.cpp35 blink::Platform::current()->setSharedTimerFiredFunction(f);
40 blink::Platform::current()->setSharedTimerFireInterval(fireTime);
45 blink::Platform::current()->stopSharedTimer();
/external/libexif/test/
H A Dtest-sorted.c33 ExifTag last = 0, current; local
36 current = exif_tag_table_get_tag(i);
37 if (current < last) {
39 current);
43 printf("Tag 0x%04x has a NULL name\n", current);
46 last = current;
/external/chromium_org/components/password_manager/core/browser/
H A Dmock_password_store.cc11 base::MessageLoopProxy::current(),
12 base::MessageLoopProxy::current()) {
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dsplay-tree.js145 var current = opt_startNode || this.root_;
146 while (current.right) {
147 current = current.right;
149 return current;
209 var current = this.root_;
211 if (key < current.key) {
212 if (!current.left) {
215 if (key < current.left.key) {
217 var tmp = current
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DNavigatorCPU.cpp14 return blink::Platform::current()->numberOfProcessors();
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java204 * Traverse to the next node after the current node.
207 * @param current The current node of the iteration.
211 public int next(int context, int current) argument
213 return getParent(current);
217 * Traverse to the next node after the current node that is matched
221 * @param current The current node of the iteration.
226 public int next(int context, int current, int expandedTypeID) argument
229 current
294 next(int context, int current) argument
310 next(int context, int current, int expandedTypeID) argument
460 next(int context, int current) argument
475 next(int context, int current, int expandedTypeID) argument
701 next(int context, int current) argument
730 next(int context, int current, int expandedTypeID) argument
805 next(int context, int current) argument
926 next(int context, int current) argument
958 next(int context, int current, int expandedTypeID) argument
994 next(int context, int current) argument
1009 next(int context, int current, int expandedTypeID) argument
1036 next(int context, int current) argument
1054 next(int context, int current, int expandedTypeID) argument
1087 next(int context, int current) argument
1105 next(int context, int current, int expandedTypeID) argument
1160 first(int current, int expandedTypeID) argument
1183 next(int context, int current) argument
1201 next(int context, int current, int expandedTypeID) argument
1245 next(int context, int current) argument
1274 next(int context, int current, int expandedTypeID) argument
1309 next(int context, int current) argument
1337 next(int context, int current, int expandedTypeID) argument
1370 next(int context, int current) argument
1385 next(int context, int current, int expandedTypeID) argument
1443 next(int context, int current) argument
1458 next(int context, int current, int expandedTypeID) argument
1504 next(int context, int current) argument
1530 next(int context, int current, int expandedTypeID) argument
1579 next(int context, int current) argument
1594 next(int context, int current, int expandedTypeID) argument
[all...]
/external/chromium_org/v8/tools/
H A Dsplaytree.js147 var current = this.root_;
148 while (current.left) {
149 current = current.left;
151 return current;
162 var current = opt_startNode || this.root_;
163 while (current.right) {
164 current = current.right;
166 return current;
[all...]
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/
H A Dsplaytree.js130 var current = this.root_;
131 while (current.left) {
132 current = current.left;
134 return current;
145 var current = opt_startNode || this.root_;
146 while (current.right) {
147 current = current.right;
149 return current;
[all...]
/external/chromium_org/ui/aura/client/
H A Dvisibility_client.cc26 aura::Window* current = window; local
28 visibility_client = current->GetProperty(kWindowVisibilityClientKey);
29 current = current->parent();
30 } while (current && !visibility_client);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dmain.cpp21 Current *current = (Current*)LocalAlloc(LPTR, sizeof(Current)); local
23 if (!current)
30 TlsSetValue(currentTLS, current);
32 current->context = NULL;
33 current->display = NULL;
35 return current;
40 void *current = TlsGetValue(currentTLS); local
42 if (current)
44 LocalFree((HLOCAL)current);
92 Current *current local
101 Current *current = GetCurrentData(); local
114 Current *current = GetCurrentData(); local
140 Current *current = GetCurrentData(); local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitWriterBuffer.java22 int current = (buffer.get(initialPos + position / 8));
23 current = current < 0 ? current + 256 : current;
24 current += i << (left - numBits);
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/pin/
H A Dbackground.js10 var current = tabs[0]
11 chrome.tabs.update(current.id, {'pinned': !current.pinned});
/external/chromium_org/chrome/browser/task_manager/
H A Dos_resource_win.h12 // Get the current number of GDI handles in use (and peak on >= Win7+).
14 size_t* current,
17 // Get the current number of USER handles in use (and peak on >= Win7).
19 size_t* current,
/external/chromium_org/net/url_request/
H A Durl_fetcher_delegate.cc10 const URLFetcher* source, int64 current, int64 total) {}
13 const URLFetcher* source, int64 current, int64 total) {}
9 OnURLFetchDownloadProgress( const URLFetcher* source, int64 current, int64 total) argument
12 OnURLFetchUploadProgress( const URLFetcher* source, int64 current, int64 total) argument
/external/android-clat/
H A Dchecksum.c31 * current - the current checksum (or 0 to start a new checksum)
35 uint32_t ip_checksum_add(uint32_t current, const void *data, int len) { argument
36 uint32_t checksum = current;
96 uint32_t current = 0; local
97 current = ip_checksum_add(current, &(ip6->ip6_src), sizeof(struct in6_addr));
98 current = ip_checksum_add(current, &(ip6->ip6_dst), sizeof(struct in6_addr));
99 current
116 uint32_t current = 0; local
[all...]
/external/chromium_org/content/child/
H A Dscoped_child_process_reference.cc15 ChildProcess::current()->AddRefProcess();
20 ChildProcess::current()->ReleaseProcess();
26 base::MessageLoop::current()->PostDelayedTask(
29 base::Unretained(ChildProcess::current())),
/external/chromium_org/content/renderer/pepper/
H A Dpepper_proxy_channel_delegate_impl.cc16 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
17 return ChildProcess::current()->io_message_loop_proxy();
21 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
22 return ChildProcess::current()->GetShutDownEvent();

Completed in 3626 milliseconds

1234567891011>>