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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_globals.cpp 15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); }
22 Globals::Globals() : search_paths_(), rdebug_() {
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); }
29 Globals* Globals::Get() {
crazy_linker_globals_unittest.cpp 13 TEST(Globals, Get) {
15 ASSERT_TRUE(Globals::Get());
16 ASSERT_TRUE(Globals::GetLibraries());
17 ASSERT_TRUE(Globals::GetSearchPaths());
18 ASSERT_TRUE(Globals::GetRDebug());
crazy_linker_globals.h 15 // All crazy linker globals are declared in this header.
19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
43 // Helper class to access the globals with scoped locking.
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); }
  /ndk/sources/android/crazy_linker/src/
crazy_linker_globals.cpp 15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); }
22 Globals::Globals() : search_paths_(), rdebug_() {
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); }
29 Globals* Globals::Get() {
crazy_linker_globals_unittest.cpp 13 TEST(Globals, Get) {
15 ASSERT_TRUE(Globals::Get());
16 ASSERT_TRUE(Globals::GetLibraries());
17 ASSERT_TRUE(Globals::GetSearchPaths());
18 ASSERT_TRUE(Globals::GetRDebug());
crazy_linker_globals.h 15 // All crazy linker globals are declared in this header.
19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
43 // Helper class to access the globals with scoped locking.
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); }
  /external/chromium_org/third_party/freetype/src/autofit/
