/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
FormatterTest.java | 55 final static Properties props = new Properties(); field in class:FormatterTest 71 props.clear(); 72 props.put("java.util.logging.FileHandler.level", "FINE"); 73 props.put("java.util.logging.FileHandler.filter", className 75 props.put("java.util.logging.FileHandler.formatter", className 77 props.put("java.util.logging.FileHandler.encoding", "iso-8859-1"); 79 props.put("java.util.logging.FileHandler.limit", "1000"); 81 props.put("java.util.logging.FileHandler.count", "2"); 83 props.put("java.util.logging.FileHandler.append", "true"); 84 props.put("java.util.logging.FileHandler.pattern" [all...] |
/external/icu4c/samples/props/ |
props.sln | 3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "props", "props.vcproj", "{ABE4CD17-8ED8-4DE6-ABDE-CDEFC220CF60}"
|
/frameworks/base/libs/rs/ |
rsThreadIO.cpp | 46 if (con->props.mLogTimes) { 54 if (con->props.mLogTimes) {
|
rsObjectBase.cpp | 82 if (mRSC && mRSC->props.mLogObjects) { 165 if (rsc->props.mLogObjects) { 183 if (rsc->props.mLogObjects) {
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
RepoSources.java | 90 Properties props = new Properties();
local 91 props.load(fis);
93 int count = Integer.parseInt(props.getProperty(KEY_COUNT, "0"));
96 String url = props.getProperty(String.format("%s%02d", KEY_SRC, i)); //$NON-NLS-1$
151 Properties props = new Properties();
local 157 props.setProperty(String.format("%s%02d", KEY_SRC, count), s.getUrl()); //$NON-NLS-1$
160 props.setProperty(KEY_COUNT, Integer.toString(count));
162 props.store( fos, "## User Sources for Android tool"); //$NON-NLS-1$
|
SamplePackage.java | 89 SamplePackage(IAndroidTarget target, Properties props) {
91 props, //properties
92 0, //revision will be taken from props
104 getProperty(props, PROP_MIN_API_LEVEL, Integer.toString(MIN_API_LEVEL_NOT_SPECIFIED)));
119 SamplePackage(String archiveOsPath, Properties props) throws AndroidVersionException {
121 props, //properties
122 0, //revision will be taken from props
131 mVersion = new AndroidVersion(props);
134 getProperty(props, PROP_MIN_API_LEVEL, Integer.toString(MIN_API_LEVEL_NOT_SPECIFIED)));
142 void saveProperties(Properties props) {
339 Properties props = new Properties(); local 367 Properties props = new Properties(); local [all...] |
ExtraPackage.java | 76 Properties props,
86 props,
96 mPath = path != null ? path : getProperty(props, PROP_PATH, path);
99 getProperty(props, PROP_MIN_API_LEVEL, Integer.toString(MIN_API_LEVEL_NOT_SPECIFIED)));
107 void saveProperties(Properties props) {
108 super.saveProperties(props);
110 props.setProperty(PROP_PATH, mPath);
113 props.setProperty(PROP_MIN_API_LEVEL, Integer.toString(getMinApiLevel()));
|
DocPackage.java | 67 Properties props,
78 props,
86 mVersion = new AndroidVersion(props, apiLevel, codename);
94 void saveProperties(Properties props) {
95 super.saveProperties(props);
97 mVersion.saveProperties(props);
|
PlatformPackage.java | 71 PlatformPackage(IAndroidTarget target, Properties props) {
73 props, //properties
92 void saveProperties(Properties props) {
93 super.saveProperties(props);
95 mVersion.saveProperties(props);
98 props.setProperty(PROP_VERSION, mVersionName);
|
/system/core/rootdir/etc/ |
init.goldfish.sh | 41 # call 'qemu-props' to set system properties from the emulator. 43 /system/bin/qemu-props
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
connect.h | 42 // props: related property bits (cyclicity, initial cyclicity, 45 vector<bool> *coaccess, uint64 *props) 46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {} 47 SccVisitor(uint64 *props) 48 : scc_(0), access_(0), coaccess_(0), props_(props) {} 207 uint64 props = 0; local 208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
|
arcsort.h | 46 uint64 props = fst->Properties(kFstProperties, false); local 64 fst->SetProperties(comp.Properties(props), kFstProperties); 94 uint64 props = fst_->Properties(kCopyProperties, false); local 95 SetProperties(comp_.Properties(props)); 285 uint64 Properties(uint64 props) const { 286 return props & kArcSortProperties | kILabelSorted; 298 uint64 Properties(uint64 props) const { 299 return props & kArcSortProperties | kOLabelSorted;
|
map.h | 60 // uint64 Properties(uint64 props) const; 88 uint64 props = fst->Properties(kFstProperties, false); 143 fst->SetProperties(mapper->Properties(props), kFstProperties); 410 uint64 props = fst_->Properties(kCopyProperties, false); local 411 SetProperties(mapper_->Properties(props)); 629 uint64 Properties(uint64 props) const { return props; } 644 uint64 Properties(uint64 props) const { 645 return props & kAddSuperFinalProperties; 661 uint64 Properties(uint64 props) const { return props; [all...] |
/external/emma/core/res/com/vladium/emma/data/ |
merge_usage.res | 12 'p', 'props', 'properties':
|
/external/icu4c/common/ |
ubidi_props.h | 140 #define UBIDI_GET_CLASS(props) ((props)&UBIDI_CLASS_MASK) 141 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
|
ucase.c | 358 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT)) 360 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION) 408 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 409 if(!PROPS_HAS_EXCEPTION(props)) { 410 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) { 411 c+=UCASE_GET_DELTA(props); 414 const uint16_t *pe=GET_EXCEPTIONS(csp, props); 425 uint16_t props=UTRIE2_GET16(&csp->trie, c) local 442 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 473 uint16_t props; local 672 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 679 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 696 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 712 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 896 uint16_t props; local 1051 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 1195 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 1341 uint16_t props=UTRIE2_GET16(&csp->trie, c); local 1405 uint16_t props=UTRIE2_GET16(&csp->trie, c); local [all...] |
ubidi_props.c | 401 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local 402 return (UCharDirection)UBIDI_GET_CLASS(props); 407 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local 408 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); 413 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local 414 int32_t delta=((int16_t)props)>>UBIDI_MIRROR_DELTA_SHIFT; 446 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local 447 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT); 452 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local 453 return (UBool)UBIDI_GET_FLAG(props, UBIDI_JOIN_CONTROL_SHIFT) 458 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_phyuv.c | 173 overlay->hwdata->props.format = format; 174 overlay->hwdata->props.size = sizeof(PgScalerProps_t); 175 overlay->hwdata->props.src_dim.w = width; 176 overlay->hwdata->props.src_dim.h = height; 180 overlay->hwdata->props.color_key = overlay->hwdata->chromakey; 182 PhAreaToRect(&overlay->hwdata->CurrentViewPort, &overlay->hwdata->props.viewport); 184 overlay->hwdata->props.flags = Pg_SCALER_PROP_DOUBLE_BUFFER; 188 overlay->hwdata->props.flags |= Pg_SCALER_PROP_CHROMA_ENABLE; 189 overlay->hwdata->props.flags |= Pg_SCALER_PROP_CHROMA_SPECIFY_KEY_MASK; 193 overlay->hwdata->props.flags &= ~Pg_SCALER_PROP_CHROMA_ENABLE [all...] |
/external/webkit/WebCore/css/ |
SVGCSSPropertyNames.in | 5 # SVG style props
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/GlobalObject/ |
15.1.2.1-1.js | 50 array[item++] = new TestCase( SECTION, "var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS", "", eval("var PROPS = ''; for ( p in eval ) { PROPS += p }; PROPS") );
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
SerializerSwitcher.java | 131 private static String getOutputPropertyNoDefault(String qnameString, Properties props) 134 String value = (String)props.get(qnameString); 150 String ns, String localName, Properties props, Serializer oldSerializer) 161 if (null != getOutputPropertyNoDefault(OutputKeys.METHOD, props)) 166 Properties prevProperties = props;
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
PropertiesTest.java | 119 MyProperties props = new MyProperties(); local 120 assertNull(props.getProperty("key")); 135 MyProperties props = new MyProperties(); local 136 assertEquals(props.getProperty("key", "defaultValue"), "defaultValue"); 266 Properties props = new Properties(); local 267 props.load(is); 269 assertEquals("1", "\n \t \f", props.getProperty(" \r")); 270 assertEquals("2", "a", props.getProperty("a")); 271 assertEquals("3", "bb as,dn ", props.getProperty("b")); 272 assertEquals("4", ":: cu", props.getProperty("c\r \t\nu")) [all...] |
/frameworks/base/awt/java/awt/image/ |
ImageFilter.java | 62 public void setProperties(Hashtable<?, ?> props) { 64 if (props == null) { 67 fprops = (Hashtable<Object, Object>)props.clone();
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
picoloaddbg.lua | 64 -- construct props table and add first mapval property
65 props = {mapval = tonumber(propval)}
76 -- try to get next prop/propval and add to props
80 props[prop] = tonumber(propval)
92 syms[sym] = props
93 symnrs[symnr] = props
|
picoloadphones.lua | 62 -- construct props table and add first mapval property
63 props = {mapval = tonumber(propval)}
74 -- try to get next prop/propval and add to props
78 props[prop] = tonumber(propval)
90 syms[sym] = props
91 symnrs[symnr] = props
|