/external/protobuf/src/google/protobuf/ |
D | test_util.cc | 2097 const Reflection* reflection = message->GetReflection(); in SetAllFieldsViaReflection() local 2100 reflection->SetInt32 (message, F("optional_int32" ), 101); in SetAllFieldsViaReflection() 2101 reflection->SetInt64 (message, F("optional_int64" ), 102); in SetAllFieldsViaReflection() 2102 reflection->SetUInt32(message, F("optional_uint32" ), 103); in SetAllFieldsViaReflection() 2103 reflection->SetUInt64(message, F("optional_uint64" ), 104); in SetAllFieldsViaReflection() 2104 reflection->SetInt32 (message, F("optional_sint32" ), 105); in SetAllFieldsViaReflection() 2105 reflection->SetInt64 (message, F("optional_sint64" ), 106); in SetAllFieldsViaReflection() 2106 reflection->SetUInt32(message, F("optional_fixed32" ), 107); in SetAllFieldsViaReflection() 2107 reflection->SetUInt64(message, F("optional_fixed64" ), 108); in SetAllFieldsViaReflection() 2108 reflection->SetInt32 (message, F("optional_sfixed32"), 109); in SetAllFieldsViaReflection() [all …]
|
D | generated_message_reflection_unittest.cc | 75 const Reflection* reflection = message.GetReflection(); in TEST() local 81 &reflection->GetMessage(message, F("optionalgroup"))); in TEST() 83 &reflection->GetMessage(message, F("optional_nested_message"))); in TEST() 85 &reflection->GetMessage(message, F("optional_foreign_message"))); in TEST() 87 &reflection->GetMessage(message, F("optional_import_message"))); in TEST() 112 const Reflection* reflection = message.GetReflection(); in TEST() local 116 &reflection->GetStringReference(message, F("optional_string"), &scratch)) in TEST() 120 &reflection->GetRepeatedStringReference(message, F("repeated_string"), in TEST() 137 const Reflection* reflection = message.GetReflection(); in TEST() local 140 &reflection->GetMessage(message, F("optionalgroup"))); in TEST() [all …]
|
D | reflection_ops.cc | 124 const Reflection* reflection = message->GetReflection(); in Clear() local 127 reflection->ListFields(*message, &fields); in Clear() 129 reflection->ClearField(message, fields[i]); in Clear() 132 reflection->MutableUnknownFields(message)->Clear(); in Clear() 137 const Reflection* reflection = message.GetReflection(); in IsInitialized() local 142 if (!reflection->HasField(message, descriptor->field(i))) { in IsInitialized() 150 reflection->ListFields(message, &fields); in IsInitialized() 155 int size = reflection->FieldSize(message, field); in IsInitialized() 158 if (!reflection->GetRepeatedMessage(message, field, i) in IsInitialized() 164 if (!reflection->GetMessage(message, field).IsInitialized()) { in IsInitialized() [all …]
|
D | text_format.cc | 234 const Reflection* reflection = message->GetReflection(); in ConsumeField() local 252 field = reflection->FindKnownExtensionByName(field_name); in ConsumeField() 291 !field->is_repeated() && reflection->HasField(*message, field)) { in ConsumeField() 301 DO(ConsumeFieldMessage(message, reflection, field)); in ConsumeField() 304 DO(ConsumeFieldValue(message, reflection, field)); in ConsumeField() 316 const Reflection* reflection, in ConsumeFieldMessage() argument 327 DO(ConsumeMessage(reflection->AddMessage(message, field), delimeter)); in ConsumeFieldMessage() 329 DO(ConsumeMessage(reflection->MutableMessage(message, field), in ConsumeFieldMessage() 336 const Reflection* reflection, in ConsumeFieldValue() argument 344 reflection->Add##CPPTYPE(message, field, VALUE); \ in ConsumeFieldValue() [all …]
|
D | text_format.h | 150 const Reflection* reflection, 156 const Reflection* reflection, 163 const Reflection* reflection, 170 const Reflection* reflection,
|
D | dynamic_message.cc | 180 scoped_ptr<const GeneratedMessageReflection> reflection; member 425 metadata.reflection = type_info_->reflection.get(); in GetMetadata() 539 type_info->reflection.reset( in GetPrototypeNoLock()
|
D | message.h | 169 const Reflection* reflection; member 324 return GetMetadata().reflection; in GetReflection()
|
D | descriptor.pb.cc | 849 metadata.reflection = FileDescriptorSet_reflection_; in GetMetadata() 1399 metadata.reflection = FileDescriptorProto_reflection_; in GetMetadata() 1646 metadata.reflection = DescriptorProto_ExtensionRange_reflection_; in GetMetadata() 2131 metadata.reflection = DescriptorProto_reflection_; in GetMetadata() 2786 metadata.reflection = FieldDescriptorProto_reflection_; in GetMetadata() 3102 metadata.reflection = EnumDescriptorProto_reflection_; in GetMetadata() 3415 metadata.reflection = EnumValueDescriptorProto_reflection_; in GetMetadata() 3731 metadata.reflection = ServiceDescriptorProto_reflection_; in GetMetadata() 4120 metadata.reflection = MethodDescriptorProto_reflection_; in GetMetadata() 4686 metadata.reflection = FileOptions_reflection_; in GetMetadata() [all …]
|
/external/javassist/src/main/javassist/tools/reflect/ |
D | Loader.java | 110 protected Reflection reflection; field in Loader 135 reflection = new Reflection(); in Loader() 137 addTranslator(pool, reflection); in Loader() 161 return reflection.makeReflective(clazz, metaobject, metaclass); in makeReflective()
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
D | javamicro_file.cc | 54 const Reflection* reflection = message.GetReflection(); in UsesExtensions() local 57 if (reflection->GetUnknownFields(message).field_count() > 0) return true; in UsesExtensions() 60 reflection->ListFields(message, &fields); in UsesExtensions() 67 int size = reflection->FieldSize(message, fields[i]); in UsesExtensions() 70 reflection->GetRepeatedMessage(message, fields[i], j); in UsesExtensions() 74 const Message& sub_message = reflection->GetMessage(message, fields[i]); in UsesExtensions()
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_file.cc | 56 const Reflection* reflection = message.GetReflection(); in UsesExtensions() local 59 if (reflection->GetUnknownFields(message).field_count() > 0) return true; in UsesExtensions() 62 reflection->ListFields(message, &fields); in UsesExtensions() 69 int size = reflection->FieldSize(message, fields[i]); in UsesExtensions() 72 reflection->GetRepeatedMessage(message, fields[i], j); in UsesExtensions() 76 const Message& sub_message = reflection->GetMessage(message, fields[i]); in UsesExtensions()
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
D | 3d-raytrace.js | 217 if (colour.reflection > 0.001) { 218 var reflection = addVector(scale(normal, -2*dot(dir, normal)), dir); 219 reflected = this.intersect(hit, reflection, 0.0001, 1000000); 220 if (colour.reflection >= 0.999999) 239 … l = addVector(scaleVector(l, 1 - colour.reflection), scaleVector(reflected, colour.reflection)); 356 grey.reflection = 1.0;
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
D | 3d-raytrace.js | 217 if (colour.reflection > 0.001) { 218 var reflection = addVector(scale(normal, -2*dot(dir, normal)), dir); 219 reflected = this.intersect(hit, reflection, 0.0001, 1000000); 220 if (colour.reflection >= 0.999999) 239 … l = addVector(scaleVector(l, 1 - colour.reflection), scaleVector(reflected, colour.reflection)); 356 grey.reflection = 1.0;
|
/external/v8/benchmarks/ |
D | raytrace.js | 328 reflection: 0.0, // [0...infinity] 0 = no reflection property in Flog.RayTracer.Material.BaseMaterial 359 initialize : function(color, reflection, refraction, transparency, gloss) { argument 361 this.reflection = reflection; 388 initialize : function(colorEven, colorOdd, reflection, transparency, gloss, density) { argument 391 this.reflection = reflection; 744 if(this.options.renderReflections && info.shape.material.reflection > 0) 758 info.shape.material.reflection
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
D | v8-raytrace.js | 323 reflection: 0.0, // [0...infinity] 0 = no reflection property in Flog.RayTracer.Material.BaseMaterial 354 initialize : function(color, reflection, refraction, transparency, gloss) { argument 356 this.reflection = reflection; 383 initialize : function(colorEven, colorOdd, reflection, transparency, gloss, density) { argument 386 this.reflection = reflection; 739 if(this.options.renderReflections && info.shape.material.reflection > 0) 753 info.shape.material.reflection
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
D | v8-raytrace.js | 329 reflection: 0.0, // [0...infinity] 0 = no reflection property in Flog.RayTracer.Material.BaseMaterial 360 initialize : function(color, reflection, refraction, transparency, gloss) { argument 362 this.reflection = reflection; 389 initialize : function(colorEven, colorOdd, reflection, transparency, gloss, density) { argument 392 this.reflection = reflection; 770 if(this.options.renderReflections && info.shape.material.reflection > 0) 784 info.shape.material.reflection
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
D | v8-raytrace.js | 329 reflection: 0.0, // [0...infinity] 0 = no reflection property in Flog.RayTracer.Material.BaseMaterial 360 initialize : function(color, reflection, refraction, transparency, gloss) { argument 362 this.reflection = reflection; 389 initialize : function(colorEven, colorOdd, reflection, transparency, gloss, density) { argument 392 this.reflection = reflection; 770 if(this.options.renderReflections && info.shape.material.reflection > 0) 784 info.shape.material.reflection
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderLayerCompositor.cpp | 487 if (RenderLayer* reflection = layer->reflectionLayer()) { in calculateCompositedBounds() local 488 if (!reflection->isComposited()) { in calculateCompositedBounds() 489 IntRect childUnionBounds = calculateCompositedBounds(reflection, layer); in calculateCompositedBounds() 930 if (RenderLayer* reflection = layer->reflectionLayer()) { local 931 if (reflection->backing()) 932 reflection->backing()->updateCompositedBounds(); 1110 if (RenderLayer* reflection = layer->reflectionLayer()) { local 1111 if (reflection->backing()) 1112 reflection->backing()->updateCompositedBounds(); 1155 if (RenderLayer* reflection = layer->reflectionLayer()) { local [all …]
|
/external/webkit/Source/WebCore/css/ |
D | CSSComputedStyleDeclaration.cpp | 387 static PassRefPtr<CSSValue> valueForReflection(const StyleReflection* reflection, const RenderStyle… in valueForReflection() argument 389 if (!reflection) in valueForReflection() 393 if (reflection->offset().isPercent()) in valueForReflection() 394 …offset = primitiveValueCache->createValue(reflection->offset().percent(), CSSPrimitiveValue::CSS_P… in valueForReflection() 396 offset = zoomAdjustedPixelValue(reflection->offset().value(), style, primitiveValueCache); in valueForReflection() 398 …return CSSReflectValue::create(reflection->direction(), offset.release(), valueForNinePieceImage(r… in valueForReflection()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | plugin.pb.cc | 467 metadata.reflection = CodeGeneratorRequest_reflection_; in GetMetadata() 808 metadata.reflection = CodeGeneratorResponse_File_reflection_; in GetMetadata() 1073 metadata.reflection = CodeGeneratorResponse_reflection_; in GetMetadata()
|
/external/protobuf/ |
D | CHANGES.txt | 61 than libprotobuf but lacks descriptors, reflection, and some other features. 81 than libprotobuf but lacks descriptors, reflection, and some other features. 149 use descriptors or reflection. 195 RpcService interface, which provides reflection support that is usually
|
D | Makefile.am | 134 python/google/protobuf/reflection.py \
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_test_bad_identifiers.proto | 86 optional uint32 reflection = 27; field
|
/external/mesa3d/docs/ |
D | RELNOTES-3.1 | 84 nVidia texgen extension for better reflection mapping.
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebRenderLayer.mm | 73 name = [name stringByAppendingString:@" (reflection)"];
|