OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getfullyqualifiedname
(Results
1 - 25
of
43
) sorted by null
1
2
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
PackageMatcher.java
39
String cuPackageName = packageDeclaration.getName().
getFullyQualifiedName
();
63
return packageDeclaration.getName().
getFullyQualifiedName
();
EnumConstantLocator.java
59
if (enumConstantDeclaration.getName().
getFullyQualifiedName
().equals(constantName)) {
74
if (enumConstantDeclaration.getName().
getFullyQualifiedName
().equals(constantName)) {
MethodLocator.java
55
&& methodDeclaration.getName().
getFullyQualifiedName
().equals(methodName)
71
if (methodDeclaration.getName().
getFullyQualifiedName
().equals(methodName)) {
TypeLocator.java
90
typeNames.add(currentNode.getName().
getFullyQualifiedName
());
129
if (!node.getName().
getFullyQualifiedName
().equals(subClassName)) {
154
if (abstractTypeDeclaration.getName().
getFullyQualifiedName
().equals(topLevelClassName)) {
181
if (subTypeDeclaration.getName().
getFullyQualifiedName
().equals(subClassName)) {
FieldLocator.java
58
String nodeFieldName = variableDeclarationFragment.getName().
getFullyQualifiedName
();
80
String nodeFieldName = variableDeclarationFragment.getName().
getFullyQualifiedName
();
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java
54
public static String
getFullyQualifiedName
(Type type, boolean runtime) {
61
return
getFullyQualifiedName
(clazz.getComponentType(), runtime) + "[]";
73
return
getFullyQualifiedName
(genericArrayType.getGenericComponentType(), runtime) + "[]";
81
sb.append(
getFullyQualifiedName
(rawType, runtime));
90
sb.append(
getFullyQualifiedName
(typeArgument, runtime));
99
return "? extends " +
getFullyQualifiedName
(wildcardType.getUpperBounds()[0], runtime);
118
buffer.append(
getFullyQualifiedName
(parameterType, false));
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
RenamePackage.java
46
String fqn = packageDeclaration.getName().
getFullyQualifiedName
();
ModifyQualifiedNames.java
50
String fullyQualifiedName = qualifier.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoring.java
149
if (rewrittenImports != null && cu.getPackage().getName().
getFullyQualifiedName
()
150
.equals(mOldPackageName.
getFullyQualifiedName
())) {
158
irw.addImport(mNewPackageName.
getFullyQualifiedName
() + '.'
162
irw.addImport(mNewPackageName.
getFullyQualifiedName
() + '.'
166
irw.addImport(mNewPackageName.
getFullyQualifiedName
() + '.'
232
mOldPackageName.
getFullyQualifiedName
());
234
mNewPackageName.
getFullyQualifiedName
());
369
addQuotes(mNewPackageName.
getFullyQualifiedName
()));
379
String old_package_name_string = mOldPackageName.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java
213
String fqcn1 = type1.
getFullyQualifiedName
();
214
String fqcn2 = type2.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java
538
return ((IType) types[0]).
getFullyQualifiedName
();
630
return ((IType) types[0]).
getFullyQualifiedName
();
710
return createdType.
getFullyQualifiedName
();
736
return createdType.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java
227
String fqn = type.
getFullyQualifiedName
();
238
String fqn = type.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java
162
String type = annotation.getTypeName().
getFullyQualifiedName
();
249
String type = annotation.getTypeName().
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java
83
if (!name.
getFullyQualifiedName
().startsWith("R.")) { //$NON-NLS-1$
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java
282
declaringType.
getFullyQualifiedName
());
288
tmpType.
getFullyQualifiedName
());
309
if (superClassName.equals(superType.
getFullyQualifiedName
())) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java
644
String fqcn = declaringType.
getFullyQualifiedName
();
714
activities.add(type.
getFullyQualifiedName
());
776
String fqcn = declaringType.
getFullyQualifiedName
();
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java
297
String fqcn = type.
getFullyQualifiedName
();
427
String fqcn = type.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java
501
String name = type.
getFullyQualifiedName
('$');
711
String fqcn = subType.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipant.java
130
mOldFqcn = type.
getFullyQualifiedName
();
AndroidTypeRenameParticipant.java
172
mOldFqcn = type.
getFullyQualifiedName
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java
592
mTestText.setText(type.
getFullyQualifiedName
('.'));
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar
/prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java
620
keyword = type.
getFullyQualifiedName
();
[
all
...]
Completed in 593 milliseconds
1
2