Searched defs:ft1 (Results 1 - 6 of 6) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/cf/code/
H A DMerger.java29 * @param ft1 {@code non-null;} a frame type
33 public static TypeBearer mergeType(TypeBearer ft1, TypeBearer ft2) { argument
34 if ((ft1 == null) || ft1.equals(ft2)) {
35 return ft1;
39 Type type1 = ft1.getType();
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp1.cpp43 void ft1(T t, U u);
48 void X0<T>::ft1(T t, U u) { function in class:X0
89 void X0<void*>::ft1(void*, const void*) { } function in class:X0
92 xvp.ft1(vp, cvp);
H A Dp2.cpp66 void ft1(T t, U u); // expected-note{{explicitly specialized}}
73 void N0::X0<T>::ft1(T t, U u) { function in class:N0::X0
211 void X0<void*>::ft1(void*, const void*) { } function in class:N0::X0
214 void X0<void*>::ft1(void *, int);
217 void X0<void*>::ft1(void *, unsigned);
220 void X0<void*>::ft1(void *, long);
224 void N0::X0<void*>::ft1(void *, unsigned) { } // okay function in class:N0::X0
227 void N0::X0<void*>::ft1(void *, float) { } // expected-warning{{function template specialization}} function in class:N0::X0
231 void N0::X0<void*>::ft1(void *, long) { } // expected-error{{does not enclose namespace}} function in class:N1::N0::X0
237 xvp.ft1(v
[all...]
H A Dp2-0x.cpp67 void ft1(T t, U u);
74 void N0::X0<T>::ft1(T t, U u) { function in class:N0::X0
250 void X0<void*>::ft1(void*, const void*) { } function in class:N0::X0
253 void X0<void*>::ft1(void *, int);
256 void X0<void*>::ft1(void *, unsigned);
259 void X0<void*>::ft1(void *, long);
263 void N0::X0<void*>::ft1(void *, unsigned) { } // okay function in class:N0::X0
266 void N0::X0<void*>::ft1(void *, float) { } function in class:N0::X0
270 void N0::X0<void*>::ft1(void *, long) { } // expected-error{{does not enclose namespace}} function in class:N1::N0::X0
276 xvp.ft1(v
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dclock.cc76 ft1 = { 0, 0 }; local
83 ::GetSystemTimeAsFileTime(&ft1);
87 } while ((ft0.dwHighDateTime == ft1.dwHighDateTime) &&
88 (ft0.dwLowDateTime == ft1.dwLowDateTime));
89 help_timer->_ref_point.file_time = ft1;
/external/clang/test/CodeGenCXX/
H A Dmangle.cpp90 template<typename T, typename U> void ft1(U u, T t) { } function
98 template<typename T> void ft1(T) { } function in namespace:NS
103 ft1<int, double>(1, 0);
112 NS::ft1<int>(1);

Completed in 185 milliseconds