HomeSort by relevance Sort by last modified time
    Searched full:global (Results 226 - 250 of 4239) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/giflib/
gif_err.c 55 Err = "Neither Global Nor Local color map";
88 Err = "Neither Global Nor Local color map";
  /external/icu4c/common/
umutex.c 17 * 11/22/99 aliu Make non-global mutex autoinitialize [j151]
76 * To make this work, ICU uses the _ICU GLobal Mutex_ to synchronize the lazy init
77 * of other ICU mutexes. For the global mutex itself, we need some other mechanism
82 * The solution for the global mutex init is platform dependent.
88 * InitializeCriticalSection() must be called. If the global mutex does not
121 * the global mutex as well as for other mutexes in the pool.
134 * Note: Non-global mutex checking only happens if there is no custom
142 static int32_t gRecursionCount = 0; /* detect global mutex locking */
143 static int32_t gRecursionCountPool[MAX_MUTEXES]; /* ditto for non-global */
180 and that the global mutex variable is still needed in that case. *
    [all...]
  /external/jpeg/
jmemmac.c 81 GLOBAL(void *)
87 GLOBAL(void)
101 GLOBAL(void FAR *)
107 GLOBAL(void)
118 GLOBAL(long)
204 GLOBAL(void)
271 GLOBAL(long)
285 GLOBAL(void)
  /external/opencore/doc/oscl_html/
oscl__init_8h.html 9 <hr><h1>oscl_init.h File Reference</h1>Global oscl initialization.
23 Global oscl initialization.
osclconfig__global__new__delete_8h-source.html 12 00004 <span class="comment">//This file contains overloads for the global new/delete operators</span>
14 00006 <span class="comment">//or where it is desirable to overload the existing global new/delete</span>
  /external/skia/src/core/
SkBlitRow.h 24 @param alpha A global alpha to be applied to all of the src colors
46 @param alpha global alpha to be applied to all src colors
  /external/v8/test/es5conform/
harness-adapt.js 28 var global = this;
45 sth.call(this, global);
  /external/v8/test/mjsunit/compiler/
globals.js 28 // Test references and assignments to global variables.
31 // Test compilation of a global variable store.
  /external/v8/test/mjsunit/
global-deleted-property-ic.js 34 // Introduce a global variable and make sure we load that from LoadX.
38 // Delete the global variable and make sure we get back to loading from
this.js 30 assertFalse(this == null); // the global object shouldn't be null or undefined
31 assertEquals('[object global]', String(this));
  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 188 // Linked list of all global objects that use the same JSGlobalData.
193 // replaces the global object's associated property.
327 GlobalPropertyInfo& global = globals[i]; local
328 ASSERT(global.attributes & DontDelete);
329 SymbolTableEntry newEntry(index, global.attributes);
330 symbolTable().add(global.identifier.ustring().rep(), newEntry);
331 registerAt(index) = global.value;
407 // dynamic global object must be set since code is running
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/
12.2-1.js 29 described in section 10.1.3. Otherwise, they are defined with global
30 scope, that is, they are created as members of the global object, as
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-001.js 70 AddTestCase( re + ".global",
72 re.global );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
replace-001.js 21 * regexp.global is false, or all occurrences if regexp.global is true.
  /external/webkit/WebCore/bindings/v8/specialization/
V8BindingDOMWindow.h 46 // Set dialog arguments on the global object of the new frame.
51 context->Global()->Set(v8::String::New("dialogArguments"), dialogArgs);
  /frameworks/base/awt/org/apache/harmony/awt/internal/nls/
MsgHelp.java 53 Logger.global.warning("Couldn't read resource bundle: " +
57 Logger.global.warning("Couldn't find resource bundle: " +
  /frameworks/base/awt/org/apache/harmony/beans/internal/nls/
MsgHelp.java 53 Logger.global.warning("Couldn't read resource bundle: " +
57 Logger.global.warning("Couldn't find resource bundle: " +
  /frameworks/base/opengl/libagl/
fixed_asm.S 22 .global gglFloatToFixed
24 .global gglFloatToFixedFast
  /sdk/traceview/src/com/android/traceview/
Call.java 34 /** global start time */
37 /** global end time */
  /system/core/libcutils/
atomic-android-arm.S 26 .global android_atomic_write
29 .global android_atomic_inc
31 .global android_atomic_dec
34 .global android_atomic_add
36 .global android_atomic_and
38 .global android_atomic_or
41 .global android_atomic_swap
44 .global android_atomic_cmpxchg
memset32.S 24 .global android_memset32
26 .global android_memset16
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
VariableStack.java 417 * Set a global variable or parameter in the global stack frame.
420 * @param index Local variable index relative to the global stack frame
431 * Get a global variable or parameter from the global stack frame.
437 * @param index Global variable index relative to the global stack
458 * Get a global variable or parameter from the global stack frame.
464 * @param index Global variable index relative to the global stac
    [all...]
  /external/v8/samples/
lineprocessor.cc 59 * API of 2 global functions: "read_line" and "print". It should read input
185 // Create a template for the global object.
186 v8::Handle<v8::ObjectTemplate> global = v8::ObjectTemplate::New(); local
188 // Bind the global 'print' function to the C++ Print callback.
189 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
192 // Bind the global 'read_line' function to the C++ Print callback.
193 global->Set(v8::String::New("read_line"),
199 v8::Handle<v8::Context> context = v8::Context::New(NULL, global);
261 v8::Context::GetCurrent()->Global()->Get(fun_name);
266 printf("Error: Script does not declare 'ProcessLine' global function.\n")
    [all...]
shell.cc 52 // Create a template for the global object.
53 v8::Handle<v8::ObjectTemplate> global = v8::ObjectTemplate::New(); local
54 // Bind the global 'print' function to the C++ Print callback.
55 global->Set(v8::String::New("print"), v8::FunctionTemplate::New(Print));
56 // Bind the global 'read' function to the C++ Read callback.
57 global->Set(v8::String::New("read"), v8::FunctionTemplate::New(Read));
58 // Bind the global 'load' function to the C++ Load callback.
59 global->Set(v8::String::New("load"), v8::FunctionTemplate::New(Load));
61 global->Set(v8::String::New("quit"), v8::FunctionTemplate::New(Quit));
63 global->Set(v8::String::New("version"), v8::FunctionTemplate::New(Version))
    [all...]
  /external/wpa_supplicant/
eloop.h 68 * @eloop_ctx: Registered callback context data (global user_data from
78 * eloop_init() - Initialize global event loop data
79 * @user_data: Pointer to global data passed as eloop_ctx to signal handlers
83 * can be used to configure a global (to the process) pointer that will be
235 * Signals are 'global' events and there is no local eloop_data pointer like
236 * with other handlers. The global user_data pointer registered with
254 * Signals are 'global' events and there is no local eloop_data pointer like
255 * with other handlers. The global user_data pointer registered with
278 * Signals are 'global' events and there is no local eloop_data pointer like
279 * with other handlers. The global user_data pointer registered wit
    [all...]

Completed in 678 milliseconds

1 2 3 4 5 6 7 8 91011>>