| /external/emma/core/java12/com/vladium/emma/instr/ |
| InstrProcessor.java | 72 * @param specs [null is equivalent to no filtering (everything is included)] 74 public synchronized final void setInclExclFilter (final String [] specs) 76 if (specs == null) 79 m_coverageFilter = IInclExclFilter.Factory.create (specs);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/ |
| GLMessageFormatterTest.java | 47 Map<String, GLAPISpec> specs = new HashMap<String, GLAPISpec>(API_SPECS.size()); typedefs 51 specs.put(spec.getFunction(), spec); 54 sGLMessageFormatter = new GLMessageFormatter(specs);
|
| /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
| org.eclipse.equinox.p2.director_2.3.1.v20140221-1852.jar | |
| /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
| org.eclipse.equinox.p2.director_2.3.0.v20130526-0335.jar | |
| /external/deqp/modules/gles31/functional/ |
| es31fFboNoAttachmentTests.cpp | 532 const FboSpec specs[] = local 564 for (int caseNdx = 0; caseNdx < DE_LENGTH_OF_ARRAY(specs); caseNdx++) 566 const FboSpec& spec = specs[caseNdx]; 617 const FboSpec specs[][2] = local 629 for (int specNdx = 0; specNdx < DE_LENGTH_OF_ARRAY(specs); specNdx++) 631 const FboSpec& baseSpec = specs[specNdx][0]; 632 const FboSpec& altSpec = specs[specNdx][1];
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| inspect.py | [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| inspect.py | [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| inspect.py | [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| inspect.py | [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| OutputFinisher.java | 129 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local 130 int size = specs.size(); 132 if (hasLocalInfo(specs.get(i))) { 188 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local 189 int size = specs.size(); 191 addConstants(result, specs.get(i));
|
| LocalList.java | 530 * @param specs {@code non-null;} spec set representing the locals 532 public void snapshot(int address, RegisterSpecSet specs) { 534 System.err.printf("%04x snapshot %s\n", address, specs); 537 int sz = specs.getMaxSize(); 542 RegisterSpec newSpec = filterSpec(specs.get(i));
|
| /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0/ |
| kotlin-gradle-plugin-core-1.0.0.jar | |
| /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-beta-4584/ |
| kotlin-gradle-plugin-core-1.0.0-beta-4584.jar | |
| /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0-rc-1036/ |
| kotlin-gradle-plugin-core-1.0.0-rc-1036.jar | |
| /external/valgrind/coregrind/ |
| m_redir.c | 113 Specs - a set of (soname pattern, fnname pattern) -> redir addr 117 consults. Specs is the current set of specifications as harvested 120 Active is a pure function of Specs and the current symbol table 123 Therefore whenever either Specs or SyminfoState changes, Active 130 for spec in Specs { 155 no duplicates. The difficulty is how to constrain Specs enough to 156 avoid getting into that situation. It's easy to write specs which 168 Specs would generate conflicts. However, considering we don't 170 all changes to Specs are acceptable. But, when recomputing Active 180 - it may be the source of new specs 260 Spec* specs; \/* specs pulled out of seginfo *\/ member in struct:_TopSpec [all...] |
| /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/ |
| QSCustomizer.java | 195 List<String> specs = new ArrayList<>(); local 197 specs.add(tile.getTileSpec()); 199 mTileAdapter.setTileSpecs(specs);
|
| /system/core/base/ |
| logging.cpp | 259 std::vector<std::string> specs = Split(tags, " "); local 260 for (size_t i = 0; i < specs.size(); ++i) { 262 std::string spec(specs[i]);
|
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| LocalList.java | 534 * @param specs {@code non-null;} spec set representing the locals 536 public void snapshot(int address, RegisterSpecSet specs) { 538 System.err.printf("%04x snapshot %s\n", address, specs); 541 int sz = specs.getMaxSize(); 546 RegisterSpec newSpec = filterSpec(specs.get(i));
|
| /external/autotest/server/cros/dynamic_suite/ |
| tools_unittest.py | 39 self.specs = host_spec.order_by_complexity(host_spec_list)
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| LocalList.java | 534 * @param specs {@code non-null;} spec set representing the locals 536 public void snapshot(int address, RegisterSpecSet specs) { 538 System.err.printf("%04x snapshot %s\n", address, specs); 541 int sz = specs.getMaxSize(); 546 RegisterSpec newSpec = filterSpec(specs.get(i));
|
| /dalvik/dx/src/com/android/dx/ssa/back/ |
| FirstFitLocalCombiningAllocator.java | 289 for (ArrayList<RegisterSpec> specs : localVariables.values()) { 297 int sz = specs.size(); 299 RegisterSpec ssaSpec = specs.get(i); 308 if (canMapRegs(specs, ropReg)) { 309 done = tryMapRegs(specs, ropReg, maxCategory, true); 323 * @param specs {@code non-null;} SSA registers to attempt to map 332 ArrayList<RegisterSpec> specs, int ropReg, 335 for (RegisterSpec spec : specs) { 651 * @param specs {@code non-null;} SSA registers to check 655 private boolean canMapRegs(ArrayList<RegisterSpec> specs, int ropReg) [all...] |
| /external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
| FirstFitLocalCombiningAllocator.java | 241 for (ArrayList<RegisterSpec> specs : localVariables.values()) { 249 int sz = specs.size(); 251 RegisterSpec ssaSpec = specs.get(i); 260 if (canMapRegs(specs, ropReg)) { 261 done = tryMapRegs(specs, ropReg, maxCategory, true); 275 * @param specs {@code non-null;} SSA registers to attempt to map 284 ArrayList<RegisterSpec> specs, int ropReg, 287 for (RegisterSpec spec : specs) { 572 * @param specs {@code non-null;} SSA registers to check 576 private boolean canMapRegs(ArrayList<RegisterSpec> specs, int ropReg) [all...] |
| /external/clang/utils/ |
| FindSpecRefs | 830 specs = {} 832 spec = specs[ref.name] = specs.get(ref.name,{}) [all...] |
| /external/autotest/site_utils/suite_scheduler/ |
| task.py | 225 specs = [] 227 specs = re.split('\s*,\s*', branches) 228 Task.CheckBranchSpecs(specs) 229 return keyword, Task(section, suite, specs, pool, num, boards, 433 """Checks if a branch is deemed OK by this instance's branch specs. 441 @return True if b 'fits' with stored specs, False otherwise.
|
| task_unittest.py | 141 specs = ['factory', self._BRANCH_SPEC] 142 self.config.set(self._TASK_NAME, 'branch_specs', ','.join(specs)) 147 specs, self._POOL, self._NUM, 150 for spec in [specs[0], self._BRANCH]: 283 """Test running a recurring task with default branch specs."""
|