HomeSort by relevance Sort by last modified time
    Searched defs:make (Results 176 - 200 of 360) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 48 ca.setAttribute(make(cp, minfo));
73 mm.make(blocks, ca.getCode());
84 public static StackMapTable make(ClassPool classes, MethodInfo minfo) method in class:MapMaker
96 mm.make(blocks, ca.getCode());
117 mm.make(blocks, ca.getCode());
134 void make(TypedBlock[] blocks, byte[] code) method in class:MapMaker
141 make(code, first); method
170 private void make(byte[] code, TypedBlock tb) method in class:MapMaker
192 maker.make(code, e);
213 maker.make(code, tb)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
PositionList.java 31 * constant for {@link #make} to indicate that no actual position
37 * constant for {@link #make} to indicate that only line number
43 * constant for {@link #make} to indicate that only "important" position
58 public static PositionList make(DalvInsnList insns, int howMuch) { method in class:PositionList
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpecList.java 37 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
50 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
66 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
84 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
  /dalvik/dx/src/com/android/dx/dex/code/
PositionList.java 31 * constant for {@link #make} to indicate that no actual position
37 * constant for {@link #make} to indicate that only line number
43 * constant for {@link #make} to indicate that only "important" position
58 public static PositionList make(DalvInsnList insns, int howMuch) { method in class:PositionList
  /external/clang/test/SemaTemplate/
class-template-spec.cpp 45 // Make sure specializations are proper classes.
53 // Make sure we can see specializations defined before the primary template.
148 template<typename T, T N> using make_integer_sequence = typename __make_integer_sequence<T>::template make<N, N % 2>::type; // expected-warning {{extension}}
156 template<T N, T Parity, typename = void> struct make;
157 template<typename Dummy> struct make<0, 0, Dummy> { typedef integer_sequence<T> type; }; struct in struct:PR16519::__make_integer_sequence
158 template<typename Dummy> struct make<1, 1, Dummy> { typedef integer_sequence<T, 0> type; }; struct in struct:PR16519::__make_integer_sequence
159 template<T N, typename Dummy> struct make<N, 0, Dummy> : __make_integer_sequence_impl<make_integer_sequence<T, N/2> > {}; struct in struct:PR16519::__make_integer_sequence
160 template<T N, typename Dummy> struct make<N, 1, Dummy> : __make_integer_sequence_impl<make_integer_sequence<T, N/2>, N - 1> {}; struct in struct:PR16519::__make_integer_sequence
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
PositionList.java 31 * constant for {@link #make} to indicate that no actual position
37 * constant for {@link #make} to indicate that only line number
43 * constant for {@link #make} to indicate that only "important" position
58 public static PositionList make(DalvInsnList insns, int howMuch) { method in class:PositionList
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpecList.java 39 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
52 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
68 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
86 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
  /external/javassist/src/main/javassist/compiler/ast/
ASTList.java 38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) { method in class:ASTList
Declarator.java 59 public Declarator make(Symbol sym, int dim, ASTree init) { method in class:Declarator
  /external/opencv3/modules/core/include/opencv2/core/cuda/
vec_traits.hpp 174 static __device__ __host__ __forceinline__ type make(type x) {return x;} \
175 static __device__ __host__ __forceinline__ type make(const type* v) {return *v;} \
182 static __device__ __host__ __forceinline__ type ## 1 make(type x) {return make_ ## type ## 1(x);} \
183 static __device__ __host__ __forceinline__ type ## 1 make(const type* v) {return make_ ## type ## 1(*v);} \
190 static __device__ __host__ __forceinline__ type ## 2 make(type x, type y) {return make_ ## type ## 2(x, y);} \
191 static __device__ __host__ __forceinline__ type ## 2 make(const type* v) {return make_ ## type ## 2(v[0], v[1]);} \
198 static __device__ __host__ __forceinline__ type ## 3 make(type x, type y, type z) {return make_ ## type ## 3(x, y, z);} \
199 static __device__ __host__ __forceinline__ type ## 3 make(const type* v) {return make_ ## type ## 3(v[0], v[1], v[2]);} \
206 static __device__ __host__ __forceinline__ type ## 4 make(type x, type y, type z, type w) {return make_ ## type ## 4(x, y, z, w);} \
207 static __device__ __host__ __forceinline__ type ## 4 make(const type* v) {return make_ ## type ## 4(v[0], v[1], v[2], v[3]);}
233 static __device__ __host__ __forceinline__ char make(char x) {return x;} function in struct:cv::cuda::device::VecTraits
234 static __device__ __host__ __forceinline__ char make(const char* x) {return *x;} function in struct:cv::cuda::device::VecTraits
241 static __device__ __host__ __forceinline__ schar make(schar x) {return x;} function in struct:cv::cuda::device::VecTraits
242 static __device__ __host__ __forceinline__ schar make(const schar* x) {return *x;} function in struct:cv::cuda::device::VecTraits
249 static __device__ __host__ __forceinline__ char1 make(schar x) {return make_char1(x);} function in struct:cv::cuda::device::VecTraits
250 static __device__ __host__ __forceinline__ char1 make(const schar* v) {return make_char1(v[0]);} function in struct:cv::cuda::device::VecTraits
257 static __device__ __host__ __forceinline__ char2 make(schar x, schar y) {return make_char2(x, y);} function in struct:cv::cuda::device::VecTraits
258 static __device__ __host__ __forceinline__ char2 make(const schar* v) {return make_char2(v[0], v[1]);} function in struct:cv::cuda::device::VecTraits
265 static __device__ __host__ __forceinline__ char3 make(schar x, schar y, schar z) {return make_char3(x, y, z);} function in struct:cv::cuda::device::VecTraits
266 static __device__ __host__ __forceinline__ char3 make(const schar* v) {return make_char3(v[0], v[1], v[2]);} function in struct:cv::cuda::device::VecTraits
273 static __device__ __host__ __forceinline__ char4 make(schar x, schar y, schar z, schar w) {return make_char4(x, y, z, w);} function in struct:cv::cuda::device::VecTraits
274 static __device__ __host__ __forceinline__ char4 make(const schar* v) {return make_char4(v[0], v[1], v[2], v[3]);} function in struct:cv::cuda::device::VecTraits
281 static __device__ __host__ __forceinline__ char8 make(schar a0, schar a1, schar a2, schar a3, schar a4, schar a5, schar a6, schar a7) {return make_char8(a0, a1, a2, a3, a4, a5, a6, a7);} function in struct:cv::cuda::device::VecTraits
282 static __device__ __host__ __forceinline__ char8 make(const schar* v) {return make_char8(v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]);} function in struct:cv::cuda::device::VecTraits
    [all...]
  /external/opencv3/modules/cudalegacy/perf/
perf_labeling.cpp 58 static dot make(int i, int j) function in struct:GreedyLabeling::dot
106 dot p = dot::make(i, j);
120 *top++ = dot::make(p.x + 1, p.y);
124 *top++ = dot::make(p.x - 1, p.y);
128 *top++ = dot::make(p.x, p.y + 1);
132 *top++ = dot::make(p.x, p.y - 1);
  /external/opencv3/modules/cudalegacy/test/
test_labeling.cpp 56 static dot make(int i, int j) function in struct:__anon21493::GreedyLabeling::dot
99 dot p = dot::make(i, j);
113 *top++ = dot::make(p.x + 1, p.y);
117 *top++ = dot::make(p.x - 1, p.y);
121 *top++ = dot::make(p.x, p.y + 1);
125 *top++ = dot::make(p.x, p.y - 1);
  /frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
MainActivity.java 27 static Map<String,?> make(String name) { method in class:MainActivity
36 add(make("List Item: " + i));
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmUpdateHandler.java 119 // Make a copy of the existing instance
161 // Activity may be closed at this point , make sure data is still valid
191 SnackbarManager.show(Snackbar.make(mSnackbarAnchor, text, Snackbar.LENGTH_SHORT));
204 final Snackbar snackbar = Snackbar.make(mSnackbarAnchor,
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 169 def make(self, _no_object=None, _attributes={}, **_arguments): member in class:Standard_Suite_Events
170 """make: Make a new element
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 169 def make(self, _no_object=None, _attributes={}, **_arguments): member in class:Standard_Suite_Events
170 """make: Make a new element
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 67 Zone otherZone = Zone.make(otherId);
177 zoneSet.add(Zone.make(foo[i]));
213 static public Zone make(String id) { method in class:TimeZoneAliasTest.Zone
247 private Zone(String id) { // for interal use only; use make instead!
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 63 Zone otherZone = Zone.make(otherId);
173 zoneSet.add(Zone.make(foo[i]));
209 static public Zone make(String id) { method in class:TimeZoneAliasTest.Zone
243 private Zone(String id) { // for interal use only; use make instead!
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 326 // Make type agree with the discovered requiredArrayType.
383 * Make type agree with the discovered requiredArrayType
566 * to make sure it's valid for the opcode.
614 machine.auxCstArg(CstInteger.make(value));
682 * create. Make a prototype of that many "int"
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecList.java 38 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
51 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
67 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
85 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, method in class:Dominators
131 // Make sure we process our ancestor before ourselves.
PhiInsn.java 75 super(RegisterSpec.make(resultReg, Type.VOID), block);
  /external/clang/include/clang/Sema/
Ownership.h 42 /// template argument is used to make sure that "Decl" pointers are not
54 static OpaquePtr make(PtrTy P) { OpaquePtr OP; OP.set(P); return OP; } function in class:clang::OpaquePtr
93 static UnionOpaquePtr make(OpaquePtr<T> P) { function in struct:clang::UnionOpaquePtr
  /external/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 12 static A make() { return A(); } function in class:A
116 A a = A::make();
121 const A& a = A::make();
122 foo(A::make());
1003 // CHECK: 1: A::make
1010 // CHECK: 8: A a = A::make();
1021 // CHECK: 1: A::make
1027 // CHECK: 7: const A &a = A::make();
1030 // CHECK: 10: A::make
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, method in class:Dominators
131 // Make sure we process our ancestor before ourselves.

Completed in 1567 milliseconds

1 2 3 4 5 6 78 91011>>