Searched refs:As (Results 1 - 25 of 103) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A Dcxx1y-generic-lambdas-variadics.cpp39 auto L = [](auto ... As) {
44 auto L = [](auto A, auto B, auto ... As) {
51 auto L = [](auto ... As) {
52 print("\nL::As = ", As ...);
53 return [](decltype(As) ... as, auto ... Bs) {
64 auto L = [](auto A, auto ... As) {
65 print("\nL::As = ", As ...);
66 return [](decltype(As)
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp9 auto GL2 = [](auto ... As) -> int { return vfoo(As...); };
10 auto GL3 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); };
12 auto GL4 = [](int i, char c, auto* ... As) -> int { return vfoo(As...); };
18 auto GL2 = [](auto ... As) -> int { return vfoo(As...); };
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-myanmar-machine.rl42 As = 18;
67 k = (Ra As H); # Kinzi
71 medial_group = MY? MR? MW? MH? As?;
72 main_vowel_group = VPre* VAbv* VBlw* A* (DB As?)?;
73 post_vowel_group = VPst MH? As* VAbv* A* (DB As?)?;
74 pwo_tone_group = PT A* DB? As?;
76 complex_syllable_tail = As* medial_group main_vowel_group post_vowel_group* pwo_tone_group* V* j?;
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp5.cpp38 T As() { function in class:Foo
52 template float Foo::As();
/external/clang/lib/CodeGen/
H A DEHScopeStack.h194 template <class T, class... As>
196 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
203 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
207 restore(CGF, llvm::index_sequence_for<As...>()).Emit(CGF, flags);
211 ConditionalCleanup(typename DominatingValue<As>::saved_type... A)
270 template <class T, class... As> void pushCleanup(CleanupKind Kind, As... A) {
279 template <class T, class... As>
280 void pushCleanupTuple(CleanupKind Kind, std::tuple<As...> A) {
301 template <class T, class... As>
[all...]
/external/v8/src/extensions/
H A Dfree-buffer-extension.cc22 v8::Local<v8::ArrayBuffer> arrayBuffer = args[0].As<v8::ArrayBuffer>();
H A Dexternalize-string-extension.cc85 Handle<String> string = Utils::OpenHandle(*args[0].As<v8::String>());
137 Utils::OpenHandle(*args[0].As<v8::String>())->IsOneByteRepresentation();
/external/pdfium/xfa/src/fxjse/src/
H A Dutil_inline.h11 return hContext->Global()->GetPrototype().As<v8::Object>();
32 hObject = hProtoObject.As<v8::Object>();
H A Dcontext.cpp78 hValue = hException.As<v8::Object>()->Get(
85 hValue = hException.As<v8::Object>()->Get(
120 hValue.As<v8::Object>()->Get(0)->ToString());
123 hValue.As<v8::Object>()->Get(1)->ToString());
141 nLine = hValue.As<v8::Object>()->Get(3)->ToInt32()->Value();
142 nCol = hValue.As<v8::Object>()->Get(5)->ToInt32()->Value();
223 v8::Local<v8::Function> hWrapperFn = hWrapperValue.As<v8::Function>();
227 hWrapperFn->Call(hNewThis.As<v8::Object>(), 1, rgArgs);
H A Ddynprop.cpp13 v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
17 hCallBackInfo->GetInternalField(1).As<v8::String>();
115 v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
119 hCallBackInfo->GetInternalField(1).As<v8::String>();
137 v8::Local<v8::Object> hCallBackInfo = info.Data().As<v8::Object>();
141 hCallBackInfo->GetInternalField(1).As<v8::String>();
160 static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
197 info.This()->GetPrototype().As<v8::Object>();
203 v8::Local<v8::Function> fn = fnSource->Run().As<v8::Function>();
221 info.This()->GetPrototype().As<v
[all...]
H A Dclass.cpp59 static_cast<FXJSE_FUNCTION*>(info.Data().As<v8::External>()->Value());
82 static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
106 static_cast<FXJSE_PROPERTY*>(info.Data().As<v8::External>()->Value());
128 static_cast<FXJSE_PROPERTY*>(info.Data().As<v8::External>()->Value());
148 static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
205 return FXJSE_RetrieveObjectBinding(hValue.As<v8::Object>(), lpClass);
215 static_cast<FXJSE_CLASS*>(info.Data().As<v8::External>()->Value());
H A Dvalue.cpp261 hError.As<v8::Object>()->Set(
281 return FXJSE_RetrieveObjectBinding(hValue.As<v8::Object>(), lpClass);
363 return (FX_BOOL)hObject.As<v8::Object>()->Set(
378 hObject.As<v8::Object>()->Get(v8::String::NewFromUtf8(
394 return (FX_BOOL)hObject.As<v8::Object>()->Set(uPropIdx, hPropValue);
404 v8::Local<v8::Value> hPropValue = hObject.As<v8::Object>()->Get(uPropIdx);
415 hObject.As<v8::Object>()->Delete(v8::String::NewFromUtf8(
431 return hObject.As<v8::Object>()->HasRealNamedProperty(hKey) ||
432 (bUseTypeGetter && hObject.As<v8::Object>()->HasOwnProperty(hKey));
444 return hObject.As<v
[all...]
/external/v8/test/cctest/
H A Dprofiler-extension.cc70 ? args[0].As<v8::String>()
79 ? args[0].As<v8::String>()
H A Dtest-global-object.cc47 context->Global()->GetPrototype().As<v8::Object>();
/external/opencv3/modules/videoio/src/cap_winrt/
H A DMFIncludes.hpp66 MW::ComPtr<T> As(U^ in)
75 Microsoft::WRL::ComPtr<T> As(const Microsoft::WRL::ComPtr<U>& in) function
78 CHK(in.As(&out));
84 Microsoft::WRL::ComPtr<T> As(U* in) function
95 CHK(As<WSS::IBufferByteAccess>(buffer)->Buffer(&bytes));
/external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DDirect3DBase.cpp66 device.As(&m_d3dDevice)
70 context.As(&m_d3dContext)
/external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DDirect3DBase.cpp66 device.As(&m_d3dDevice)
70 context.As(&m_d3dContext)
/external/mesa3d/src/mesa/swrast/
H A Ds_blend.c486 const GLfloat As = rgba[i][ACOMP]; local
521 sR = sG = sB = As;
524 sR = sG = sB = 1.0F - As;
533 if (As < 1.0F - Ad) {
534 sR = sG = sB = As;
587 sA = As;
590 sA = 1.0F - As;
614 sA = As;
617 sA = 1.0F - As;
645 dR = dG = dB = As;
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp4.cpp34 template<typename ...As> struct A {
37 C(As..., Bs..., int &k, Cs...);
/external/clang/test/CXX/temp/temp.param/
H A Dp15-cxx0x.cpp38 template<Ts ...As, template<Ts> class ...Bs, typename ...Cs> struct Inner {
39 struct Check : Bs<As>... {
/external/clang/test/Index/
H A Dprint-type-size.cpp199 // CHECK64: StructDecl=As:[[@LINE+1]]:8 [type=Incomplete::As] [typekind=Record]
200 struct As;
/external/dhcpcd-6.8.2/dev/
H A Dudev.c31 # warning As such, dhcpcd will need to depend on the
/external/opencv3/samples/winrt/FaceDetection/FaceDetection/
H A DMainPage.xaml.cpp90 pBuffer.As(&pBufferByteAccess);
/external/opencv3/samples/winrt_universal/PhoneTutorial/
H A DMainPage.xaml.cpp64 ThrowIfFailed(insp.As(&bufferByteAccess));
/external/curl/
H A DAndroid.mk9 # As this will be compiled on multiple platforms, generate a version string from

Completed in 3296 milliseconds

12345