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

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-10-20-GlobalDebug.c3 int global; variable
10 // CHECK: metadata !{i32 {{.*}}, i32 0, null, metadata !"global", metadata !"global", metadata !"", metadata !{{.*}}, i32 3, metadata !{{.*}}, i32 0, i32 1, i32* @global, null} ; [ 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/wpa_supplicant_8/wpa_supplicant/
H A Dwifi_display.h13 int wifi_display_init(struct wpa_global *global);
14 void wifi_display_deinit(struct wpa_global *global);
15 void wifi_display_enable(struct wpa_global *global, int enabled);
16 int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
17 int wifi_display_subelem_get(struct wpa_global *global, char *cmd,
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 Dwifi_display.c19 int wifi_display_init(struct wpa_global *global) argument
21 global->wifi_display = 1;
26 void wifi_display_deinit(struct wpa_global *global) argument
30 wpabuf_free(global->wfd_subelem[i]);
31 global->wfd_subelem[i] = NULL;
36 static int wifi_display_update_wfd_ie(struct wpa_global *global) argument
43 if (!global->wifi_display) {
46 p2p_set_wfd_ie_beacon(global->p2p, NULL);
47 p2p_set_wfd_ie_probe_req(global->p2p, NULL);
48 p2p_set_wfd_ie_probe_resp(global
182 wifi_display_enable(struct wpa_global *global, int enabled) argument
191 wifi_display_subelem_set(struct wpa_global *global, char *cmd) argument
235 wifi_display_subelem_get(struct wpa_global *global, char *cmd, char *buf, size_t buflen) argument
[all...]
/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/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/CodeGenCXX/
H A Druntimecc.cpp22 A global; member in namespace:test0
/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/lit_tests/
H A Ddeep_tail_call.cc10 // CHECK: AddressSanitizer: global-buffer-overflow
11 int global[10]; variable
13 void __attribute__((noinline)) call4(int i) { global[i+10]++; }
23 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 534 milliseconds

1234567891011>>