Home
last modified time | relevance | path

Searched refs:constantName (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DV8DOMConfiguration.cpp86 v8::Handle<v8::String> constantName = v8AtomicString(isolate, constant->name); in installConstants() local
91 …functionDescriptor->Set(constantName, v8::Integer::New(isolate, constant->ivalue), static_cast<v8:… in installConstants()
92 …prototype->Set(constantName, v8::Integer::New(isolate, constant->ivalue), static_cast<v8::Property… in installConstants()
95 …functionDescriptor->Set(constantName, v8::Integer::NewFromUnsigned(isolate, constant->ivalue), sta… in installConstants()
96 …prototype->Set(constantName, v8::Integer::NewFromUnsigned(isolate, constant->ivalue), static_cast<… in installConstants()
100 …functionDescriptor->Set(constantName, v8::Number::New(isolate, constant->dvalue), static_cast<v8::… in installConstants()
101 …prototype->Set(constantName, v8::Number::New(isolate, constant->dvalue), static_cast<v8::PropertyA… in installConstants()
104 …functionDescriptor->Set(constantName, v8::String::NewFromUtf8(isolate, constant->svalue), static_c… in installConstants()
105 …prototype->Set(constantName, v8::String::NewFromUtf8(isolate, constant->svalue), static_cast<v8::P… in installConstants()
115 v8::Handle<v8::String> constantName = v8AtomicString(isolate, name); in installConstant() local
[all …]
/external/guava/guava-tests/test/com/google/common/net/
DHttpHeadersTest.java55 private static String upperToHttpHeaderName(String constantName) { in upperToHttpHeaderName() argument
57 if (constantName.equals("ETAG")) { in upperToHttpHeaderName()
62 for (String part : SPLITTER.split(constantName)) { in upperToHttpHeaderName()