HomeSort by relevance Sort by last modified time
    Searched refs:specs (Results 26 - 50 of 293) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 81 private static class Specs {
87 Specs(String s, String t, String v, boolean sawS, String f) {
151 Specs specs = parseFilterID(id, pos, true); local
152 if (specs == null) {
158 SingleID single = specsToID(specs, FORWARD);
159 single.filter = specs.filter;
181 Specs specsA = null;
182 Specs specsB = null;
581 * at any location between specs or delimiters, and is returne
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLAPISpec.java 70 Map<String, GLAPISpec> specs = new HashMap<String, GLAPISpec>(400); local
88 specs.put(spec.getFunction(), spec);
100 return specs;
GLMessageFormatter.java 37 public GLMessageFormatter(Map<String, GLAPISpec> specs) {
38 mAPISpecs = specs;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProviderConfiguration.java 154 DHParameterSpec[] specs = (DHParameterSpec[])params; local
156 for (int i = 0; i != specs.length; i++)
158 if (specs[i].getP().bitLength() == keySize)
160 return specs[i];
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/tools/
named_entity_trie_generator.js 42 '//(see: http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#tokenizing-character-references and\n' +
43 '//http://www.whatwg.org/specs/web-apps/current-work/multipage/named-character-references.html#named-character-references)\n' +
  /frameworks/base/core/java/android/animation/
StateListAnimator.java 76 * Associates the given animator with the provided drawable state specs so that it will be run
77 * when the View's drawable state matches the specs.
79 * @param specs The drawable state specs to match against
80 * @param animator The animator to run when the specs match
82 public void addState(int[] specs, Animator animator) {
83 Tuple tuple = new Tuple(specs, animator);
282 private Tuple(int[] specs, Animator animator) {
283 mSpecs = specs;
  /external/selinux/libselinux/src/
label_db.c 82 unsigned int nspec; /* number of specs in use */
83 unsigned int limit; /* physical limitation of specs[] */
84 spec_t specs[0]; member in struct:catalog
94 spec_t *spec = &catalog->specs[catalog->nspec];
182 spec = &catalog->specs[i];
201 spec = &catalog->specs[i];
227 total += catalog->specs[i].matches;
333 spec_t *spec = &catalog->specs[i];
label_file.h 119 struct spec *specs; local
128 specs = realloc(data->spec_arr, total_specs * sizeof(*specs));
129 if (!specs) {
135 memset(&specs[data->nspec], 0, new_specs * sizeof(*specs));
137 data->spec_arr = specs;
label_file.c 756 struct spec **specs; local
766 specs = calloc(n+1, sizeof(struct spec *));
767 if (!specs)
769 specs[0] = lookup_common(rec, key, type, false);
770 if (specs[0]) {
771 if (!specs[0]->hasMetaChars) {
773 lr = &specs[0]->lr;
777 prefix_len = specs[0]->prefix_len;
780 specs[i] = lookup_common(rec, aliases[i-1], type, false);
781 if (specs[i])
    [all...]
  /frameworks/native/opengl/tools/glgen/
gen 63 java -classpath src GenerateGL -c specs/jsr239/glspec-1.0 \
64 specs/jsr239/glspec-1.0ext \
65 specs/jsr239/glspec-1.1 \
66 specs/jsr239/glspec-1.1ext \
67 specs/jsr239/glspec-1.1extpack \
68 specs/jsr239/glspec-checks
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsTransitionHelper.java 70 * waiting for the specs to be retrieved.
227 * Creates a future which will later be queried for animation specs for this current transition.
229 * @param composer The implementation that composes the specs on the UI thread.
257 AppTransitionAnimationSpec[] specs
259 mAppTransitionAnimationSpecs.toArray(specs);
261 return specs;
280 * Composes the animation specs for all the tasks in the target stack.
299 List<AppTransitionAnimationSpec> specs = new ArrayList<>();
306 specs.add(composeOffscreenAnimationSpec(task, offscreenTaskRect));
314 specs.add(spec)
    [all...]
  /external/libselinux/src/
label_file.h 122 struct spec *specs; local
131 specs = realloc(data->spec_arr, total_specs * sizeof(*specs));
132 if (!specs) {
138 memset(&specs[data->nspec], 0, new_specs * sizeof(*specs));
140 data->spec_arr = specs;
label_file.c 719 struct spec **specs; local
729 specs = calloc(n+1, sizeof(struct spec *));
730 if (!specs)
732 specs[0] = lookup_common(rec, key, type, false);
733 if (specs[0]) {
734 if (!specs[0]->hasMetaChars) {
736 lr = &specs[0]->lr;
740 prefix_len = specs[0]->prefix_len;
743 specs[i] = lookup_common(rec, aliases[i-1], type, false);
744 if (specs[i])
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-ia64.c 10090 struct rsrc specs[MAX_SPECS]; local
10529 struct rsrc specs[MAX_SPECS]; local
    [all...]
  /external/icu/icu4c/source/i18n/
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...]
  /external/zlib/src/nintendods/
Makefile 38 LDFLAGS = -specs=ds_arm9.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
  /art/runtime/base/
logging.cc 102 std::vector<std::string> specs; local
103 Split(tags, ' ', &specs);
104 for (size_t i = 0; i < specs.size(); ++i) {
106 std::string spec(specs[i]);
  /external/aac/libAACenc/src/
band_nrg.cpp 301 FIXP_DBL NrgMid, NrgSide, specm, specs; local
314 specs = specL - specR;
316 NrgSide = fPow2AddDiv2(NrgSide, specs);
323 specs = specL - specR;
325 NrgSide = fPow2AddDiv2(NrgSide, specs);
  /dalvik/dexgen/src/com/android/dexgen/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));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputFinisher.java 116 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local
117 int size = specs.size();
119 if (hasLocalInfo(specs.get(i))) {
175 RegisterSpecSet specs = ((LocalSnapshot) insn).getLocals(); local
176 int size = specs.size();
178 addConstants(result, specs.get(i));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jar 
  /external/jetty/src/java/org/eclipse/jetty/servlet/
FilterHolder.java 241 String[] specs=mapping.getPathSpecs(); local
242 patterns.addAll(TypeUtil.asList(specs));
  /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/deqp/modules/gles2/functional/
es2fBufferWriteTests.cpp 224 RecreateBufferDataStoreCase (Context& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, VerifyType verify)
226 , m_specs (specs, specs+numSpecs)
619 std::vector<DataStoreSpec> specs; \
620 DataStoreSpecVecBuilder builder(specs); \
622 recreateStoreGroup->addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VERIFY_AS_VERTEX_ARRAY)); \
671 vector<DataStoreSpec> specs(numUploadsPerCase);
673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs.end(); spec++
    [all...]
  /external/deqp/modules/gles3/functional/
es3fBufferWriteTests.cpp 224 RecreateBufferDataStoreCase (Context& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, VerifyType verify)
226 , m_specs (specs, specs+numSpecs)
611 std::vector<DataStoreSpec> specs; \
612 DataStoreSpecVecBuilder builder(specs); \
614 recreateStoreGroup->addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VERIFY_AS_VERTEX_ARRAY)); \
671 vector<DataStoreSpec> specs(numUploadsPerCase);
673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs.end(); spec++
    [all...]

Completed in 1234 milliseconds

12 3 4 5 6 7 8 91011>>