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

1234567891011>>

/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/test_data/
H A Derror.js4 var global = this;
6 if (global.throw_error) {
/external/llvm/test/MC/COFF/
H A Dlset0.s5 global = 456 define
6 .globl global
10 // GLOBAL: A global
H A Dsection-comdat-conflict.s6 .global bar
11 .global foo
/external/clang/test/CodeGen/
H A D2009-10-20-GlobalDebug.c3 int global; variable
13 // CHECK: !MDGlobalVariable(name: "global"
16 // CHECK-SAME: variable: i32* @global
H A Dasan-globals.cpp2 // RUN: echo "global:*blacklisted_global*" > %t.blacklist
8 int global; variable
9 int dyn_init_global = global;
20 // CHECK: ![[GLOBAL]] = !{{{.*}} ![[GLOBAL_LOC:[0-9]+]], !"global", i1 false, i1 false}
/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-357105.js7 var global = { };
15 global[1] = 15.5;
20 global = f(gc);
21 global = f(do_nothing);
23 global = f(do_nothing);
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-no-dummy-use-for-arguments-object.js11 var global = ""; variable
14 global.dummy = this;
/external/clang/test/SemaCXX/
H A Dwarn-address.cpp6 int global; variable
13 if (&global) {} // expected-warning{{always evaluate to 'true'}}
17 if (&global == 0) {} // expected-warning{{always false}}
/external/llvm/test/MC/X86/
H A Drelax-insn.s4 .global foo
/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 struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global);
17 int wifi_display_subelem_set(struct wpa_global *global, char *cmd);
18 int wifi_display_subelem_set_from_ies(struct wpa_global *global,
20 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) == NULL)
35 exitcode = wpa_supplicant_run(global);
37 wpa_supplicant_deinit(global);
/external/v8/test/webkit/
H A Ddfg-rshift-by-zero-eliminate-valuetoint32.js28 global = 32;
32 Ha = global >> 0;
34 global = Ha & 2;
/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/libunwind/src/aarch64/
H A Dsiglongjmp.S3 .global _UI_siglongjmp_cont
4 .global _UI_longjmp_cont
/external/lldb/test/functionalities/watchpoint/hello_watchpoint/
H A Dmain.c12 int32_t global = 10; // Watchpoint variable declaration. variable
18 printf("&global=%p\n", &global);
19 printf("about to write to 'global'...\n"); // Set break point at this line.
20 // When stopped, watch 'global' for write.
21 global = 20;
27 printf("global=%d\n", global);
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
H A Dmain.cpp12 int32_t global = 0; // Watchpoint variable declaration. variable
21 printf("&global=%p\n", &global);
22 printf("about to write to 'global'...\n"); // Set break point at this line.
24 modify(global);
26 printf("global=%d\n", global);
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
H A Dmain.cpp12 int32_t global = 0; // Watchpoint variable declaration. variable
20 printf("&global=%p\n", &global);
21 printf("about to write to 'global'...\n"); // Set break point at this line.
22 // When stopped, watch 'global',
23 // for the condition "global == 5".
25 modify(global);
27 printf("global=%d\n", global);
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/
H A Dmain.c12 int32_t global = 10; // Watchpoint variable declaration. variable
16 printf("&global=%p\n", &global);
17 printf("about to write to 'global'...\n"); // Set break point at this line.
18 // When stopped, watch 'global'.
19 global = 20;
23 printf("global=%d\n", global);
/external/lldb/test/python_api/watchpoint/condition/
H A Dmain.cpp12 int32_t global = 0; // Watchpoint variable declaration. variable
20 printf("&global=%p\n", &global);
21 printf("about to write to 'global'...\n"); // Set break point at this line.
22 // When stopped, watch 'global',
23 // for the condition "global == 5".
25 modify(global);
27 printf("global=%d\n", global);

Completed in 1132 milliseconds

1234567891011>>