HomeSort by relevance Sort by last modified time
    Searched full:ann (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /external/icu/icu4j/main/classes/charset/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/collate/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/core/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options,-overrides
  /external/icu/icu4j/main/classes/currdata/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/langdata/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/localespi/
build.properties 9 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/regiondata/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /external/icu/icu4j/main/classes/translit/
build.properties 6 javac.compilerarg = -Xlint:all,-deprecation,-dep-ann,-options
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 86 BaseAnnotations ann = (BaseAnnotations)att;
87 visitPackageAnnotation(cf, ann);
94 BaseAnnotations ann = (BaseAnnotations)att;
95 visitPackageAnnotation(cf, ann);
105 BaseAnnotations ann = (BaseAnnotations)att;
106 visitClassAnnotation(cf, ann);
113 BaseAnnotations ann = (BaseAnnotations)att;
114 visitClassAnnotation(cf, ann);
139 * @param ann {@code non-null;} annotation
142 BaseAnnotations ann) {
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdatainsertdatamiddle.java 37 * method is then called with offset=9 and arg="Ann".
38 * The method should insert the string "Ann" at position 9.
40 * "Margaret Ann Martin".
77 child.insertData(9, "Ann ");
79 assertEquals("characterdataInsertDataMiddleAssert", "Margaret Ann Martin", childData);
hc_characterdatainsertdatamiddle.java 37 * method is then called with offset=9 and arg="Ann".
38 * The method should insert the string "Ann" at position 9.
40 * "Margaret Ann Martin".
76 child.insertData(9, "Ann ");
78 assertEquals("characterdataInsertDataMiddleAssert", "Margaret Ann Martin", childData);
  /frameworks/opt/datetimepicker/res/values-fr/
strings.xml 26 <string name="year_picker_description" msgid="6963340404644587098">"Liste des années"</string>
28 <string name="select_year" msgid="2603330600102539372">"Sélectionnez une année"</string>
  /frameworks/opt/datetimepicker/res/values-fr-rCA/
strings.xml 26 <string name="year_picker_description" msgid="6963340404644587098">"Liste des années"</string>
28 <string name="select_year" msgid="2603330600102539372">"Sélectionnez une année"</string>
  /external/opencv3/samples/cpp/
points_classifier.cpp 227 Ptr<ANN_MLP> ann = ANN_MLP::create(); local
228 ann->setLayerSizes(layer_sizes);
229 ann->setActivationFunction(ANN_MLP::SIGMOID_SYM, 1, 1);
230 ann->setTermCriteria(TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS, 300, FLT_EPSILON));
231 ann->setTrainMethod(ANN_MLP::BACKPROP, 0.001);
232 ann->train(tdata);
233 predict_and_paint(ann, imgDst);
393 imshow( "ANN", imgDst );
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/der/
test_encoder.py 41 self.s.getComponentByName('status').setComponentByPosition(0, 'ann')
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
AbstractInjectorGrapherTest.java 90 private static @interface Ann {}
117 iaAnnNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class, Ann.class)), null);
127 bind(IA.class).annotatedWith(Ann.class).to(A.class);
173 bind(IA.class).annotatedWith(Ann.class).to(A.class);
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 158 for (const auto *Ann : D->specific_attrs<AnnotateAttr>())
159 if (Ann->getAnnotation() ==
219 for (const auto *Ann : M->specific_attrs<AnnotateAttr>())
220 if (Ann->getAnnotation() == "objc_no_direct_instance_variable_assignment")
  /external/snakeyaml/src/etc/
announcement.msg 3 Subject: [ANN] SnakeYAML-1.17 final is available
  /toolchain/binutils/binutils-2.25/gprof/
source.c 29 #define EXT_ANNO "-ann" /* Postfix of annotated files. */
199 /* foo.cpp-ann can overwrite foo.cpp due to silent truncation of
211 strcat (fname, ".ann");
  /external/opencv3/modules/ml/src/
ann_mlp.cpp 858 ann = _ann;
867 ANN_MLPImpl* ann;
877 int ivcount = ann->layer_sizes.front();
878 int ovcount = ann->layer_sizes.back();
881 int i, j, k, l_count = ann->layer_count();
884 vector<double> _buf(ann->max_lsize*dcount0*2);
885 double* buf[] = { &_buf[0], &_buf[ann->max_lsize*dcount0] };
890 x[i].resize(ann->layer_sizes[i]*dcount0);
891 df[i].resize(ann->layer_sizes[i]*dcount0);
898 const double* w = ann->weights[0].ptr<double>()
    [all...]
  /external/icu/android_icu4j/resources/android/icu/impl/duration/impl/data/
pfd_it.xml 88 <mediumName>ann.</mediumName>
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/
pfd_it.xml 88 <mediumName>ann.</mediumName>
  /external/opencv3/modules/ml/test/
test_precomp.hpp 22 #define CV_ANN "ann"
test_mltests2.cpp 77 // 5. ann
84 CV_Error( CV_StsBadArg, "incorrect ann train method string" );
131 float ann_calc_error( Ptr<StatModel> ann, Ptr<TrainData> _data, map<int, int>& cls_map, int type, vector<float> *resp_labels )
163 ann->predict( sample, output );
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 36 String token2 = "Ann Lee <annlee@example.com> (secret)";
82 String token2 = "Ann Lee <annlee@example.com> (secret)";

Completed in 635 milliseconds

1 2 3 4 5 6 7