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

1 2

  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecSet.java 32 * {@code non-null;} array of register specs, where each element is
36 private final RegisterSpec[] specs; field in class:RegisterSpecSet
50 this.specs = new RegisterSpec[maxSize];
62 RegisterSpec[] otherSpecs = otherSet.specs;
63 int len = specs.length;
70 RegisterSpec s1 = specs[i];
88 int len = specs.length;
92 RegisterSpec spec = specs[i];
103 int len = specs.length;
110 RegisterSpec spec = specs[i]
    [all...]
LocalVariableInfo.java 77 * @param specs {@code non-null;} the register set to associate with the block
79 public void setStarts(int label, RegisterSpecSet specs) {
82 if (specs == null) {
83 throw new NullPointerException("specs == null");
87 blockStarts[label] = specs;
102 * @param specs {@code non-null;} the register set to merge into the start set
108 public boolean mergeStarts(int label, RegisterSpecSet specs) {
113 setStarts(label, specs);
118 newStart.intersect(specs, true);
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 45 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); local
47 for (int i = 0; i < specs.length; ++ i)
49 final String spec = specs [i];
73 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); local
75 for (int i = 0; i < specs.length; ++ i)
77 final String spec = specs [i];
95 final String [] specs = Strings.merge (new String [] {value}, COMMA_DELIMITERS, true); local
97 for (int i = 0; i < specs.length; ++ i)
99 final String spec = specs [i];
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 78 * @param specs {@code non-null;} the register set to associate with the block
80 public void setStarts(int index, RegisterSpecSet specs) {
83 if (specs == null) {
84 throw new NullPointerException("specs == null");
88 blockStarts[index] = specs;
103 * @param specs {@code non-null;} the register set to merge into the start set
109 public boolean mergeStarts(int index, RegisterSpecSet specs) {
114 setStarts(index, specs);
119 newStart.intersect(specs, true);
  /external/emma/core/java12/com/vladium/emma/filter/
IInclExclFilter.java 60 final String [] specs = new String [_specs.size ()]; local
61 _specs.toArray (specs);
63 return create (specs);
67 public static IInclExclFilter create (final String [] specs)
69 if ((specs == null) || (specs.length == 0))
75 for (int i = 0, iLimit = specs.length; i < iLimit; ++ i)
77 final String spec = specs [i];
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
band_nrg.c 79 Word32 specm, specs; local
85 specs = l - r;
87 accuSide = L_add(accuSide, MULHIGH(specs, specs));
  /external/chromium/third_party/icu/source/i18n/
tridpars.cpp 50 TransliteratorIDParser::Specs::Specs(const UnicodeString& s, const UnicodeString& t,
114 Specs* specsA = NULL;
115 Specs* specsB = NULL;
217 Specs* specs = parseFilterID(id, pos, TRUE); local
218 if (specs == NULL) {
224 SingleID* single = specsToID(specs, FORWARD);
226 single->filter = specs->filter;
228 delete specs;
    [all...]
tridpars.h 66 class Specs : public UMemory {
73 Specs(const UnicodeString& s, const UnicodeString& t,
79 Specs(const Specs &other); // forbid copying of this class
80 Specs &operator=(const Specs &other); // forbid copying of this class
308 * at any location between specs or delimiters, and is returned
310 * @return a Specs object, or null if the parse failed. If
313 * pattern is returned in the Specs object, otherwise the returned
317 static Specs* parseFilterID(const UnicodeString& id, int32_t& pos
    [all...]
ucol_tok.cpp 1366 uint16_t specs = 0; local
    [all...]
  /external/icu4c/i18n/
tridpars.cpp 50 TransliteratorIDParser::Specs::Specs(const UnicodeString& s, const UnicodeString& t,
114 Specs* specsA = NULL;
115 Specs* specsB = NULL;
217 Specs* specs = parseFilterID(id, pos, TRUE); local
218 if (specs == NULL) {
224 SingleID* single = specsToID(specs, FORWARD);
226 single->filter = specs->filter;
228 delete specs;
    [all...]
tridpars.h 66 class Specs : public UMemory {
73 Specs(const UnicodeString& s, const UnicodeString& t,
79 Specs(const Specs &other); // forbid copying of this class
80 Specs &operator=(const Specs &other); // forbid copying of this class
308 * at any location between specs or delimiters, and is returned
310 * @return a Specs object, or null if the parse failed. If
313 * pattern is returned in the Specs object, otherwise the returned
317 static Specs* parseFilterID(const UnicodeString& id, int32_t& pos
    [all...]
ucol_tok.cpp 1421 uint16_t specs = 0; local
    [all...]
  /frameworks/base/opengl/tools/glgen/
gen 47 java -classpath src GenerateGL -c specs/jsr239/glspec-1.0 specs/jsr239/glspec-1.0ext specs/jsr239/glspec-1.1 specs/jsr239/glspec-1.1ext specs/jsr239/glspec-1.1extpack specs/jsr239/glspec-checks
  /external/zlib/nintendods/
Makefile 38 LDFLAGS = -specs=ds_arm9.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 107 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local
108 int size = specs.size();
110 if (hasLocalInfo(specs.get(i))) {
166 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local
167 int size = specs.size();
169 addConstants(result, specs.get(i));
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/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 131 final String [] specs = m_filterCfg.getFilterSpecs (); local
132 if ((specs != null) && (specs.length > 0))
135 super.createArg ().setValue (Strings.toListForm (specs, ','));
  /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);
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 234 for (ArrayList<RegisterSpec> specs : localVariables.values()) {
242 int sz = specs.size();
244 RegisterSpec ssaSpec = specs.get(i);
254 done = tryMapRegs(specs, ropReg, maxCategory, true);
267 * @param specs {@code non-null;} SSA registers to attempt to map
276 ArrayList<RegisterSpec> specs, int ropReg,
279 for (RegisterSpec spec : specs) {
922 * the definition specs of all the registers.
    [all...]
  /external/emma/lib/
emma_ant.jar 
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java 142 * @param specs [null is equivalent to no filtering (everything is included)]
144 public synchronized final void setInclExclFilter (final String [] specs)
146 if (specs == null)
149 m_coverageFilter = IInclExclFilter.Factory.create (specs);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
cmsccoll.c 539 uint16_t specs = 0; local
574 specs = src.parsedToken.flags;
577 varT = (UBool)((specs & UCOL_TOK_VARIABLE_TOP) != 0);
578 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
631 before = (UBool)((specs & UCOL_TOK_BEFORE) != 0);
633 beforeStrength = (specs & UCOL_TOK_BEFORE)-1;
919 uint16_t specs = 0; local
955 specs = src.parsedToken.flags;
958 varT = (UBool)((specs & UCOL_TOK_VARIABLE_TOP) != 0);
959 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0)
1088 uint16_t specs = 0; local
2923 uint16_t specs = 0; local
    [all...]
  /external/icu4c/test/cintltst/
cmsccoll.c 539 uint16_t specs = 0; local
574 specs = src.parsedToken.flags;
577 varT = (UBool)((specs & UCOL_TOK_VARIABLE_TOP) != 0);
578 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0);
631 before = (UBool)((specs & UCOL_TOK_BEFORE) != 0);
633 beforeStrength = (specs & UCOL_TOK_BEFORE)-1;
919 uint16_t specs = 0; local
955 specs = src.parsedToken.flags;
958 varT = (UBool)((specs & UCOL_TOK_VARIABLE_TOP) != 0);
959 top_ = (UBool)((specs & UCOL_TOK_TOP) != 0)
1088 uint16_t specs = 0; local
2927 uint16_t specs = 0; local
    [all...]
  /external/chromium/third_party/icu/source/tools/dumpce/
dumpce.cpp 253 uint8_t specs = 0; local
1065 uint8_t specs = 0; local
1168 uint8_t specs = 0; local
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 253 uint8_t specs = 0; local
1065 uint8_t specs = 0; local
1168 uint8_t specs = 0; local
    [all...]

Completed in 518 milliseconds

1 2