Searched defs:current (Results 1 - 25 of 430) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/
H A Dguid.cc19 char current = guid[i]; local
21 if (current != '-')
24 if (hexchars.find(current) == std::string::npos)
/external/kernel-headers/original/asm-mips/
H A Dcurrent.h21 #define current get_current() macro
/external/kernel-headers/original/asm-x86/
H A Dcurrent_32.h15 #define current get_current() macro
/external/quake/quake/src/QW/client/
H A Dconsole.h29 int current; // line where next message will be printed member in struct:__anon11319
30 int x; // offset in current line for next print
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.cpp54 int current = 0; local
56 current = scheme.end() + 1; // Advance over the ':' at the end of the scheme.
61 current = username.end() + 1; // Advance over the '@' or ':' at the end.
67 current = password.end() + 1; // Advance over the '@' at the end.
73 current = host.end();
81 current = port.end();
87 current = path.end();
95 current = query.end();
107 return current;
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java84 * Traverse to the next node after the current node.
88 * @param current The current node of the traversal. This is the last known
91 * should be set equal to current. Note that in order to test whether
97 public abstract int next(int context, int current); argument
100 * Traverse to the next node after the current node that is matched
105 * @param current The current node of the traversal. This is the last known
108 * should be set equal to current. Note that in order to test whether
115 public abstract int next(int context, int current, in argument
[all...]
/external/llvm/lib/Support/
H A DMemoryObject.cpp20 uint64_t current = address; local
23 if (current + size > limit)
26 while (current - address < size) {
27 if (readByte(current, &buf[(current - address)]))
30 current++;
34 *copied = current - address;
/external/v8/src/
H A Dproperty.cc35 LookupResult* current = this; // Could be NULL. local
36 while (current != NULL) {
37 visitor->VisitPointer(BitCast<Object**>(&current->holder_));
38 current = current->next_;
/external/webkit/LayoutTests/fast/encoding/resources/
H A Dparser-tests.js21 var current = 0; variable
25 var s = current + '';
43 li.value = current;
46 current += 1;
47 if (current <= max)
59 current = c;
/external/webkit/Source/WebCore/css/
H A DCSSSelectorList.h59 inline CSSSelector* CSSSelectorList::next(CSSSelector* current) argument
62 while (!current->isLastInTagHistory())
63 current++;
64 return current->isLastInSelectorList() ? 0 : current + 1;
/external/webkit/Source/WebCore/html/
H A DHTMLNameCollection.cpp45 Node* current; local
47 current = base()->firstChild();
49 current = previous->traverseNextNode(base());
51 for (; current; current = current->traverseNextNode(base())) {
52 if (!current->isElementNode())
54 Element* e = static_cast<Element*>(current);
/external/webkit/Source/WebKit2/Platform/
H A DRunLoop.cpp38 s_mainRunLoop = RunLoop::current();
41 RunLoop* RunLoop::current() function in class:RunLoop
/external/chromium/base/
H A Devent_recorder.h40 static EventRecorder* current() { function in class:base::EventRecorder
/external/chromium/base/metrics/
H A Dstats_table.h56 static StatsTable* current() { return global_table_; } function in class:base::StatsTable
/external/icu4c/common/unicode/
H A Dcaniter.h89 * Gets the NFD form of the current source we are iterating over.
172 // current is used in iterating to combine pieces
173 int32_t *current; member in class:CanonicalIterator
/external/icu4c/i18n/
H A Ducol_bld.h46 uint32_t current; member in struct:__anon5885
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DMessageProtocol.java58 private ByteBuffer current; field in class:MessageProtocol
112 if( current == null ) {
142 current = ByteBuffer.allocate(size);
145 if( current.remaining() <= buffer.remaining() ) {
147 // copy what we can into current, create a message,
151 int extra = buffer.remaining() - current.remaining();
152 buffer.limit( buffer.position() + current.remaining() );
155 current.put( buffer );
156 current.flip();
161 createMessage( current );
[all...]
/external/openssh/openbsd-compat/
H A Dsigact.c69 sigset_t current = sigsetmask(0); local
77 *omask = current;
80 current |= *mask;
82 current &= ~*mask;
84 current = *mask;
86 sigsetmask(current);
/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.c52 NodeLink* current; local
54 for (currentHandle = &node->childNodesTail, current = *currentHandle; current; currentHandle = &current->prev, current = *currentHandle) {
55 if (current->node == child) {
56 Node_deref(current->node);
57 *currentHandle = current->prev;
58 free(current);
67 NodeLink* current; local
[all...]
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.cpp94 MarkSet& current = m_markSets.last(); local
95 ASSERT(current.m_values);
96 JSValue* end = current.m_end;
97 ASSERT(current.m_values);
98 ASSERT(current.m_values != end);
100 ASSERT(current.m_values != end);
101 JSValue value = *current.m_values;
102 current.m_values++;
106 if (current.m_values == end) {
115 if (current
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DStackBounds.h58 void* current() const function in class:WTF::StackBounds
77 ? current() >= recursionLimit(minAvailableDelta)
78 : current() <= recursionLimit(minAvailableDelta);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dtokens.h61 TokenBlock *current; member in struct:TokenStream_Rec
66 int current; member in struct:TokenBlock_Rec
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dmain.cpp34 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current)); local
36 if (current)
38 TlsSetValue(currentTLS, current);
40 current->context = NULL;
41 current->display = NULL;
47 void *current = TlsGetValue(currentTLS); local
49 if (current)
51 LocalFree((HLOCAL)current);
57 void *current = TlsGetValue(currentTLS); local
59 if (current)
78 Current *current = (Current*)TlsGetValue(currentTLS); local
91 Current *current = (Current*)TlsGetValue(currentTLS); local
98 Current *current = (Current*)TlsGetValue(currentTLS); local
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DRetainedDOMInfo.cpp72 Node* current = m_root; local
73 while (current) {
74 current = current->traverseNextNode(m_root);
/external/chromium/base/test/
H A Dtest_file_util_posix.cc59 FilePath current = source_dir; local
66 while (success && !current.empty()) {
67 // |current| is the source path, including source_dir, so paste
69 std::string suffix(&current.value().c_str()[source_dir.value().size()]);
85 if (CopyFile(current, target_path)) {
95 current.value();
98 current = traversal.Next();

Completed in 538 milliseconds

1234567891011>>