Searched refs:global (Results 1 - 25 of 477) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-10-20-GlobalDebug.c3 int global; variable
10 // CHECK: !15 = metadata !{i32 {{.*}}, i32 0, null, metadata !"global", metadata !"global", metadata !"", metadata !6, i32 3, metadata !9, i32 0, i32 1, i32* @global} ; [ DW_TAG_variable ]
/external/v8/test/mjsunit/regress/
H A Dregress-1150.js28 // Test that Object.keys is working correctly on the global object.
31 var global = (function () { return this; }) ();
32 var keys = Object.keys(global);
H A Dregress-1360.js31 var global = this;
33 function non_strict() { assertEquals(global, this); }
H A Dregress-267.js30 var global = (function(){ return this; })();
35 assertEquals(global, obj, "Should be the global object.");
H A Dregress-737588.js29 goog.global = this;
31 return goog.global.eval(script);
H A Dregress-1583.js55 var global = 'horse'; variable
56 var p = { get global() { return global; }};
57 assertEquals('horse', p.global);
/external/iproute2/etc/iproute2/
H A Drt_scopes4 0 global
/external/v8/test/mjsunit/
H A Dglobal-ic.js32 function LoadFromGlobal(global) { return global.x; }
33 function StoreToGlobal(global, value) { global.x = value; }
34 function CallOnGlobal(global) { return global.f(); }
/external/wpa_supplicant_6/wpa_supplicant/
H A Dmain_none.c25 struct wpa_global *global; local
30 global = wpa_supplicant_init(&params);
31 if (global == NULL)
37 if (wpa_supplicant_add_iface(global, &iface) == NULL)
41 exitcode = wpa_supplicant_run(global);
43 wpa_supplicant_deinit(global);
H A Dmain_symbian.cpp27 struct wpa_global *global; local
32 global = wpa_supplicant_init(&params);
33 if (global == NULL)
39 if (wpa_supplicant_add_iface(global, &iface) == NULL)
43 exitcode = wpa_supplicant_run(global);
45 wpa_supplicant_deinit(global);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain_none.c19 struct wpa_global *global; local
24 global = wpa_supplicant_init(&params);
25 if (global == NULL)
31 if (wpa_supplicant_add_iface(global, &iface) == NULL)
35 exitcode = wpa_supplicant_run(global);
37 wpa_supplicant_deinit(global);
H A Dmain_symbian.cpp21 struct wpa_global *global; local
26 global = wpa_supplicant_init(&params);
27 if (global == NULL)
33 if (wpa_supplicant_add_iface(global, &iface) == NULL)
37 exitcode = wpa_supplicant_run(global);
39 wpa_supplicant_deinit(global);
/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DLocalAndGlobalData.java20 * This is a special implementation of ChainedData to be used for holding the local and global Data
21 * objects (like local and global HDFs in Clearsilver). It prevents writes and modifications to the
22 * global Data object and applies them all to the local data object.
30 * global-scoped HDF that can be read from the template renderer. Part of the backwards
34 * @param global application global HDF data that should be read but not written to from the
37 public LocalAndGlobalData(Data local, Data global) { argument
38 this(local, global, false);
43 * global-scoped HDF that can be read from the template renderer. Part of the backwards
44 * compatibility with JNI Clearsilver and its globalHdf support. We wrap the global HD
56 LocalAndGlobalData(Data local, Data global, boolean allowGlobalDataModification) argument
61 prepareGlobal(Data global, boolean allowGlobalDataModification) argument
[all...]
/external/compiler-rt/BlocksRuntime/tests/
H A Dglobalexpression.c12 int global; variable
14 void (^gblock)(int) = ^(int x){ global = x; };
18 if (global != 1) {
19 printf("%s: *** did not set global to 1\n", argv[0]);
24 printf("global copy %p not a no-op %p\n", (void *)gblockcopy, (void *)gblock);
29 if (global != 3) {
30 printf("%s: *** did not set global to 3\n", argv[0]);
35 if (global != 5) {
36 printf("%s: *** did not set global to 5\n", argv[0]);
/external/clang/test/FixIt/
H A Dtypo-crash.cpp22 T global(); // expected-note {{'A::B::global' declared here}}
28 T A::global(); // expected-error {{out-of-line definition of 'global' does not match any declaration in namespace 'PR12297::A'; did you mean 'A::B::global'?}}
/external/valgrind/main/none/tests/
H A Dtls_so.c8 extern __thread int global;
22 return &global;
/external/clang/test/Index/
H A Dcomplete-lambdas.cpp3 int global; variable
/external/llvm/test/MC/ELF/
H A Drename.s16 .global defined1
H A Dtype.s4 .global foo
8 .global bar
16 .global ifunc
H A Ddiff.s3 .global zed
H A Ddiff2.s4 .global zed
/external/compiler-rt/lib/asan/output_tests/
H A Ddeep_tail_call.cc1 // Check-Common: AddressSanitizer global-buffer-overflow
2 int global[10]; variable
4 void __attribute__((noinline)) call4(int i) { global[i+10]++; }
14 return global[0];
/external/chromium/chrome/browser/resources/shared/js/
H A Dutil.js6 * The global object.
9 const global = this;
31 var old = global[callbackName]; function
32 global[callbackName] = function() {
34 global[callbackName] = old;
37 return callback.apply(global, args);
/external/jsilver/src/org/clearsilver/
H A DDelegatedCs.java53 public void setGlobalHDF(HDF global) { argument
54 if (global != null && global instanceof DelegatedHdf) {
55 global = ((DelegatedHdf)global).getHdf();
57 getCs().setGlobalHDF(global);

Completed in 362 milliseconds

1234567891011>>