HomeSort by relevance Sort by last modified time
    Searched refs:current (Results 26 - 50 of 2185) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
current_32.h 20 #define current get_current() macro
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
current_32.h 20 #define current get_current() macro
  /external/chromium/net/disk_cache/
trace.cc 30 int current; member in struct:__anon4035::TraceBuffer
96 vsprintf_s(s_trace_buffer->buffer[s_trace_buffer->current], format, ap);
98 vsnprintf(s_trace_buffer->buffer[s_trace_buffer->current],
99 sizeof(s_trace_buffer->buffer[s_trace_buffer->current]), format,
103 s_trace_buffer->current++;
104 if (s_trace_buffer->current == kNumberOfEntries)
105 s_trace_buffer->current = 0;
121 int current = s_trace_buffer->current - num_traces; local
122 if (current < 0
    [all...]
  /external/chromium/chrome/browser/policy/
mock_configuration_policy_provider.cc 37 for (PolicyMap::const_iterator current = policy_map_.begin();
38 current != policy_map_.end(); ++current) {
39 store->Apply(current->first, current->second->DeepCopy());
  /external/webkit/Source/WebCore/css/
CSSSelectorList.h 59 inline CSSSelector* CSSSelectorList::next(CSSSelector* current)
62 while (!current->isLastInTagHistory())
63 current++;
64 return current->isLastInSelectorList() ? 0 : current + 1;
  /external/guava/guava/src/com/google/common/io/
MultiReader.java 33 private Reader current; field in class:MultiReader
42 * Closes the current reader and opens the next one, if any.
47 current = it.next().getInput();
52 if (current == null) {
55 int result = current.read(cbuf, off, len);
66 while (current != null) {
67 long result = current.skip(n);
78 return (current != null) && current.ready();
82 if (current != null)
    [all...]
  /external/v8/src/
handles-inl.h 41 return Isolate::Current();
71 Isolate* isolate = Isolate::Current();
72 v8::ImplementationUtilities::HandleScopeData* current = local
75 prev_next_ = current->next;
76 prev_limit_ = current->limit;
77 current->level++;
82 ASSERT(isolate == Isolate::Current());
83 v8::ImplementationUtilities::HandleScopeData* current = local
86 prev_next_ = current->next;
87 prev_limit_ = current->limit
98 v8::ImplementationUtilities::HandleScopeData* current = local
117 v8::ImplementationUtilities::HandleScopeData* current = local
134 v8::ImplementationUtilities::HandleScopeData* current = local
152 v8::ImplementationUtilities::HandleScopeData* current = local
    [all...]
splay-tree-inl.h 155 Node* current = root_;
156 while (current->right_ != NULL)
157 current = current->right_;
158 locator->bind(current);
167 Node* current = root_;
168 while (current->left_ != NULL)
169 current = current->left_;
170 locator->bind(current);
238 Node* current = root_; local
    [all...]
  /dalvik/dx/tests/087-ssa-local-vars/
Blort.java 48 * phi's. The key component here is the assignment of previous = current.
57 StringBuilder current = null; local
60 if (current == null) {
61 current = new StringBuilder(64);
63 current.length();
66 if (l == -1 || current.length() < 1) {
70 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
72 while (i < current.length()) {
73 char ch = current.charAt(i)
    [all...]
  /external/opencv/cvaux/src/
extendededges.cpp 46 //void icvCutContour( CvSeq* current, IplImage* image );
47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
61 CvSeq* current = contours; local
70 while( current )
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
93 if( current->v_next )
96 current = current->v_next;
102 while( !current->h_next )
104 current = current->v_prev
    [all...]
  /external/qemu/hw/
goldfish_device.c 37 struct goldfish_device *current; member in struct:bus_state
107 if(s->current) {
108 s->current->reported_state = 1;
109 s->current = s->current->next;
112 s->current = first_device;
114 while(s->current && s->current->reported_state == 1)
115 s->current = s->current->next
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
checkers.h 59 InputIterator current(begin), recent(begin);
62 for (current++; current != end; current++)
64 if (comp(*current, *recent))
70 recent = current;
98 InputIterator current(begin), recent(begin);
101 for (current++; current != end; current++
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 57 * to the given updated value if the current value {@code ==} the
73 * to the given updated value if the current value {@code ==} the
113 * Gets the current value held in the field of the given object managed
117 * @return the current value
131 int current = get(obj); local
132 if (compareAndSet(obj, current, newValue))
133 return current;
138 * Atomically increments by one the current value of the field of the
146 int current = get(obj); local
147 int next = current + 1
162 int current = get(obj); local
179 int current = get(obj); local
195 int current = get(obj); local
211 int current = get(obj); local
228 int current = get(obj); local
    [all...]
  /external/chromium/chrome/common/
guid.cc 19 char current = guid[i]; local
21 if (current != '-')
24 if (hexchars.find(current) == std::string::npos)
  /external/opencv/
WLNonFileByteStream.cpp 103 uchar *current = m_current; local
105 if( current+1 < m_end )
107 current[0] = (uchar)val;
108 current[1] = (uchar)(val >> 8);
109 m_current = current + 2;
121 uchar *current = m_current; local
123 if( current+3 < m_end )
125 current[0] = (uchar)val;
126 current[1] = (uchar)(val >> 8);
127 current[2] = (uchar)(val >> 16);
    [all...]
  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.cc 33 for (std::vector<std::string>::iterator current = cookie_list.begin();
34 current != cookie_list.end();
35 ++current) {
36 size_t position = (*current).find(kGoogleDomainSecureCookieId);
  /external/kernel-headers/original/asm-mips/
current.h 21 #define current get_current() macro
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceClientWalker.cpp 37 for (Iterator current = set.begin(); current != end; ++current)
38 m_clientVector[clientIndex++] = current->first;
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.cpp 54 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/chromium/net/base/
directory_lister_unittest.cc 27 MessageLoop::current()->Quit();
36 for (size_t previous = 0, current = 1;
37 current < file_list_.size();
38 previous++, current++) {
40 paths_[previous], paths_[current]));
47 for (size_t previous = 0, current = 1;
48 current < file_list_.size();
49 previous++, current++) {
52 !file_util::FileEnumerator::IsDirectory(file_list_[current])) {
56 file_util::FileEnumerator::GetFilename(file_list_[current])));
    [all...]
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 57 current = None
59 if current is None:
60 current = v
62 if current[1] + 1 == v[0] and current[2] == v[2]:
63 current = (current[0], v[1], v[2])
65 output.append(current)
66 current = v
67 if current is not None
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageProtocol.java 58 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...]
  /frameworks/compile/mclinker/lib/MC/
SymbolCategory.cpp 55 Category* current = m_pFile; local
56 while (NULL != current) {
57 Category* tmp = current;
58 current = current->next;
70 Category* current = m_pGlobal; local
73 while (NULL != current) {
74 if (current->type == target) {
75 current->end++;
79 if (!current->empty())
119 Category* current = m_pFile; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 84 * 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);
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, int extendedTypeID)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
mock_login_status_consumer.h 34 MessageLoop::current()->Quit();
39 MessageLoop::current()->Quit();
48 MessageLoop::current()->Quit();
57 MessageLoop::current()->Quit();
62 MessageLoop::current()->Quit();
67 MessageLoop::current()->Quit();
73 MessageLoop::current()->Quit();
79 MessageLoop::current()->Quit();

Completed in 5096 milliseconds

12 3 4 5 6 7 8 91011>>