| /external/llvm/include/llvm/IR/ |
| D | TypeBuilder.h | 106 static PointerType *get(LLVMContext &Context) { in get() function 117 static ArrayType *get(LLVMContext &Context) { in get() function 124 static ArrayType *get(LLVMContext &Context) { in get() function 183 static IntegerType *get(LLVMContext &C) { in get() function 190 static Type *get(LLVMContext& C) { in get() function 198 static Type *get(LLVMContext& C) { in get() function 206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get() function 210 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } in get() function 214 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } in get() function 218 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } in get() function [all …]
|
| /external/v8/test/mjsunit/ |
| D | accessor-map-sharing.js | 42 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 …]
|
| D | object-create.js | 61 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() { method 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 …]
|
| D | object-define-property.js | 85 get: getter1, property 91 get: getter2, property 101 get: getter3, property 395 function get(){return this.x} function 535 get: getter2 property 550 get: getter1 property 565 get: getter2 property 580 get: getter2 property 595 get: getter2 property 776 var descAccessor = { get: function() { return 0; } }; method [all …]
|
| D | object-freeze.js | 95 obj.x = { get: function() {return 43}, set: function() {} }; method 100 function get() { return 43; }; function 102 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true }); property 248 get: function() { return 42 }, method 286 get: function() { return 42 }, method 307 get: function() { return 42 }, method
|
| /external/v8/test/mjsunit/regress/ |
| D | regress-2163.js | 41 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
|
| D | regress-1692.js | 36 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
|
| D | regress-crbug-137689.js | 37 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
|
| D | regress-builtinbust-6.js | 23 Object.defineProperty(Number.prototype, "length", { get:length, set:length }); property 24 Object.defineProperty(Number.prototype, "0", { get:element, set:element }); property 25 Object.defineProperty(Number.prototype, "1", { get:element, set:element }); property 26 Object.defineProperty(Number.prototype, "2", { get:element, set:element }); property
|
| D | regress-356589.js | 31 Object.defineProperty(arr.__proto__, '0', { get: function(){} }); method 32 Object.defineProperty(arr, '2', {get: function(){} }); method
|
| D | regress-crbug-168545.js | 29 Object.defineProperty(o, "length", { get: function() { throw "bail"; }}); method 33 Object.defineProperty(a, "0", { get: function() { throw "bail"; }}); method
|
| D | regress-900.js | 32 Object.defineProperty(a, "1", {get: function() {return "foo";}}); method 34 b, "1", {get: function() {return "bar";}, set: function() {this.x = 42;}}); method
|
| D | regress-133211.js | 32 Object.defineProperty(o, "foo", { get: undefined }); property 33 Object.defineProperty(x, "foo", { get: undefined, set: undefined }); property
|
| D | regress-1973.js | 36 get: function() { "use strict"; assertSame(strict_type, typeof this); }, method 43 get: function() { assertSame(sloppy_type, typeof this); }, method
|
| /external/v8/test/webkit/ |
| D | Object-create.js | 37 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/ |
| D | class.m | 5 -(int)get; method 10 { 17 -(int)get; method 22 {
|
| /external/glide/library/src/main/java/com/bumptech/glide/manager/ |
| D | RequestManagerRetriever.java | 55 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/guava/guava/src/com/google/common/util/concurrent/ |
| D | Futures.java | 119 public abstract V get() throws ExecutionException; in get() method in Futures.ImmediateFuture 122 public V get(long timeout, TimeUnit unit) throws ExecutionException { in get() method in Futures.ImmediateFuture 147 public V get() { in get() method in Futures.ImmediateSuccessfulFuture 162 public V get() { in get() method in Futures.ImmediateSuccessfulCheckedFuture 187 public V get() throws ExecutionException { in get() method in Futures.ImmediateFailedFuture 206 public V get() { in get() method in Futures.ImmediateCancelledFuture 222 public V get() throws ExecutionException { in get() method in Futures.ImmediateFailedCheckedFuture 767 public O get() throws InterruptedException, ExecutionException { in lazyTransform() method in Futures 772 public O get(long timeout, TimeUnit unit) in lazyTransform() method in Futures
|
| /external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
| D | webapp1_test.py | 11 def get(self, text): member in NewStyleHandler 20 def get(self, text): member in OldStyleHandler 24 def get(self, text=None): member in OldStyleHandler2 28 def get(self, text): member in OldStyleHandlerWithError
|
| /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
| D | StripedBenchmark.java | 54 @Override Striped<Lock> get(int stripes) { in get() method 59 @Override Striped<Lock> get(int stripes) { in get() method 64 @Override Striped<Lock> get(int stripes) { in get() method 69 abstract Striped<Lock> get(int stripes); in get() method in StripedBenchmark.Impl
|
| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
| D | DictionaryExtensions.cs | 50 public static object get(IDictionary map, object key) { in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions
|
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
| D | DictionaryExtensions.cs | 50 public static object get( this IDictionary map, object key ) in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key ) in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions 80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key ) in get() method in Antlr.Runtime.JavaExtensions.DictionaryExtensions
|
| /external/lldb/include/lldb/Utility/ |
| D | CleanUp.h | 101 value_type get() in get() function 110 get() const in get() function 234 value_type get() in get() function 243 get() const in get() function
|
| /external/skia/include/gpu/ |
| D | GrGpuResourceRef.h | 101 T* get() const { return static_cast<T*>(this->getResource()); } in get() function 118 GrTexture* get() const { in get() function 139 GrRenderTarget* get() const { in get() function 189 T* get() const { return fResource; } in get() function
|
| /external/v8/test/mjsunit/harmony/ |
| D | proxies-json.js | 39 get: function(target, name) { method 68 get: function(target, name) { method 89 get: function(target, name) { method 108 get: function(target, name) { method 125 get: function(target, name) { method 142 get: function(target, name) { method 159 get: function(target, name) { method
|