/external/emma/core/java12/com/vladium/logging/ |
Logger.java | 16 import java.util.Properties; 569 final Properties properties = Property.getAppProperties (IAppConstants.APP_NAME_LC, Logger.class.getClassLoader ()); typedefs 575 final String _level = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_LEVEL, 584 final String _filter = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_FILTER);
|
/external/freetype/src/autofit/ |
afblue.h | 147 /* Properties are specific to a writing system. We assume that a given */ 198 FT_UShort properties; member in struct:AF_Blue_StringRec_
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
AgentOptionsTest.java | 20 import java.util.Properties; 72 Properties properties = new Properties(); local 73 properties.put("destfile", "/target/test/test.exec"); 74 properties.put("append", "false"); 75 properties.put("includes", "org.*:com.*"); 76 properties.put("excludes", "*Test"); 77 properties.put("exclclassloader", "org.jacoco.test.TestLoader"); 78 properties.put("inclbootstrapclasses", "true") [all...] |
/external/pdfium/xfa/src/fxfa/src/parser/ |
xfa_script_resolveprocessor.cpp | 229 CXFA_NodeArray properties;
local 246 properties.Add(pChild);
336 for (int32_t i = 0; i < properties.GetSize(); i++) {
337 CXFA_Node* childProperty = properties[i];
|
/external/proguard/src/proguard/ |
ConfigurationParser.java | 35 * in file names ('<...>') can be resolved against a given set of properties. 42 private final Properties properties; field in class:ConfigurationParser 50 * the given Properties. 53 Properties properties) throws IOException 55 this(args, null, properties); 61 * with the given base directory and the given Properties. 65 Properties properties) throws IOExceptio [all...] |
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
main.java | 49 import java.util.Properties; 65 InputStream templateStream = baksmali.class.getClassLoader().getResourceAsStream("baksmali.properties"); 67 Properties properties = new Properties(); typedefs 70 properties.load(templateStream); 71 version = properties.getProperty("application.version");
|
/external/testng/src/main/java/org/testng/remote/ |
SuiteDispatcher.java | 5 import java.util.Properties;
33 * Properties allowed in remote.properties
59 Properties properties = file.getProperties();
local 61 m_verbose = Integer.parseInt( properties.getProperty(VERBOSE, "1"));
63 String strategy = properties.getProperty(MASTER_STRATEGY, STRATEGY_SUITE);
66 String adapter = properties.getProperty(MASTER_ADPATER);
76 m_masterAdpter.init(properties);
|
/external/v8/src/compiler/ |
ast-loop-assignment-analyzer.cc | 127 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); local 128 for (int i = 0; i < properties->length(); i++) { 129 Visit(properties->at(i)->key()); 130 Visit(properties->at(i)->value()); 143 ZoneList<ObjectLiteralProperty*>* properties = e->properties(); local 144 for (int i = 0; i < properties->length(); i++) { 145 Visit(properties->at(i)->key()); 146 Visit(properties->at(i)->value()) [all...] |
/external/v8/src/ic/arm64/ |
handler-compiler-arm64.cc | 65 // Load properties array. 66 Register properties = scratch0; local 67 __ Ldr(properties, FieldMemOperand(receiver, JSObject::kPropertiesOffset)); 68 // Check that the properties array is a dictionary. 69 __ Ldr(map, FieldMemOperand(properties, HeapObject::kMapOffset)); 73 masm, miss_label, &done, receiver, properties, name, scratch1);
|
/external/v8/src/ic/ia32/ |
handler-compiler-ia32.cc | 98 // Load properties array. 99 Register properties = scratch0; local 100 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset)); 102 // Check that the properties array is a dictionary. 103 __ cmp(FieldOperand(properties, HeapObject::kMapOffset), 109 properties, name, scratch1);
|
/external/v8/src/ic/x64/ |
handler-compiler-x64.cc | 62 // Load properties array. 63 Register properties = scratch0; local 64 __ movp(properties, FieldOperand(receiver, JSObject::kPropertiesOffset)); 66 // Check that the properties array is a dictionary. 67 __ CompareRoot(FieldOperand(properties, HeapObject::kMapOffset), 73 properties, name, scratch1);
|
/external/v8/src/ic/x87/ |
handler-compiler-x87.cc | 98 // Load properties array. 99 Register properties = scratch0; local 100 __ mov(properties, FieldOperand(receiver, JSObject::kPropertiesOffset)); 102 // Check that the properties array is a dictionary. 103 __ cmp(FieldOperand(properties, HeapObject::kMapOffset), 109 properties, name, scratch1);
|
/frameworks/av/services/radio/ |
RadioService.cpp | 30 #include <cutils/properties.h> 80 ALOGE("could not read implementation properties"); 84 radio_properties_t properties; local 85 properties.handle = 88 ALOGI("loaded default module %s, handle %d", properties.product, properties.handle); 90 convertProperties(&properties, &halProperties); 91 sp<Module> module = new Module(dev, properties); 92 mModules.add(properties.handle, module); 102 status_t RadioService::listModules(struct radio_properties *properties, [all...] |
/frameworks/base/libs/hwui/ |
RenderNode.h | 78 * Primary class for storing recorded canvas commands, as well as per-View/ViewGroup display properties. 82 * (which holds the actual data), and DisplayList (which holds properties and performs playback onto 86 * recorded stream of canvas operations is refreshed. The RenderNode (and its properties) stay 174 const RenderProperties& properties() const { function in class:android::uirenderer::RenderNode 191 return properties().getWidth(); 195 return properties().getHeight(); 215 const Outline& outline = properties().getOutline(); 217 || properties().getAlpha() <= 0 219 || properties().getScaleX() == 0 220 || properties().getScaleY() == 0 [all...] |
VectorDrawable.cpp | 197 const FullPathProperties& properties = useStagingData ? mStagingProperties : mProperties; local 202 if (properties.getFillGradient() != nullptr) { 203 paint.setColor(applyAlpha(SK_ColorBLACK, properties.getFillAlpha())); 204 SkShader* newShader = properties.getFillGradient()->newWithLocalMatrix(matrix); 207 } else if (properties.getFillColor() != SK_ColorTRANSPARENT) { 208 paint.setColor(applyAlpha(properties.getFillColor(), properties.getFillAlpha())); 215 SkPath::FillType ft = static_cast<SkPath::FillType>(properties.getFillType()); 222 if (properties.getStrokeGradient() != nullptr) { 223 paint.setColor(applyAlpha(SK_ColorBLACK, properties.getStrokeAlpha())) [all...] |
/frameworks/native/include/input/ |
InputTransport.h | 100 PointerProperties properties; member in struct:android::InputMessage::Body::Motion::Pointer 107 return pointers[index].properties.id; 374 uint32_t id = msg->body.motion.pointers[i].properties.id;
|
/frameworks/native/vulkan/libvulkan/ |
layers_extensions.cpp | 30 #include <cutils/properties.h> 55 VkLayerProperties properties; member in struct:vulkan::api::Layer 189 // get layer properties 190 VkLayerProperties* properties = static_cast<VkLayerProperties*>(alloca( local 192 result = enumerate_instance_layers(&num_instance_layers, properties); 200 properties + num_instance_layers); 213 const VkLayerProperties& props = properties[i]; 216 layer.properties = props; 244 const auto& dev_props = properties[num_instance_layers + j]; 290 std::max(size_t{2}, strlen(layer.properties.layerName)) [all...] |
/frameworks/wilhelm/src/android/ |
android_Effect.cpp | 187 size = sizeof(s_reverb_settings); // struct of all reverb properties 416 // initialize reverb properties 417 SLEnvironmentalReverbSettings properties; local 419 REVERB_PARAM_PROPERTIES, &properties)) { 420 ier->mProperties = properties; 429 // properties, select which max size to pass to avoid allocating too much memory 444 // properties, select which max size to pass to avoid allocating too much memory
|
/system/bt/btif/src/ |
btif_gatt_server.c | 101 uint8_t properties; member in struct:__anon72247 464 p_cb->permissions, p_cb->properties); 588 bt_uuid_t *uuid, int properties, 595 btif_cb.properties = (uint8_t) properties;
|
/system/connectivity/shill/dhcp/ |
dhcpv4_config.cc | 146 IPConfig::Properties properties; local 147 CHECK(ParseConfiguration(configuration, &properties)); 160 IPConfig::UpdateProperties(properties, false); 163 DHCPConfig::UpdateProperties(properties, true); 271 const string& classless_routes, IPConfig::Properties* properties) { 311 if (destination.prefix() == 0 && properties->gateway.empty()) { 316 CHECK(gateway.IntoString(&properties->gateway)); 331 properties->routes.swap(routes) [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
ServiceInfoImpl.java | 603 Map<String, byte[]> properties = this.getProperties(); local 604 for (String key : properties.keySet()) { 605 byte[] value = properties.get(key); 695 Map<String, byte[]> properties = this.getProperties(); local 696 Collection<String> names = (properties != null ? properties.keySet() : Collections.<String> emptySet()); 817 Hashtable<String, byte[]> properties = new Hashtable<String, byte[]>(); local 824 properties.clear(); 836 properties.clear(); 840 properties.put(name, NO_VALUE) 1176 Map<String, byte[]> properties = this.getProperties(); local [all...] |
/frameworks/base/services/midi/java/com/android/server/midi/ |
MidiService.java | 714 Bundle properties, int type) { 724 outputPortNames, properties, server, null, false, uid); 785 String[] inputPortNames, String[] outputPortNames, Bundle properties, 791 inputPortNames, outputPortNames, properties, isPrivate); 805 bluetoothDevice = (BluetoothDevice)properties.getParcelable( 881 Bundle properties = null; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.event_1.2.0.v20100503.jar | |
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewProjectCreator.java | 845 ProjectPropertiesWorkingCopy properties = typedefs [all...] |