HomeSort by relevance Sort by last modified time
    Searched defs:fv (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FieldNode.java 106 FieldVisitor fv = cv.visitField(access, name, desc, signature, value); local
107 if (fv == null) {
114 an.accept(fv.visitAnnotation(an.desc, true));
119 an.accept(fv.visitAnnotation(an.desc, false));
123 fv.visitAttribute((Attribute) attrs.get(i));
125 fv.visitEnd();
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckFieldAdapter.java 41 private final FieldVisitor fv; field in class:CheckFieldAdapter
45 public CheckFieldAdapter(final FieldVisitor fv) {
46 this.fv = fv;
55 return new CheckAnnotationAdapter(fv.visitAnnotation(desc, visible));
63 fv.visitAttribute(attr);
69 fv.visitEnd();
TraceFieldVisitor.java 50 protected FieldVisitor fv; field in class:TraceFieldVisitor
57 if (fv != null) {
58 ((TraceAnnotationVisitor) av).av = fv.visitAnnotation(desc, visible);
66 if (fv != null) {
67 fv.visitAttribute(attr);
74 if (fv != null) {
75 fv.visitEnd();
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p21.cpp 32 int fv = f(g); // okay variable
  /external/clang/test/CodeGen/
overloadable.c 21 float fv = 3.0f; local
27 fv = f(fv);
  /external/opencv3/modules/calib3d/src/
epnp.h 26 fv = cameraMatrix.at<T> (1, 1);
38 us[2 * i + 1] = ipoints.at<IpointType>(i).y*fv + vc;
74 double uc, vc, fu, fv; member in class:cv::epnp
upnp.h 69 fv = 1;
124 double uc, vc, fu, fv; member in class:upnp
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 163 std::vector<std::string> fv; local
164 fv.push_back("+vfp3");
165 fv.push_back("+d16");
166 fv.push_back("-neon");
167 fv.push_back("-neonfp");
168 config->setFeatureString(fv);
174 std::vector<std::string> fv; local
175 fv.push_back("+sse3");
176 config->setFeatureString(fv);
  /external/clang/test/SemaCXX/
cxx1y-init-captures.cpp 5 template<class ... Ts> char fv(Ts ... ts) { return 0; } function in namespace:variadic_expansion
19 fv([&a(t)]()->decltype(auto) {
26 fv([&a(t)]()->decltype(auto) { //expected-error 3{{captured}}
  /external/deqp/framework/common/
tcuTextureUtil.hpp 135 inline deUint8 floatToU8 (float fv)
137 union { float fv; deUint32 uv; deInt32 iv; } v; member in union:tcu::__anon9080
138 v.fv = fv;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 156 FieldVisitor fv; local
160 fv =
167 fv.visitEnd();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
BrentOptimizer.java 111 double fv = fx; local
127 r = (x - w) * (fx - fv);
199 fv = fw;
212 fv = fw;
215 } else if (fu <= fv || v == x || v == w) {
217 fv = fu;
  /external/v8/src/compiler/
representation-change.cc 375 float const fv = OpParameter<float>(node); local
378 IsInt32Double(fv))) {
379 return MakeTruncatedInt32Constant(fv);
385 double const fv = OpParameter<double>(node); local
388 IsInt32Double(fv))) {
389 return MakeTruncatedInt32Constant(fv);
machine-operator-reducer.cc 1079 float fv = static_cast<float>(v); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
command_registry.py 44 fv: name of the flag_values object where this flag should
56 fv = messages.StringField(7) variable in class:FlagInfo
156 extended_field, request_type, fv='fv'))
162 description='Filename to use for upload.', fv='fv',
171 description=mime_description, fv='fv', special=True)
176 description='Filename to use for download.', fv='fv',
    [all...]
  /external/clang/test/OpenMP/
atomic_capture_codegen.cpp 20 float fv, fx; variable
223 dv = fx = fx + fv;
242 {fv = dx; dx = dv - dx;}
484 {fx = fx * ulv; fv = fx;}
548 {cix = fv / cix; civ = cix;}
    [all...]
atomic_read_codegen.c 20 float fv, fx; variable
129 fv = fx;
207 fv = cix;
atomic_update_codegen.cpp 20 float fv, fx; variable
206 fx = fx + fv;
496 cix = fv / cix;
    [all...]
atomic_write_codegen.c 20 float fv, fx; variable
129 fx = fv;
242 cix = fv;
  /external/vboot_reference/futility/
cmd_show.c 38 uint8_t *fv; member in struct:local_data_s
281 uint8_t *fv_data = option.fv;
492 if (option.fv) {
494 kernel_blob = option.fv;
559 " -f|--fv FILE Verify this payload (FW_MAIN_A/B)\n"
579 {"fv", 1, 0, 'f'},
628 option.fv = ReadFile(optarg, &option.fv_size);
629 if (!option.fv) {
726 if (option.fv)
727 free(option.fv);
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
atof-ieee.c 679 float fv;
691 memcpy (&fv, &arr[0], sizeof (float));
692 sprintf (sbuf + strlen (sbuf), "%x %x %.12g\n", arr[0], arr[1], fv);
677 float fv; local
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.cpp 182 " highp vec4 fv = vec4(f0, f1, 1.0f-f0, 1.0f-f1);\n"
183 " o_color = " + glu::getDataTypeName(outputType) + "(u_gradientMin + (u_gradientMax-u_gradientMin)*fv);\n"
220 const tcu::Vec4 fv = Vec4(f0, f1, 1.0f-f0, 1.0f-f1); local
222 const tcu::Vec4 color = gradientMin + (gradientMax-gradientMin) * fv;
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassReader.java 662 FieldVisitor fv = classVisitor.visitField(access, local
668 if (fv != null) {
679 fv.visitAnnotation(readUTF8(v, c), j != 0));
687 fv.visitAttribute(cattrs);
690 fv.visitEnd();
1683 float[] fv = new float[size]; local
    [all...]
  /external/v8/test/unittests/compiler/
scheduler-unittest.cc 112 Node* fv = graph->NewNode(common->Int32Constant(7)); local
118 graph->NewNode(common->Phi(MachineRepresentation::kTagged, 2), tv, fv, m);
228 Node* fv = graph()->NewNode(common()->Int32Constant(7)); local
248 fv, phi1, m);
312 Node* fv = graph()->NewNode(common()->Int32Constant(7)); local
321 Node* add = graph()->NewNode(&kIntAdd, ind, fv);
331 fv, ind, m);
504 Node* fv = graph()->NewNode(common()->Int32Constant(7)); local
510 tv, fv, m);
529 Node* fv = graph()->NewNode(common()->Int32Constant(7)) local
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_math_agree.java 100 float[] fv = new float[dim]; local
102 fv[i] = rand.nextFloat();
103 return fv;

Completed in 9750 milliseconds

1 2 3 4 5