afglobal.c 56 af_face_globals_compute_script_coverage( AF_FaceGlobals globals )
59 FT_Face face = globals->face;
61 FT_Byte* gscripts = globals->glyph_scripts;
67 FT_MEM_SET( globals->glyph_scripts,
69 globals->glyph_count );
105 gindex < (FT_ULong)globals->glyph_count &&
116 if ( gindex < (FT_ULong)globals->glyph_count &&
129 if ( gindex != 0 && gindex < (FT_ULong)globals->glyph_count )
138 if ( globals->module->fallback_script != AF_SCRIPT_NONE )
143 for ( nn = 0; nn < globals->glyph_count; nn++
165 AF_FaceGlobals globals = NULL; local
    [all...]
afmodule.c 54 AF_FaceGlobals globals; local
60 globals = (AF_FaceGlobals)face->autohint.data;
61 if ( !globals )
65 error = af_face_globals_new( face, &globals, module );
69 (FT_Pointer)globals;
76 *aglobals = globals;
103 AF_FaceGlobals globals; local
106 error = af_property_get_face_globals( prop->face, &globals, module );
108 globals->increase_x_height = prop->limit;
132 AF_FaceGlobals globals; local
153 AF_FaceGlobals globals; local
    [all...]
  /external/freetype/src/autofit/
afglobal.c 133 af_face_globals_compute_style_coverage( AF_FaceGlobals globals )
136 FT_Face face = globals->face;
138 FT_Byte* gstyles = globals->glyph_styles;
145 FT_MEM_SET( globals->glyph_styles,
147 globals->glyph_count );
180 globals->module->default_script )
194 gindex < (FT_ULong)globals->glyph_count &&
205 if ( gindex < (FT_ULong)globals->glyph_count &&
214 af_get_coverage( globals, style_class, gstyles );
219 af_get_coverage( globals, AF_STYLE_CLASSES_GET[dflt], gstyles )
312 AF_FaceGlobals globals = NULL; local
    [all...]
  /external/chromium_org/tools/site_compare/drivers/
__init__.py 11 keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
12 mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
13 windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
  /external/clang/test/CodeGenCXX/
arm64.cpp 2 // RUN: %clang_cc1 %s -triple=arm64-apple-ios -emit-llvm -o - | FileCheck -check-prefix=CHECK-GLOBALS %s
48 // Tested below because these globals get kindof oddly rearranged.
52 // CHECK-GLOBALS: @_ZTSN5test21BE = linkonce_odr hidden constant
53 // CHECK-GLOBALS: @_ZTIN5test21BE = linkonce_odr hidden constant { {{.*}}, i8* getelementptr inbounds ([11 x i8]* @_ZTSN5test21BE, i32 0, i32 0) }
56 // CHECK-GLOBALS: @_ZTSPN5test21BE = linkonce_odr hidden constant
57 // CHECK-GLOBALS: @_ZTIPN5test21BE = linkonce_odr hidden constant { {{.*}}, i8* getelementptr inbounds ([12 x i8]* @_ZTSPN5test21BE, i32 0, i32 0), i32 0, i8* bitcast
61 // CHECK-GLOBALS: @_ZTSN5test21CE = linkonce_odr hidden constant
62 // CHECK-GLOBALS: @_ZTIN5test21CE = linkonce_odr hidden constant { {{.*}}, i8* inttoptr (i64 add (i64 ptrtoint ([11 x i8]* @_ZTSN5test21CE to i64), i64 -9223372036854775808) to i8*) }
65 // CHECK-GLOBALS: @_ZTSPN5test21CE = linkonce_odr hidden constant
66 // CHECK-GLOBALS: @_ZTIPN5test21CE = linkonce_odr hidden constant { {{.*}}, i8* inttoptr (i64 add (i64 ptrtoint ([1 (…)
    [all...]
debug-info-global.cpp 4 // the globals list.
13 // CHECK: metadata [[GLOBALS:![0-9]*]], metadata {{![0-9]*}}, metadata !"{{.*}}", i32 {{[0-9]*}}} ; [ DW_TAG_compile_unit ]
15 // CHECK: [[GLOBALS]] = metadata !{metadata [[CNST:![0-9]*]]}
2006-11-20-GlobalSymbols.cpp 2 // Check to make sure debug symbols use the correct name for globals and
  /external/llvm/test/Linker/
2003-10-27-LinkOncePromote.ll 1 ; The linker should merge link-once globals into strong external globals,
  /external/chromium_org/third_party/skia/src/views/
SkEvent.cpp 305 SkEvent_Globals& globals = getGlobals(); local
307 globals.fEventMutex.acquire();
309 globals.fEventMutex.release();
323 SkEvent_Globals& globals = getGlobals(); local
325 globals.fEventMutex.acquire();
327 globals.fEventMutex.release();
336 SkEvent_Globals& globals = getGlobals(); local
341 bool wasEmpty = globals.fEventQHead == NULL;
343 if (globals.fEventQTail)
344 globals.fEventQTail->fNextEvent = evt
356 SkEvent_Globals& globals = getGlobals(); local
374 SkEvent_Globals& globals = getGlobals(); local
385 SkEvent_Globals& globals = getGlobals(); local
434 SkEvent_Globals& globals = getGlobals(); local
474 SkEvent_Globals& globals = getGlobals(); local
493 SkEvent_Globals& globals = getGlobals(); local
    [all...]
  /external/skia/src/views/
SkEvent.cpp 305 SkEvent_Globals& globals = getGlobals(); local
307 globals.fEventMutex.acquire();
309 globals.fEventMutex.release();
323 SkEvent_Globals& globals = getGlobals(); local
325 globals.fEventMutex.acquire();
327 globals.fEventMutex.release();
336 SkEvent_Globals& globals = getGlobals(); local
341 bool wasEmpty = globals.fEventQHead == NULL;
343 if (globals.fEventQTail)
344 globals.fEventQTail->fNextEvent = evt
356 SkEvent_Globals& globals = getGlobals(); local
374 SkEvent_Globals& globals = getGlobals(); local
385 SkEvent_Globals& globals = getGlobals(); local
434 SkEvent_Globals& globals = getGlobals(); local
474 SkEvent_Globals& globals = getGlobals(); local
493 SkEvent_Globals& globals = getGlobals(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTable.g 3 /* Scope of symbol names. Both globals and block rules need to push a new
5 * define a global scope and say that globals and block use this by saying
27 : globals (method)*
30 globals
38 NSLog( @"globals: \%@", [$Symbols::names toString] );
  /external/chromium_org/win8/metro_driver/
chrome_app_view.cc 54 struct Globals globals; variable in typeref:struct:Globals
152 if (send_alt_f4_mnemonic && globals.view &&
153 globals.view->core_window_hwnd() == ::GetForegroundWindow()) {
158 globals.view->core_window_hwnd(), &core_window_process_id);
160 globals.appview_msg_loop->PostDelayedTask(
166 globals.app_exit->Exit();
172 ::GetWindowRect(globals.view->core_window_hwnd() , &rect);
234 !globals.host_windows.empty() ? globals.host_windows.front().first : NULL
    [all...]
chrome_url_launch_handler.cc 23 globals.is_initial_activation = true;
24 globals.initial_activation_kind = winapp::Activation::ActivationKind_Launch;
76 globals.search_string = search_text;
80 if (!globals.is_initial_activation)
81 InitiateNavigationOrSearchRequest(NULL, globals.search_string.c_str());
92 globals.navigation_url = actual_url;
96 if (!globals.is_initial_activation)
97 InitiateNavigationOrSearchRequest(globals.navigation_url.c_str(), 0);
124 globals.navigation_url = GetUrlFromLaunchArgs(actual_launch_args);
126 << ", url=" << globals.navigation_ur
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
globals-gc-sections.cc 1 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=0
2 // RUN: %clangxx_asan %s -o %t -Wl,--gc-sections -ffunction-sections -mllvm -asan-globals=1
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Builtins.c 9 //////////////////// Globals.proto ////////////////////
13 //////////////////// Globals ////////////////////
26 PyObject *globals = PyObject_GetAttr($module_cname, PYIDENT("__dict__")); local
27 if (!globals) {
43 if (!PyDict_Contains(globals, name)) {
51 if (PyDict_SetItem(globals, name, value) < 0) {
64 return globals;
65 // d = PyDictProxy_New(globals);
66 // Py_DECREF(globals);
70 Py_XDECREF(globals);
84 PyObject* globals = __Pyx_Globals(); local
    [all...]
  /external/chromium_org/chrome/browser/
io_thread.cc 235 // See IOThread::Globals for details.
237 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
241 context->set_host_resolver(globals->host_resolver.get());
242 context->set_cert_verifier(globals->cert_verifier.get());
244 globals->transport_security_state.get());
246 globals->cert_transparency_verifier.get());
248 globals->http_auth_handler_factory.get());
249 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
251 globals->proxy_script_fetcher_http_transaction_factory.get())
509 IOThread::Globals* IOThread::globals() { function in class:IOThread
    [all...]
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/llvm/test/Bindings/llvm-c/
globals.ll 1 ; RUN: llvm-as < %s | llvm-c-test --module-list-globals | FileCheck %s
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
eval.h 13 PyObject *globals,

Completed in 1351 milliseconds

1 2 3 4 5 6 7 8 91011>>