Searched refs:global (Results 176 - 200 of 747) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
H A DcolorSuggestionPicker.js26 var global = {
36 global.argumentsReceived = true;
43 global.params = args;
60 if (global.argumentsReceived)
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
H A Dx86nasm.pl47 # prepend global references with optional underscore
96 my $global=($func !~ /^_/);
101 &::LABEL($func,$global?"$begin":"$nmdecor$func");
104 push(@out,"${drdecor}global $func\n") if ($global);
107 push(@out,"$begin:\n") if ($global);
137 { push(@out,"${drdecor}global\t".&::LABEL($_[0],$nmdecor.$_[0])."\n"); }
H A Dx86gas.pl74 # prepend global references with optional underscore
102 my $global=($func !~ /^_/);
105 &::LABEL($func,$global?"$begin":"$nmdecor$func");
108 push(@out,".globl\t$func\n") if ($global);
110 { push(@out,".def\t$func;\t.scl\t".(3-$global).";\t.type\t32;\t.endef\n"); }
117 push(@out,"$begin:\n") if ($global);
/external/chromium_org/v8/src/
H A Dcollection.js32 // var $Array = global.Array;
34 var $Set = global.Set;
35 var $Map = global.Map;
36 var $WeakMap = global.WeakMap;
37 var $WeakSet = global.WeakSet;
H A Dgenerator.js32 // var $Function = global.Function;
66 var global_receiver = %GlobalReceiver(global);
H A Dsymbol.js32 // var $Array = global.Array;
34 var $Symbol = global.Symbol;
H A Dtypedarray.js32 // var $Array = global.Array;
73 var buffer = new global.ArrayBuffer(byteLength);
274 SetupTypedArray(1, "Uint8Array", global.Uint8Array, 1);
275 SetupTypedArray(2, "Int8Array", global.Int8Array, 1);
276 SetupTypedArray(3, "Uint16Array", global.Uint16Array, 2);
277 SetupTypedArray(4, "Int16Array", global.Int16Array, 2);
278 SetupTypedArray(5, "Uint32Array", global.Uint32Array, 4);
279 SetupTypedArray(6, "Int32Array", global.Int32Array, 4);
280 SetupTypedArray(7, "Float32Array", global.Float32Array, 4);
281 SetupTypedArray(8, "Float64Array", global
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-heap-profiler.cc184 // Verify, that JS global object of env2 has '..2' properties.
218 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
220 GetProperty(global, v8::HeapGraphEdge::kProperty, "x");
247 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
249 GetProperty(global, v8::HeapGraphEdge::kProperty, "boundFunction");
286 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
287 for (int i = 0, count = global->GetChildrenCount(); i < count; ++i) {
288 const v8::HeapGraphEdge* prop = global->GetChild(i);
289 CHECK_EQ(global, prop->GetFromNode());
292 GetProperty(global, v
315 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
378 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
400 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
420 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>(); local
1029 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1424 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1455 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1477 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1512 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1600 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1634 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1662 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1741 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1769 const v8::HeapGraphNode* global = edge->GetToNode(); local
1812 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1833 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1873 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1907 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
1955 const v8::HeapGraphNode* global = GetGlobalObject(snapshot); local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dkeyed-call-ic.js31 var global = this;
41 assertEquals("[object global]", this[toStringName]());
42 assertEquals("[object global]", global[toStringName]());
45 assertEquals("[object global]", this[toStringName]());
46 assertEquals("[object global]", global[toStringName]());
144 // Calling on global object
148 assertEquals(expect, global[key]());
/external/clang/test/CXX/temp/temp.spec/
H A Dno-body.cpp36 // Explicit specializations expected in global scope
40 template<> struct x0<int> { }; // expected-error {{class template specialization of 'x0' must originally be declared in the global scope}}
48 // thus also complain about not being in global scope.
54 expected-error {{class template specialization of 'x1' must originally be declared in the global scope}}
/external/openssl/crypto/perlasm/
H A Dx86nasm.pl47 # prepend global references with optional underscore
96 my $global=($func !~ /^_/);
101 &::LABEL($func,$global?"$begin":"$nmdecor$func");
104 push(@out,"${drdecor}global $func\n") if ($global);
107 push(@out,"$begin:\n") if ($global);
137 { push(@out,"${drdecor}global\t".&::LABEL($_[0],$nmdecor.$_[0])."\n"); }
H A Dx86gas.pl74 # prepend global references with optional underscore
102 my $global=($func !~ /^_/);
105 &::LABEL($func,$global?"$begin":"$nmdecor$func");
108 push(@out,".globl\t$func\n") if ($global);
110 { push(@out,".def\t$func;\t.scl\t".(3-$global).";\t.type\t32;\t.endef\n"); }
117 push(@out,"$begin:\n") if ($global);
/external/v8/test/mjsunit/
H A Dkeyed-call-ic.js31 var global = this;
41 assertEquals("[object global]", this[toStringName]());
42 assertEquals("[object global]", global[toStringName]());
45 assertEquals("[object global]", this[toStringName]());
46 assertEquals("[object global]", global[toStringName]());
144 // Calling on global object
148 assertEquals(expect, global[key]());
/external/chromium_org/third_party/skia/src/opts/
H A Dmemset.arm.S20 .global arm_memset32
22 .global arm_memset16
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp3 struct global { struct
51 decltype(int())::global j; // expected-error{{'decltype(int())' (aka 'int') is not a class, namespace, or scoped enumeration}}
/external/clang/test/Sema/
H A Dwarn-type-safety.cpp5 #define OMPI_PREDEFINED_GLOBAL(type, global) ((type) &(global))
/external/libvpx/libvpx/build/make/
H A Dads2gas.pl151 s/EXPORT\s+\|([\$\w]*)\|/.global $1 \n\t.type $1, function/;
152 s/IMPORT\s+\|([\$\w]*)\|/.global $1/;
154 s/EXPORT\s+([\$\w]*)/.global $1/;
155 s/export\s+([\$\w]*)/.global $1/;
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DTelURLImpl.java90 /** Returns <code>true</code> if this TelURL is global i.e. if the TelURI
91 * has a global phone user.
93 * @return <code>true</code> if this TelURL represents a global phone user,
108 /** Sets phone user of this TelURL to be either global or local. The default
111 * @param global - the boolean value indicating if the TelURL has a global
114 public void setGlobal(boolean global) { argument
115 this.telephoneNumber.setGlobal(global);
/external/skia/src/opts/
H A Dmemset.arm.S20 .global arm_memset32
22 .global arm_memset16
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain_winsvc.c9 * HKEY_LOCAL_MACHINE\\SOFTWARE\\%wpa_supplicant. This level includes global
61 static int read_interface(struct wpa_global *global, HKEY _hk, argument
122 if (wpa_supplicant_add_iface(global, &iface) == NULL) {
138 struct wpa_global *global; local
185 global = wpa_supplicant_init(&params);
186 if (global == NULL) {
222 if (read_interface(global, ihk, name) < 0)
229 exitcode = wpa_supplicant_run(global);
231 wpa_supplicant_deinit(global);
/external/valgrind/main/drd/scripts/
H A Ddownload-and-build-splash2.in143 + DRD_IGNORE_VAR(global->pbar_count);
145 + i < sizeof(global->task_queue) / sizeof(global->task_queue[0]);
148 + DRD_IGNORE_VAR(global->task_queue[i].n_tasks);
150 + DRD_IGNORE_VAR(global->element_buf);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DPageScriptDebugServer.cpp55 // Test that context has associated global dom window object.
56 v8::Handle<v8::Object> global = context->Global();
57 if (global.IsEmpty())
60 global = global->FindInstanceInPrototypeChain(V8Window::GetTemplate(context->GetIsolate(), worldTypeInMainThread(context->GetIsolate())));
61 if (global.IsEmpty())
H A DWorkerScriptController.cpp116 // Create a new JS object and use it as the prototype for the shadow global object.
248 v8::Handle<v8::Object> global = context->Global(); local
249 global = global->FindInstanceInPrototypeChain(V8WorkerGlobalScope::GetTemplate(context->GetIsolate(), WorkerWorld));
251 if (global.IsEmpty())
253 WorkerGlobalScope* workerGlobalScope = V8WorkerGlobalScope::toNative(global);
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Dia64cpuid.S5 .global OPENSSL_cpuid_setup#
11 .global OPENSSL_rdtsc#
18 .global OPENSSL_atomic_add#
47 .global OPENSSL_wipe_cpu#
130 .global OPENSSL_cleanse#
/external/openssl/crypto/
H A Dia64cpuid.S5 .global OPENSSL_cpuid_setup#
11 .global OPENSSL_rdtsc#
18 .global OPENSSL_atomic_add#
47 .global OPENSSL_wipe_cpu#
130 .global OPENSSL_cleanse#

Completed in 652 milliseconds

1234567891011>>