HomeSort by relevance Sort by last modified time
    Searched refs:analyze (Results 1 - 24 of 24) sorted by null

  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 118 * @param file The file to analyze.
123 public LayoutAnalysis analyze(File file) { method in class:LayoutAnalyzer
128 return analyze(file.getPath(), in);
142 * @param stream The stream to analyze.
146 public LayoutAnalysis analyze(InputStream stream) { method in class:LayoutAnalyzer
147 return analyze("<unknown>", stream);
150 private LayoutAnalysis analyze(String name, InputStream stream) { method in class:LayoutAnalyzer
153 return analyze(name, document);
165 * @param content The XML document to analyze.
170 public LayoutAnalysis analyze(String content) method in class:LayoutAnalyzer
183 public LayoutAnalysis analyze(String name, String content) { method in class:LayoutAnalyzer
203 public LayoutAnalysis analyze(Document document) { method in class:LayoutAnalyzer
216 public LayoutAnalysis analyze(String name, Document document) { method in class:LayoutAnalyzer
221 analyze(analysis, root); method
229 private void analyze(LayoutAnalysis analysis, Node node) { method in class:LayoutAnalyzer
238 analyze(analysis, child); method
    [all...]
  /sdk/layoutopt/app/src/com/android/layoutopt/cli/
Main.java 30 * analyze and optimize Android layout files.
56 analyze(analyzer, file); method
63 private static void analyze(LayoutAnalyzer analyzer, File file) { method in class:Main
64 LayoutAnalysis analysis = analyzer.analyze(file);
83 System.out.println("usage: layoutopt <directories/files to analyze>");
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 72 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
106 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
126 Frame[] frames = analyzer.analyze(clazz, info);
151 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2());
162 analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2());
174 analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2());
185 analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2());
192 analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2());
ErrorFinder.java 57 analyzer.analyze(clazz, method.getMethodInfo2());
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Main.java 97 aa.analyze();
AsmAnalyzer.java 83 public void analyze() throws IOException, LogAbortException { method in class:AsmAnalyzer
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 107 aa.analyze();
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 87 frames = (new Analyzer()).analyze(method.getDeclaringClass(), info);
Analyzer.java 42 * // Method to analyze
74 * Frame[] frames = analyzer.analyze(clazz, method);
116 * @param method the method to analyze
121 public Frame[] analyze(CtClass clazz, MethodInfo method) throws BadBytecode { method in class:Analyzer
158 * @param method the method to analyze
163 public Frame[] analyze(CtMethod method) throws BadBytecode { method in class:Analyzer
164 return analyze(method.getDeclaringClass(), method.getMethodInfo2());
  /external/llvm/lib/CodeGen/
SplitKit.h 39 /// SplitAnalysis - Analyze a LiveInterval, looking for live range splitting
107 /// DidRepairRange - analyze was forced to shrinkToUses().
122 /// analyze - set CurLI to the specified interval, and analyze how it may be
124 void analyze(const LiveInterval *li);
127 /// by analyze(). This really shouldn't happen, but sometimes the coalescer
131 /// clear - clear all data structures so SplitAnalysis is ready to analyze a
175 /// analyze(li).
RegAllocGreedy.cpp     [all...]
SplitKit.cpp 141 DEBUG(dbgs() << "Analyze counted "
290 void SplitAnalysis::analyze(const LiveInterval *li) { function in class:SplitAnalysis
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintRunner.java 163 mLint.analyze(Collections.singletonList(file));
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 216 analyze(ci, pos, pos + tb.length); method
231 protected void analyze(CodeIterator ci, int begin, int end) method in class:Liveness
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 104 frames = ((new Analyzer())).analyze(clazz, minfo);
  /sdk/lint/cli/src/com/android/tools/lint/
Main.java 134 System.err.println("No files to analyze.");
146 analyzer.analyze(files);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/api/
Lint.java 63 * Analyze the given file (which can point to an Android project). Issues found
68 public void analyze(List<File> files) { method in class:Lint
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
AbstractCheckTest.java 69 analyzer.analyze(files);
  /sdk/attribute_stats/src/
Analyzer.java 128 new Analyzer(directories, metadataFile).analyze();
131 private void analyze() { method in class:Analyzer
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 104 int analysis = analyze(compiler, stepOpCodePos, stepIndex);
165 int analysis = analyze(compiler, firstStepPos, 0);
650 * Analyze the location path and return 32 bits that give information about
664 private static int analyze( method in class:WalkerFactory
832 int analysis = analyze(compiler, stepOpCodePos, stepIndex);
    [all...]
  /external/clang/tools/scan-build/
scan-build 944 -analyze-headers - Also analyze functions in #included files.
994 is far less precise but can more quickly analyze code.
1025 exec $Clang, ('--analyze', '-x', $lang, '-', '-###');
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 97 * <li>Render the layout at multiple screen sizes and analyze how the widgets move and
1499 analyze(view, true); method
1555 private View analyze(CanvasViewInfo view, boolean isRoot) { method in class:RelativeLayoutConversionHelper.EdgeList
1594 analyze(childView, false); method
1619 analyze(child, false); method
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 37 static reg_errcode_t analyze (regex_t *preg);
825 /* Analyze the tree and create the nfa. */
826 err = analyze (preg);
1140 analyze (regex_t *preg) function
    [all...]
  /external/libxml2/
valid.c     [all...]

Completed in 629 milliseconds