HomeSort by relevance Sort by last modified time
    Searched defs:properties (Results 151 - 175 of 1756) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapObject.java 53 * The Vector of properties (can contain PropertyInfo and SoapObject)
55 protected Vector properties = new Vector(); field in class:SoapObject
57 // TODO: accessing properties and attributes would work much better if we
58 // kept a list of known properties instead of iterating through the list
95 int numProperties = properties.size();
96 if (numProperties != otherSoapObject.properties.size()) {
100 // SoapObjects are only considered the same if properties equals and in the same order
102 Object thisProp = this.properties.elementAt(propIndex);
122 Object thisProp = this.properties.elementAt(index);
150 Object prop = properties.elementAt(index)
    [all...]
  /external/libchrome/dbus/
object_manager.cc 69 PropertySet* properties = piter->second; local
70 delete properties;
347 PropertySet* properties = GetProperties(object_path, interface); local
348 if (properties)
349 properties->ChangedReceived(signal);
487 // Inform the interface before removing the properties structure or object
  /external/libvncserver/webclients/novnc/include/
display.js 499 var properties = ['transform', 'WebkitTransform', 'MozTransform']; variable
501 while ((transform_prop = properties.shift())) {
  /external/opencv3/modules/core/src/
directx.cpp 282 cl_context_properties properties[] = { local
288 context = clCreateContext(properties, 1, &device, NULL, NULL, &status);
318 cl_context_properties properties[] = { local
324 context = clCreateContext(properties, 1, &device, NULL, NULL, &status);
390 cl_context_properties properties[] = { local
396 context = clCreateContext(properties, 1, &device, NULL, NULL, &status);
426 cl_context_properties properties[] = { local
432 context = clCreateContext(properties, 1, &device, NULL, NULL, &status);
499 cl_context_properties properties[] = { local
505 context = clCreateContext(properties, 1, &device, NULL, NULL, &status)
536 cl_context_properties properties[] = { local
609 cl_context_properties properties[] = { local
646 cl_context_properties properties[] = { local
    [all...]
  /external/pdfium/xfa/include/fxjse/
fxjse.h 86 FXJSE_PROPERTY* properties; member in struct:_FXJSE_CLASS
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_script_nodehelper.cpp 77 CXFA_NodeArray properties; local
78 parent->GetNodeList(properties, XFA_NODEFILTER_Properties);
79 int32_t nProperties = properties.GetSize();
81 CXFA_Node* child = properties[i];
139 CXFA_NodeArray properties; local
140 parent->GetNodeList(properties, XFA_NODEFILTER_Properties);
141 int32_t nProperties = properties.GetSize();
143 CXFA_Node* child = properties[i];
  /external/proguard/src/proguard/ant/
ConfigurationTask.java 296 // Replace Ant-style properties ('${...}').
299 // Get the combined system properties and Ant properties, for
300 // replacing ProGuard-style properties ('<...>').
301 Properties properties = new Properties(); local
302 properties.putAll(project.getProperties());
307 properties);
ProGuardTask.java 43 // Get the combined system properties and Ant properties, for
44 // replacing ProGuard-style properties ('<...>').
45 Properties properties = new Properties(); local
46 properties.putAll(getProject().getProperties());
49 properties);
  /external/selinux/policycoreutils/gui/
system-config-selinux.py 87 xml.signal_connect("on_properties_clicked", self.properties)
135 def properties(self, args): member in class:childWindow
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 51 Map<String, Object> properties = new HashMap<String, Object>(data.getProperties()); local
52 setProperties(obj, properties);
219 Set<Property> properties = getPropertyUtils().getProperties(bean); local
220 for (Iterator<Property> iterator = properties.iterator(); iterator.hasNext();) {
226 if (properties.size() == 0) {
228 } else if (properties.size() > 1) {
230 "Many list properties found in "
234 return properties.iterator().next().getName();
  /external/testng/src/main/java/org/testng/reporters/
JUnitReportReporter.java 27 import java.util.Properties;
86 Properties p1 = new Properties();
109 Properties p2 = new Properties();
130 testTag.properties = p2;
154 xsb.addEmptyElement("testcase", testTag.properties);
157 xsb.push("testcase", testTag.properties);
159 Properties p = new Properties();
248 public Properties properties; field in class:JUnitReportReporter.TestTag
    [all...]
XMLStringBuffer.java 4 import java.util.Properties;
100 * @param attributes A Properties file representing the attributes (or null)
102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) {
124 * @param attributes A Properties file representing the attributes (or null)
126 public void push(String tagName, @Nullable Properties attributes) {
134 private Properties createProperties(String[] attributes) {
135 Properties result = new Properties();
183 XMLUtils.extractComment(tagName, t.properties));
193 addRequired(tagName, value, (Properties) null)
374 public final Properties properties; field in class:Tag
    [all...]
  /external/v8/src/ast/
ast-expression-rewriter.cc 216 ZoneList<typename ClassLiteral::Property*>* properties = node->properties(); local
217 for (int i = 0; i < properties->length(); i++) {
218 VisitObjectLiteralProperty(properties->at(i));
258 ZoneList<typename ObjectLiteral::Property*>* properties = node->properties(); local
259 for (int i = 0; i < properties->length(); i++) {
260 VisitObjectLiteralProperty(properties->at(i));
  /external/v8/src/compiler/
operator.h 35 // Properties inform the operator-independent optimizer about legal
52 typedef base::Flags<Property, uint8_t> Properties;
55 Operator(Opcode opcode, Properties properties, const char* mnemonic,
84 return (properties() & property) == property;
87 Properties properties() const { return properties_; } function in class:v8::internal::compiler::Operator
101 static size_t ZeroIfEliminatable(Properties properties) {
102 return (properties & kEliminatable) == kEliminatable ? 0 : 1
    [all...]
  /external/v8/src/parsing/
preparse-data.h 55 virtual void LogFunction(int start, int end, int literals, int properties,
79 virtual void LogFunction(int start, int end, int literals, int properties,
86 properties_ = properties;
114 int properties() const { function in class:v8::internal::SingletonLogger
170 virtual void LogFunction(int start, int end, int literals, int properties,
176 function_store_.Add(properties);
  /external/vogar/src/vogar/target/
TestRunner.java 29 import java.util.Properties;
62 public TestRunner(Properties properties, List<String> argsList) {
63 qualifiedName = properties.getProperty(TestProperties.QUALIFIED_NAME);
64 qualifiedClassOrPackageName = properties.getProperty(TestProperties.TEST_CLASS_OR_PACKAGE);
65 timeoutSeconds = Integer.parseInt(properties.getProperty(TestProperties.TIMEOUT));
67 int monitorPort = Integer.parseInt(properties.getProperty(TestProperties.MONITOR_PORT));
69 boolean profile = Boolean.parseBoolean(properties.getProperty(TestProperties.PROFILE));
70 int profileDepth = Integer.parseInt(properties.getProperty(TestProperties.PROFILE_DEPTH));
72 = Integer.parseInt(properties.getProperty(TestProperties.PROFILE_INTERVAL))
121 Properties properties = new Properties(); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 31 /* list of methods, properties and signals registered with object */
34 const struct wpa_dbus_property_desc *properties; member in struct:wpa_dbus_object_desc
39 /* argument for method handlers and properties
108 #define WPA_DBUS_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 74 AppearAnimationProperties properties = getDelays(objects); local
75 startAnimations(properties, objects, finishListener, creator);
80 AppearAnimationProperties properties = getDelays(objects); local
81 startAnimations(properties, objects, finishListener, creator);
84 private <T> void startAnimations(AppearAnimationProperties properties, T[] objects,
86 if (properties.maxDelayRowIndex == -1 || properties.maxDelayColIndex == -1) {
90 for (int row = 0; row < properties.delays.length; row++) {
91 long[] columns = properties.delays[row];
94 if (properties.maxDelayRowIndex == row && properties.maxDelayColIndex == 0)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 101 AnimatorProperties properties = getProperties(currValue, endValue, velocity, local
103 animator.setDuration(properties.duration);
104 animator.setInterpolator(properties.interpolator);
120 AnimatorProperties properties = getProperties(currValue, endValue, velocity, local
122 animator.setDuration(properties.duration);
123 animator.setInterpolator(properties.interpolator);
168 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity, local
170 animator.setDuration(properties.duration);
171 animator.setInterpolator(properties.interpolator);
188 AnimatorProperties properties = getDismissingProperties(currValue, endValue, velocity local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 110 HashSet<String> properties = new HashSet<String>(); local
111 mProperties.captureProperties(properties);
114 intermediate.captureProperties(properties);
117 BRWriter brWriter = new BRWriter(properties, useFinalFields);
119 //writeBRClass(useFinalFields, pkg, properties);
231 void captureProperties(Set<String> properties);
252 public void captureProperties(Set<String> properties) {
254 properties.addAll(propertySet);
260 HashSet<String> properties = mProperties.get(className); local
261 if (properties == null)
    [all...]
  /frameworks/native/libs/input/
Input.cpp 455 PointerProperties& properties = mPointerProperties.editTop(); local
456 properties.id = parcel->readInt32();
457 properties.toolType = parcel->readInt32();
496 const PointerProperties& properties = mPointerProperties.itemAt(i); local
497 parcel->writeInt32(properties.id);
498 parcel->writeInt32(properties.toolType);
  /frameworks/native/vulkan/tools/
vkinfo.cpp 39 VkPhysicalDeviceProperties properties; member in struct:__anon29317::GpuInfo
131 vkGetPhysicalDeviceProperties(gpu, &info.properties);
495 info.properties.deviceName,
496 VkPhysicalDeviceTypeStr(info.properties.deviceType),
497 VK_VERSION_MAJOR(info.properties.apiVersion),
498 VK_VERSION_MINOR(info.properties.apiVersion),
499 VK_VERSION_PATCH(info.properties.apiVersion),
500 info.properties.driverVersion, info.properties.vendorID,
501 info.properties.deviceID)
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
StaggeredGridLayoutManager.java 226 Properties properties = getProperties(context, attrs, defStyleAttr, defStyleRes); local
227 setOrientation(properties.orientation);
228 setSpanCount(properties.spanCount);
229 setReverseLayout(properties.reverseLayout);
    [all...]
  /frameworks/wilhelm/tests/mimeUri/
slesTestSlowDownUri.cpp 295 /* Get the default rate properties */
296 SLuint32 properties = 0; local
297 res = (*rateItf)->GetProperties(rateItf, &properties); CheckErr(res);
298 printf("default rate properties: ");
299 printCapabilities(properties);
301 assert(SL_RATEPROP_NOPITCHCORAUDIO == properties);
  /hardware/ti/omap4-aah/camera/
CameraHal_Module.cpp 635 CameraProperties::Properties* properties = NULL; local
716 if(gCameraProperties.getProperties(cameraid, &properties) < 0)
718 CAMHAL_LOGE("Couldn't get camera properties");
732 if(properties && (camera->initialize(properties) != NO_ERROR))
767 // initialize camera properties here...
785 CameraProperties::Properties* properties = NULL; local
788 // initialize camera properties here..
    [all...]

Completed in 1068 milliseconds

1 2 3 4 5 67 8 91011>>