HomeSort by relevance Sort by last modified time
    Searched refs:fqn (Results 1 - 25 of 492) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/output/
BasicOutputSourceFileGenerator.java 38 String fqn = PackageMatcher.getPackageName(cu); local
39 String packageSubDir = fqn.replace(".", File.separator);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
RenamePackage.java 46 String fqn = packageDeclaration.getName().getFullyQualifiedName(); local
47 if (!fqn.startsWith(toMatch)) {
50 String newFqn = replacement + fqn.substring(toMatch.length());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestDragElement.java 53 public TestDragElement(String fqn) {
54 this(fqn, null, null, null);
91 public static TestDragElement create(String fqn, Rect bounds) {
92 return create(fqn).setBounds(bounds);
95 public static TestDragElement create(String fqn) {
96 return new TestDragElement(fqn);
150 return "TestDragElement [fqn=" + mFqcn + ", attributes=" + mAttributes + ", bounds="
LayoutTestBase.java 191 protected void initialize(IViewRule rule, String fqn) {
192 rule.onInitialize(fqn, new TestRulesEngine(fqn));
198 public TestRulesEngine(String fqn) {
199 mFqn = fqn;
  /external/selinux/libsepol/cil/src/
cil_policy.c 127 if (strcmp(attr->datum.fqn, "cil_gen_require") != 0) {
134 if (strcmp(attr->datum.fqn, "cil_gen_require") != 0) {
150 if (strcmp(role->datum.fqn, "object_r") != 0) {
191 fprintf(out, "%s %s;\n", kind, DATUM(i1->data)->fqn);
209 fprintf(out, "%s%s", lead, DATUM(first)->fqn);
216 fprintf(out, "%s%s", lead, DATUM(first)->fqn);
223 fprintf(out, "%s", DATUM(last)->fqn);
229 fprintf(out, "%s%s", lead, DATUM(first)->fqn);
236 fprintf(out, "%s", DATUM(last)->fqn);
243 fprintf(out, "%s", DATUM(level->sens)->fqn);
    [all...]
cil_symtab.h 41 char *fqn; member in struct:cil_symtab_datum
cil_find.c 310 if (t1->fqn != CIL_KEY_SELF && t2->fqn != CIL_KEY_SELF) {
313 if (t1->fqn == CIL_KEY_SELF && t2->fqn == CIL_KEY_SELF) {
315 } else if (t1->fqn == CIL_KEY_SELF) {
323 } else if (t2->fqn == CIL_KEY_SELF) {
cil_binary.c 86 *sepol_user = hashtab_search(pdb->p_users.table, datum->fqn);
88 cil_log(CIL_INFO, "Failed to find user %s in sepol hashtab\n", datum->fqn);
97 *sepol_role = hashtab_search(pdb->p_roles.table, datum->fqn);
99 cil_log(CIL_INFO, "Failed to find role %s in sepol hashtab\n", datum->fqn);
108 *sepol_type = hashtab_search(pdb->p_types.table, datum->fqn);
110 cil_log(CIL_INFO, "Failed to find type %s in sepol hashtab\n", datum->fqn);
119 *sepol_class = hashtab_search(pdb->p_classes.table, datum->fqn);
121 cil_log(CIL_INFO, "Failed to find class %s in sepol hashtab\n", datum->fqn);
130 *sepol_cat = hashtab_search(pdb->p_cats.table, datum->fqn);
132 cil_log(CIL_INFO, "Failed to find category %s in sepol hashtab\n", datum->fqn);
    [all...]
cil.c 277 (*db)->selftype->datum.fqn = CIL_KEY_SELF;
    [all...]
cil_fqn.c 65 datum->fqn = cil_strpool_add(prefix);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 161 String fqn = repository.getFullClassName(element); local
162 assert fqn.length() > 0 : element.getNodeName();
163 RenderMode renderMode = repository.getRenderMode(fqn);
166 if (fqn.equals(FQCN_LIST_VIEW) || fqn.equals(FQCN_EXPANDABLE_LIST_VIEW)) {
170 } else if (fqn.equals(FQCN_DATE_PICKER) || fqn.equals(FQCN_TIME_PICKER)) {
345 String fqn = repository.getFullClassName(e); local
346 fqn = fqn.substring(fqn.lastIndexOf('.') + 1)
479 String fqn = repository.getFullClassName((Element) node.getXmlNode()); local
    [all...]
CustomViewFinder.java 227 String fqn = type.getFullyQualifiedName();
228 thirdPartyViews.add(fqn);
238 String fqn = type.getFullyQualifiedName();
239 fqn = fqn.replace('$', '.');
240 customViews.add(fqn);
  /external/python/cpython2/PC/VS7.1/
build_ssl.py 68 fqn = os.path.join(s, fname)
69 if os.path.isdir(fqn) and fname.startswith("openssl-"):
70 candidates.append(fqn)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 401 public static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
403 return new ViewElementDescriptor(name, name, fqn, "", "", new AttributeDescriptor[0],
406 return new ViewElementDescriptor(name, fqn);
410 public static UiViewElementNode createNode(UiViewElementNode parent, String fqn,
412 String name = fqn.substring(fqn.lastIndexOf('.') + 1);
413 ViewElementDescriptor descriptor = createDesc(name, fqn, hasChildren);
421 public static UiViewElementNode createNode(String fqn, boolean hasChildren) {
422 return createNode(null, fqn, hasChildren);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Splitter.h 61 std::string fqn; member in class:llvm::LoopSplitter
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
run_tests 28 fqn = dirpath.replace(
33 module = __import__(fqn,fromlist=[True])
35 print "While importing [%s]\n" % fqn
  /external/python/cpython2/PC/VC6/
build_ssl.py 72 fqn = os.path.join(s, fname)
73 if os.path.isdir(fqn) and fname.startswith("openssl-"):
74 candidates.append(fqn)
  /external/python/cpython2/PC/VS8.0/
build_ssl.py 77 fqn = os.path.join(s, fname)
78 if os.path.isdir(fqn) and fname.startswith("openssl-"):
79 candidates.append(fqn)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtilsTest.java 189 private static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
191 return new ViewElementDescriptor(name, name, fqn, "", "", new AttributeDescriptor[0],
194 return new ViewElementDescriptor(name, fqn);
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-gradle/26.2.0-alpha16/
lint-gradle-26.2.0-alpha16.jar 
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistEnumDeclaration.java 255 private SymbolReference<? extends ResolvedValueDeclaration> solveSymbolForFQN(String symbolName, TypeSolver typeSolver, String fqn) {
256 if (fqn == null) {
260 ResolvedReferenceTypeDeclaration fqnTypeDeclaration = typeSolver.solveType(fqn);
JavassistInterfaceDeclaration.java 241 private SymbolReference<? extends ResolvedValueDeclaration> solveSymbolForFQN(String symbolName, TypeSolver typeSolver, String fqn) {
242 if (fqn == null) {
246 ResolvedReferenceTypeDeclaration fqnTypeDeclaration = typeSolver.solveType(fqn);
  /external/tensorflow/tensorflow/contrib/py2tf/converters/
call_trees.py 102 def _should_compile(self, node, fqn):
103 for i in range(1, len(fqn)):
104 if fqn[:i] in self.uncompiled_modules:
173 assert anno.hasanno(node.func, 'fqn')
175 target_fqn = anno.getanno(node.func, 'fqn')
214 if anno.hasanno(node.value.func, 'fqn'):
215 target_fqn = anno.getanno(node.value.func, 'fqn')
  /system/media/camera/docs/
metadata_validate.py 73 fqn = ".".join(parents)
75 return fqn
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 45 public static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
47 return new ViewElementDescriptor(name, name, fqn, "", "", new AttributeDescriptor[0],
50 return new ViewElementDescriptor(name, fqn);
54 public static UiViewElementNode createNode(UiViewElementNode parent, String fqn,
56 String name = fqn.substring(fqn.lastIndexOf('.') + 1);
57 ViewElementDescriptor descriptor = createDesc(name, fqn, hasChildren);
65 public static UiViewElementNode createNode(String fqn, boolean hasChildren) {
66 return createNode(null, fqn, hasChildren);
    [all...]

Completed in 683 milliseconds

1 2 3 4 5 6 7 8 91011>>