Home
last modified time | relevance | path

Searched defs:get (Results 1 – 25 of 1610) sorted by relevance

12345678910>>...65

/external/llvm/include/llvm/IR/
DTypeBuilder.h114 static PointerType *get(LLVMContext &Context) { in get() function
125 static ArrayType *get(LLVMContext &Context) { in get() function
132 static ArrayType *get(LLVMContext &Context) { in get() function
191 static IntegerType *get(LLVMContext &C) { in get() function
198 static Type *get(LLVMContext& C) { in get() function
206 static Type *get(LLVMContext& C) { in get() function
214 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get() function
218 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } in get() function
222 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } in get() function
226 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } in get() function
[all …]
/external/v8/test/mjsunit/
Daccessor-map-sharing.js42 dp(obj1, "alpha", { get: getter }); property
44 dp(obj2, "alpha", { get: getter }); property
74 dp(obj1, "foxtrot", { get: getter, set: setter }); property
76 dp(obj2, "foxtrot", { get: getter, set: setter }); property
81 dp(obj1, "golf", { get: getter, configurable: true }); property
84 dp(obj2, "golf", { get: getter, configurable: true }); property
99 dp(obj1, "india", { get: getter, configurable: true, enumerable: true }); property
129 dp(obj1, "kilo", { get: getter }); property
131 dp(obj2, "kilo", { get: anotherGetter }); property
138 dp(obj1, "lima", { get: getter, set: setter }); property
[all …]
Dobject-create.js61 var fooGetter = { foo: { get: function() { return ctr3++; }}}; method
63 var fooAmbiguous = { foo: { get: function() { return ctr3++; }, method
124 enumerable: { get: function() { method
128 configurable: { get: function() { method
132 value: { get: function() { method
136 writable: { get: function() { method
140 get: { get: function() { property
144 set: { get: function() { method
152 var magicValueProps = { foo: Object.create(null, { value: { get: valueGet }})}; property
153 var magicGetterProps = { foo: Object.create(null, { get: { get: getterGet }})}; property
[all …]
Dobject-define-property.js85 get: getter1, property
91 get: getter2, property
101 get: getter3, property
395 function get(){return this.x} function
510 get: getter2 property
525 get: getter1 property
540 get: getter2 property
555 get: getter2 property
570 get: getter2 property
751 var descAccessor = { get: function() { return 0; } }; method
[all …]
/external/v8/test/mjsunit/regress/
Dregress-2163.js41 dp(obj1, "alpha", { get: getter, set: setter }); property
43 dp(obj2, "alpha", { get: getter }); property
51 dp(obj1, "alpha", { get: getter, set: setter }); property
53 dp(obj2, "alpha", { get: getter }); property
57 dp(obj3, "alpha", { get: getter }); property
62 dp(obj1, "alpha", { get: getter, set: setter }); property
65 dp(obj2, "alpha", { get: getter, set: setter }); property
Dregress-typedarray-length.js10 function get(a) { function
51 get = function(a) { function
85 get = function(a) { function
99 Object.defineProperty(a, "length", {get: function() { return "blah"; }}); method
100 get = function(a) { function
Dregress-1692.js36 f : { get: function(){}, enumerable: true }, method
37 g : { get: function(){}, enumerable: false }, method
38 11 : { get: function(){}, enumerable: true }, method
39 12 : { get: function(){}, enumerable: false } method
46 h : { get: function(){}, enumerable: true }, method
47 k : { get: function(){}, enumerable: false }, method
48 13 : { get: function(){}, enumerable: true }, method
49 14 : { get: function(){}, enumerable: false } method
Dregress-crbug-137689.js37 Object.defineProperty(o, "foo", { get: getter, configurable: true }); property
38 Object.defineProperty(o2, "foo", { get: getter, configurable: true }); property
41 Object.defineProperty(o, "bar", { get: getter2 }); property
42 Object.defineProperty(o2, "bar", { get: getter2 }); property
/external/v8/test/webkit/
DObject-create.js37 var DescriptorWithValueGetter = { foo: Object.create(null, { value: { get: valueGet }})}; property
38 …erableGetter = { foo: Object.create(null, { value: {value: true}, enumerable: { get: valueGet }})}; property
39 …ableGetter = { foo: Object.create(null, { value: {value: true}, configurable: { get: valueGet }})}; property
40 …WritableGetter = { foo: Object.create(null, { value: {value: true}, writable: { get: valueGet }})}; property
41 var DescriptorWithGetGetter = { foo: Object.create(null, { get: { get: function() { return valueGet… property
42 var DescriptorWithSetGetter = { foo: Object.create(null, { get: { value: valueGet}, set: { get: fun… method
/external/lldb/test/lang/objc/objc-super/
Dclass.m5 -(int)get; method
10 {
17 -(int)get; method
22 {
/external/v8/test/mjsunit/es6/
Dobject-tostring.js41 get: function() { throw className; } method
50 get: function() { return className; } method
64 get: function() { return "X" + className; } method
80 get: function() { return undefined; } method
106 get: function() { return value; } method
150 assertTag("Foo", new Proxy(() => 42, {get() {return "Foo"}})); method
151 assertTag("Function", new Proxy(() => 42, {get() {return 666}})); method
Darray-tostring.js40 get: function() { throw className; } method
49 get: function() { return className; } method
63 get: function() { return "X" + className; } method
79 get: function() { return undefined; } method
106 get: function() { return value; } method
Dproxies-bind.js63 get() {return 42}, method
76 get() {return Math.pow(2, 100)}, method
89 get() {return 1/0}, method
102 get() {return 4.2}, method
115 get() {}, method
Dproxies-with-unscopables.js10 get: function(target, key) { method
37 get: function(target, key) { method
70 get: function(target, key) { method
103 get: function(target, key) { method
126 get: function() { method
Dproxies-get.js25 var handler2 = new Proxy({get: function() { return "value 3" }},{}); method
33 var handler = new Proxy({}, {get: function(){ throw Error() }}); method
46 var handler = new Proxy({}, {get: function(){ return undefined }}); method
55 var handler = { get: function(r, p){ if (p != "key4") return "value" }} method
78 get: function() { return "different value" } method
110 get(t, name) { method
Dregexp-constructor.js16 Object.defineProperty(r, "source", {get: should_not_be_called}); property
17 Object.defineProperty(r, "flags", {get: should_not_be_called}); property
73 {get() { log.push("match"); return true; }}); method
87 {get() { log.push("match"); return true; }}); method
Dclasses-proxy.js16 get(k) { method
32 get(k) { method
48 get(k) { method
64 get(k) { method
Dproxies-integrity.js39 Object.defineProperty(target, symbol, {get: undefined}); property
67 Object.defineProperty(target, symbol, {get: undefined}); property
102 Object.defineProperty(target, symbol, {get: undefined}); property
161 Object.defineProperty(target, symbol, {get: undefined}); property
Dreflect-define-property.js87 get: getter1, property
93 get: getter2, property
103 get: getter3, property
369 function get(){return this.x} function
484 get: getter2 property
494 get: getter1 property
504 get: getter2 property
514 get: getter2 property
524 get: getter2 property
669 var descAccessor = { get: function() { return 0; } }; method
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/manager/
DRequestManagerRetriever.java55 public static RequestManagerRetriever get() { in get() method in RequestManagerRetriever
81 public RequestManager get(Context context) { in get() method in RequestManagerRetriever
97 public RequestManager get(FragmentActivity activity) { in get() method in RequestManagerRetriever
107 public RequestManager get(Fragment fragment) { in get() method in RequestManagerRetriever
123 public RequestManager get(Activity activity) { in get() method in RequestManagerRetriever
141 public RequestManager get(android.app.Fragment fragment) { in get() method in RequestManagerRetriever
/external/llvm/lib/Analysis/
DMemoryLocation.cpp21 MemoryLocation MemoryLocation::get(const LoadInst *LI) { in get() function in MemoryLocation
30 MemoryLocation MemoryLocation::get(const StoreInst *SI) { in get() function in MemoryLocation
40 MemoryLocation MemoryLocation::get(const VAArgInst *VI) { in get() function in MemoryLocation
47 MemoryLocation MemoryLocation::get(const AtomicCmpXchgInst *CXI) { in get() function in MemoryLocation
57 MemoryLocation MemoryLocation::get(const AtomicRMWInst *RMWI) { in get() function in MemoryLocation
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
Dmain.py69 def get(self): member in MainHandler
77 def get(self): member in ArtistsHandler
171 def get(self): member in ArtistHandler
222 def get(self): member in AlbumsHandler
258 def get(self): member in AlbumHandler
/external/skia/include/private/
DSkTemplates.h148 T* get() const { return fArray; } in get() function
233 T* get() const { return fArray; } in get() function
291 T* get() const { return fPtr; } in get() function
362 T* get() const { return fPtr; } in get() function
453 void* get() { return fData; } in get() function
454 const void* get() const { return fData; } in get() function
476 void* get() { return fStorage.get(); } in get() function
477 const void* get() const { return fStorage.get(); } in get() function
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCacheValue.java89 public abstract V get(); in get() method in CacheValue
107 public V get() { return null; } in get() method in CacheValue.NullValue
122 public V get() { return value; } in get() method in CacheValue.StrongValue
136 public V get() { return ref.get(); } in get() method in CacheValue.SoftValue
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCacheValue.java87 public abstract V get(); in get() method in CacheValue
105 public V get() { return null; } in get() method in CacheValue.NullValue
120 public V get() { return value; } in get() method in CacheValue.StrongValue
134 public V get() { return ref.get(); } in get() method in CacheValue.SoftValue

12345678910>>...65