HomeSort by relevance Sort by last modified time
    Searched full:current (Results 1 - 25 of 13957) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.cpp 42 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
44 if (current)
46 TlsSetValue(currentTLS, current);
48 current->error = EGL_SUCCESS;
49 current->API = EGL_OPENGL_ES_API;
50 current->display = EGL_NO_DISPLAY;
51 current->drawSurface = EGL_NO_SURFACE
58 void *current = TlsGetValue(currentTLS); local
68 void *current = TlsGetValue(currentTLS); local
89 Current *current = (Current*)TlsGetValue(currentTLS); local
96 Current *current = (Current*)TlsGetValue(currentTLS); local
103 Current *current = (Current*)TlsGetValue(currentTLS); local
110 Current *current = (Current*)TlsGetValue(currentTLS); local
117 Current *current = (Current*)TlsGetValue(currentTLS); local
124 Current *current = (Current*)TlsGetValue(currentTLS); local
131 Current *current = (Current*)TlsGetValue(currentTLS); local
138 Current *current = (Current*)TlsGetValue(currentTLS); local
145 Current *current = (Current*)TlsGetValue(currentTLS); local
152 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/
background.html 6 var current = min;
9 chrome.browserAction.setIcon({path:"icon" + current + ".png"});
10 current++;
12 if (current > max)
13 current = min;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSuggestionWrapper.java 26 * Gets the current suggestion.
28 protected abstract Suggestion current(); method in class:AbstractSuggestionWrapper
31 return current().getShortcutId();
35 return current().getSuggestionFormat();
39 return current().getSuggestionIcon1();
43 return current().getSuggestionIcon2();
47 return current().getSuggestionIntentAction();
51 return current().getSuggestionIntentComponent();
55 return current().getSuggestionIntentDataString();
59 return current().getSuggestionIntentExtraData()
    [all...]
  /external/ipsec-tools/
README.google 1 NOTICE file in current directory created by concatenating all NOTICE
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.cpp 34 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)
57 void *current = TlsGetValue(currentTLS); local
78 Current *current = (Current*)TlsGetValue(currentTLS); local
91 Current *current = (Current*)TlsGetValue(currentTLS); local
98 Current *current = (Current*)TlsGetValue(currentTLS); local
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 34 Child current = children[index]; local
35 if (current == null) {
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
38 children[index] = current;
39 return current;
44 if (current.hash == hash
45 && current.uri.compareTo(uri) == 0
46 && current.localName.compareTo(localName) == 0) {
48 return current;
51 previous = current;
69 Child current = children[index]; local
    [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...]
global-handles.cc 67 if (state_ != DESTROYED) Destroy(Isolate::Current()->global_handles());
266 Chunk* current = current_; local
267 ASSERT(current != NULL); // At least a single block must by allocated
269 Chunk* previous = current->previous;
270 delete current;
271 current = previous;
272 } while (current != NULL);
385 for (Node* current = head_; current != NULL; current = current->next())
    [all...]
  /external/webkit/Source/JavaScriptCore/API/tests/
Node.c 52 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/oprofile/libutil/
op_get_time.h 3 * Get current time as a string
20 * op_get_time - get current date and time
22 * Returns a string representing the current date
  /dalvik/dx/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
  /frameworks/base/test-runner/src/junit/runner/
Version.java 4 * This class defines the current version of JUnit
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 55 * Gets the current value.
57 * @return the current value
90 int current = get(); local
91 if (compareAndSet(current, newValue))
92 return current;
98 * if the current value {@code ==} the expected value.
111 * if the current value {@code ==} the expected value.
126 * Atomically increments by one the current value.
132 int current = get(); local
133 int next = current + 1
146 int current = get(); local
161 int current = get(); local
175 int current = get(); local
189 int current = get(); local
204 int current = get(); local
    [all...]
AtomicLong.java 69 * Gets the current value.
71 * @return the current value
104 long current = get(); local
105 if (compareAndSet(current, newValue))
106 return current;
112 * if the current value {@code ==} the expected value.
125 * if the current value {@code ==} the expected value.
140 * Atomically increments by one the current value.
146 long current = get(); local
147 long next = current + 1
160 long current = get(); local
175 long current = get(); local
189 long current = get(); local
203 long current = get(); local
218 long current = get(); local
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
70 Current=Temp
    [all...]
LVC_Core_MixSoft_1St_D16C31_WRA.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
64 Current=Temp
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 204 * 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)
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)
229 current = makeNodeIdentity(current)
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRow.cpp 47 for (RenderObject* current = firstChild(); current; current = current->nextSibling()) {
48 if (current->isRenderMathMLBlock()) {
49 RenderMathMLBlock* block = toRenderMathMLBlock(current);
54 } else if (current->isBoxModelObject()) {
55 RenderBoxModelObject* box = toRenderBoxModelObject(current);
75 for (RenderObject* current = firstChild(); current; current = current->nextSibling())
    [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/chromium/net/disk_cache/
trace.cc 30 int current; member in struct:__anon3642::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...]
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 32 * Skips forwards or backwards {@code byteCount} bytes from the current position.
37 * Copies {@code byteCount} bytes from the current position into {@code dst}, starting at
38 * {@code dstOffset}, and advances the current position {@code byteCount} bytes.
43 * Returns the byte at the current position, and advances the current position one byte.
48 * Returns the 32-bit int at the current position, and advances the current position four bytes.
53 * Copies {@code intCount} 32-bit ints from the current position into {@code dst}, starting at
54 * {@code dstOffset}, and advances the current position {@code 4 * intCount} bytes.
59 * Returns the 16-bit short at the current position, and advances the current position two bytes
    [all...]
  /external/clang/test/CodeGenObjC/
super-classmethod-category.m 7 @interface CURRENT : SUPER
11 @implementation CURRENT(CAT)
  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /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/freetype/src/base/
ftgloadr.c 51 /* loader.current Describes the top of the stack, on which a new */
55 /* Prepare Set up `loader.current' for addition of a new glyph */
57 /* Add Add the `current' glyph image to the `base' one, */
90 FT_GlyphLoad current = &loader->current; local
97 *current = *base;
140 /* re-adjust the `current' outline fields */
145 FT_Outline* current = &loader->current.outline; local
148 current->points = base->points + base->n_points
188 FT_GlyphLoad current = &loader->current; local
207 FT_Outline* current = &loader->current.outline; local
284 FT_GlyphLoad current = &loader->current; local
309 FT_GlyphLoad current = &loader->current; local
326 FT_GlyphLoad current; local
    [all...]

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 91011>>