HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 76 - 100 of 258) sorted by null

1 2 34 5 6 7 8 91011

  /external/testng/src/main/java/org/testng/reporters/
XMLReporter.java 147 Properties props = new Properties(); local
148 props.setProperty(XMLReporterConfig.ATTR_NAME, suite.getName());
171 addDurationAttributes(config, props, minStartDate, maxEndDate);
172 return props;
  /build/soong/cc/
sanitize.go 180 func (sanitize *sanitize) props() []interface{} { func
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
LzmaCompress.c 104 CLzmaEncProps props; local
106 LzmaEncProps_Init(&props);
107 LzmaEncProps_Normalize(&props);
160 &props, outBuffer, &outPropsSize, 0,
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 96 static Hashtable<String, String> props = null; field in class:Support_Configuration
106 Hashtable<String, String> props = new Hashtable<String, String>(); local
131 load(in, props);
135 if (props.size() == 0) {
140 value = props.get("DomainAddress");
145 value = props.get("WebName");
150 value = props.get("TestResourcesDir");
154 value = props.get("HomeAddressResponse");
159 value = props.get("HomeAddressSoftware");
164 value = props.get("ProxyServerTestHost")
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 422 Properties props = getConfigurationFile(contextClassLoader, FACTORY_PROPERTIES); local
427 if (props != null) {
428 String useTCCLStr = props.getProperty(TCCL_KEY);
563 if (props != null) {
570 String factoryClass = props.getProperty(FACTORY_PROPERTY);
624 if( props!=null ) {
625 Enumeration names = props.propertyNames();
628 String value = props.getProperty(name);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
ObjectFactory.java 349 Properties props = new Properties(); local
350 props.load(fis);
351 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
ObjectFactory.java 349 Properties props = new Properties(); local
350 props.load(fis);
351 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.java 323 Properties props = new Properties(); local
325 props.load(is);
336 int totalEntries = props.size();
339 Enumeration keys = props.keys();
343 String val = props.getProperty(javaName);
ObjectFactory.java 348 Properties props = new Properties(); local
349 props.load(fis);
350 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectFactory.java 349 Properties props = new Properties(); local
350 props.load(fis);
351 factoryClassName = props.getProperty(factoryId);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
ObjectFactory.java 349 Properties props = new Properties(); local
350 props.load(fis);
351 factoryClassName = props.getProperty(factoryId);
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
Util.java 70 Properties props = new Properties(); local
74 props.load(in);
78 return Maps.fromProperties(props);
86 Map<String, T> props, String prefix) {
88 for (Map.Entry<String, T> entry : props.entrySet()) {
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 86 PropsTy &props = AtProps[RawLoc]; local
87 props.push_back(Prop);
122 PropsTy &props = findAtLoc->second; local
123 for (PropsTy::iterator I = props.begin(), E = props.end(); I != E; ++I) {
135 PropsTy &props = I->second; local
136 if (!getPropertyType(props)->isObjCRetainableType())
138 if (hasIvarWithExplicitARCOwnership(props))
142 rewriteProperty(props, atLoc);
148 PropsTy &props, SourceLocation atLoc
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
UnicodeSetFormat.java 174 BitSet props = new BitSet(); local
178 props.set(i);
182 if (props.get(i)) continue;
  /external/conscrypt/common/src/main/java/org/conscrypt/
Conscrypt.java 82 Properties props = new Properties(); external variable declarations
83 props.load(stream);
84 major = Integer.parseInt(props.getProperty("org.conscrypt.version.major", "-1"));
85 minor = Integer.parseInt(props.getProperty("org.conscrypt.version.minor", "-1"));
86 patch = Integer.parseInt(props.getProperty("org.conscrypt.version.patch", "-1"));
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
Conscrypt.java 88 Properties props = new Properties(); external variable declarations
89 props.load(stream);
90 major = Integer.parseInt(props.getProperty("com.android.org.conscrypt.version.major", "-1"));
91 minor = Integer.parseInt(props.getProperty("com.android.org.conscrypt.version.minor", "-1"));
92 patch = Integer.parseInt(props.getProperty("com.android.org.conscrypt.version.patch", "-1"));
  /external/deqp/external/openglcts/modules/glesext/geometry_shader/
esextcGeometryShaderProgramResource.cpp 408 glw::GLenum props[] = { GL_ATOMIC_COUNTER_BUFFER_INDEX }; local
412 props, 1, /* bufSize */
418 props, 1, /* bufSize */
622 glw::GLenum props[] = { m_glExtTokens.REFERENCED_BY_GEOMETRY_SHADER }; local
626 props, 1, /* bufSize */
  /external/drm_hwcomposer/
drmdevice.cpp 448 drmModeObjectPropertiesPtr props; local
450 props = drmModeObjectGetProperties(fd(), obj_id, obj_type);
451 if (!props) {
457 for (int i = 0; !found && (size_t)i < props->count_props; ++i) {
458 drmModePropertyPtr p = drmModeGetProperty(fd(), props->props[i]);
460 property->Init(p, props->prop_values[i]);
466 drmModeFreeObjectProperties(props);
  /external/harfbuzz_ng/src/
hb-ot-map.hh 269 hb_segment_properties_t props; variable
  /external/harfbuzz_ng/util/
options.hh 194 hb_segment_properties_t props; local
195 hb_buffer_get_segment_properties (src, &props);
196 hb_buffer_set_segment_properties (dst, &props);
  /external/icu/icu4c/source/tools/toolutil/
ppucd.cpp 206 UniProps *props; local
232 props=&defaultProps;
237 props=&blockProps;
269 props=&cpProps;
276 props->start=start;
277 props->end=end;
279 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; }
297 return props;
311 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues,
353 props.binProps[prop]=(UBool)binaryValue
    [all...]
  /external/lzma/C/
Lzma2Dec.c 27 S - Props
57 static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props)
63 props[0] = (Byte)LZMA2_LCLP_MAX;
64 props[1] = (Byte)(dicSize);
65 props[2] = (Byte)(dicSize >> 8);
66 props[3] = (Byte)(dicSize >> 16);
67 props[4] = (Byte)(dicSize >> 24);
73 Byte props[LZMA_PROPS_SIZE]; local
74 RINOK(Lzma2Dec_GetOldProps(prop, props));
75 return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc);
80 Byte props[LZMA_PROPS_SIZE]; local
    [all...]
  /external/lzma/C/Util/Lzma/
LzmaUtil.c 140 CLzmaEncProps props; local
148 LzmaEncProps_Init(&props);
149 res = LzmaEnc_SetProps(enc, &props);
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 396 const CByteBuffer &props = coderInfo.Props; local
397 size_t size = props.Size();
400 HRESULT res = setDecoderProperties->SetDecoderProperties2((const Byte *)props, (UInt32)size);
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 527 CStreamFileProps props; local
528 if (inStreamSpec->GetProps2(&props) == S_OK)
530 if (props.NumLinks > 1)
533 pair.Key1 = props.VolID;
534 pair.Key2 = props.FileID_Low;

Completed in 2408 milliseconds

1 2 34 5 6 7 8 91011