Searched refs:current (Results 1 - 25 of 3914) 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.h101 bool SubStringEquals(Iterator* current, argument
104 DCHECK(**current == *substring);
106 ++*current;
107 if (*current == end || **current != *substring) return false;
109 ++*current;
118 Iterator* current,
120 while (*current != end) {
121 if (!unicode_cache->IsWhiteSpaceOrLineTerminator(**current)) return true;
122 ++*current;
117 AdvanceToNonspace(UnicodeCache* unicode_cache, Iterator* current, EndMark end) argument
130 InternalStringToIntDouble(UnicodeCache* unicode_cache, Iterator current, EndMark end, bool negative, bool allow_trailing_junk) argument
[all...]
H A Dproperty.cc14 LookupResult* current = this; // Could be NULL. local
15 while (current != NULL) {
16 visitor->VisitPointer(bit_cast<Object**>(&current->holder_));
17 visitor->VisitPointer(bit_cast<Object**>(&current->transition_));
18 current = current->next_;
/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/WebKit/Source/core/dom/
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 lastWithinOrSelf(Node& current) argument
113 previous(const Node& current, const Node* stayWithin) argument
126 previousSkippingChildren(const Node& current, const Node* stayWithin) argument
141 nextPostOrder(const Node& current, const Node* stayWithin) argument
153 previousAncestorSiblingPostOrder(const Node& current, const Node* stayWithin) argument
165 previousPostOrder(const Node& current, const Node* stayWithin) argument
[all...]
H A DNodeTraversal.h40 static Node* next(const Node& current) { return traverseNextTemplate(current); } argument
41 static Node* next(const ContainerNode& current) { return traverseNextTemplate(current); } argument
42 static Node* next(const Node& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } argument
43 static Node* next(const ContainerNode& current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } argument
52 // Does a reverse pre-order traversal to find the node that comes before the current one in document order
87 inline Node* NodeTraversal::traverseNextTemplate(NodeType& current) argument
97 traverseNextTemplate(NodeType& current, const Node* stayWithin) argument
108 nextSkippingChildren(const Node& current) argument
115 nextSkippingChildren(const Node& current, const Node* stayWithin) argument
124 highestAncestorOrSelf(Node& current) argument
[all...]
/external/chromium_org/third_party/angle/src/libEGL/
H A Dmain.cpp27 Current *current = new Current(); local
28 current->error = EGL_SUCCESS;
29 current->API = EGL_OPENGL_ES_API;
30 current->display = EGL_NO_DISPLAY;
31 current->drawSurface = EGL_NO_SURFACE;
32 current->readSurface = EGL_NO_SURFACE;
34 if (!SetTLSValue(currentTLS, current))
40 return current;
45 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS)); local
46 SafeDelete(current);
108 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS)); local
117 Current *current = GetCurrentData(); local
124 Current *current = GetCurrentData(); local
131 Current *current = GetCurrentData(); local
138 Current *current = GetCurrentData(); local
145 Current *current = GetCurrentData(); local
152 Current *current = GetCurrentData(); local
159 Current *current = GetCurrentData(); local
166 Current *current = GetCurrentData(); local
173 Current *current = GetCurrentData(); local
180 Current *current = GetCurrentData(); local
[all...]
/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/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/third_party/angle/src/libGLESv2/
H A Dmain.cpp27 Current *current = new Current(); local
28 current->context = NULL;
29 current->display = NULL;
31 if (!SetTLSValue(currentTLS, current))
37 return current;
42 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS)); local
43 SafeDelete(current);
90 Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS)); local
93 // thread local storage (current) might not exist yet.
94 return (current
99 Current *current = GetCurrentData(); local
112 Current *current = GetCurrentData(); local
138 Current *current = GetCurrentData(); local
[all...]
/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();
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternalProfilers.cpp47 blink::Platform::current()->startHeapProfiling(prefix);
52 blink::Platform::current()->stopHeapProfiling();
57 blink::Platform::current()->dumpHeapProfiling(reason);
62 String text = blink::Platform::current()->getHeapProfile();

Completed in 7583 milliseconds

1234567891011>>