HomeSort by relevance Sort by last modified time
    Searched refs:descs (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFilterRule.cpp 68 String descs = m_filterRule->properties()->asText(); local
69 result.append(descs);
70 if (!descs.isEmpty())
CSSFontFaceRule.cpp 55 String descs = m_fontFaceRule->properties()->asText(); local
56 result.append(descs);
57 if (!descs.isEmpty())
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 151 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); local
153 DescriptorsUtils.appendAttributes(descs,
164 DescriptorsUtils.appendAttributes(descs,
174 descs.add(extraAttribute);
177 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
MenuDescriptors.java 159 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); local
163 DescriptorsUtils.appendAttributes(descs,
173 descs.add(extraAttribute);
176 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 215 AuthenticatorDescription[] descs = AccountManager.get(context).getAuthenticatorTypes(); local
216 final int M = descs.length;
222 if (account.type.equals(descs[j].type)) {
223 desc = descs[j];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/
OtherXmlDescriptors.java 247 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>();
251 DescriptorsUtils.appendAttributes(descs,
261 descs.add(extraAttribute);
264 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
InputLayoutCache.cpp 136 D3D11_INPUT_ELEMENT_DESC descs[gl::MAX_VERTEX_ATTRIBS]; local
139 descs[j] = ilKey.elements[j].desc;
142 HRESULT result = mDevice->CreateInputLayout(descs, ilKey.elementCount, shader->getFunction(), shader->getLength(), &inputLayout);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 421 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); local
423 descs.add(classAttribute);
424 DescriptorsUtils.appendAttributes(descs,
431 descriptor.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectStreamFieldTest.java 364 static ObjectStreamClass descs; field in class:MyObjectOutputStream
374 descs = desc;
393 return MyObjectOutputStream.descs;
  /external/v8/src/
objects-printer.cc 253 DescriptorArray* descs = map()->instance_descriptors(); local
254 for (int i = 0; i < descs->number_of_descriptors(); i++) {
256 descs->GetKey(i)->StringPrint(out);
258 switch (descs->GetType(i)) {
260 int index = descs->GetFieldIndex(i);
266 descs->GetConstantFunction(i)->ShortPrint(out);
270 descs->GetCallbacksObject(i)->ShortPrint(out);
275 Object* descriptor_contents = descs->GetValue(i);
string-stream.cc 351 DescriptorArray* descs = map->instance_descriptors(); local
352 for (int i = 0; i < descs->number_of_descriptors(); i++) {
353 if (descs->GetType(i) == FIELD) {
354 Object* key = descs->GetKey(i);
368 Object* value = js_object->FastPropertyAt(descs->GetFieldIndex(i));
handles.cc 728 Handle<DescriptorArray> descs = local
731 for (int i = 0; i < descs->number_of_descriptors(); i++) {
732 if (descs->IsProperty(i) && !descs->IsDontEnum(i)) {
733 storage->set(index, descs->GetKey(i));
734 PropertyDetails details(descs->GetDetails(i));
741 int field_index = Descriptor::IndexFromValue(descs->GetValue(i));
    [all...]
bootstrapper.cc 645 DescriptorArray* descs = map->instance_descriptors(); local
646 int number = descs->Search(*name);
647 AccessorPair* accessors = AccessorPair::cast(descs->GetValue(number));
2159 Handle<DescriptorArray> descs = local
    [all...]
profile-generator.cc 2100 DescriptorArray* descs = js_obj->map()->instance_descriptors(); local
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 113 String[] descs = res.getStringArray(R.array.operatorDescs); local
116 builder.put(key, descs[pos]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 417 AttributeDescriptor[] descs = mNode.getAttributeDescriptors(); local
418 int n = descs.length;
422 infos[i] = descs[i].getAttributeInfo();
  /external/chromium_org/v8/src/
string-stream.cc 357 DescriptorArray* descs = map->instance_descriptors(); local
359 PropertyDetails details = descs->GetDetails(i);
361 Object* key = descs->GetKey(i);
375 Object* value = js_object->RawFastPropertyAt(descs->GetFieldIndex(i));
handles.cc 674 Handle<DescriptorArray> descs = local
681 for (int i = 0; i < descs->number_of_descriptors(); i++) {
682 PropertyDetails details = descs->GetDetails(i);
683 Object* key = descs->GetKey(i);
691 int field_index = descs->GetFieldIndex(i);
objects-printer.cc 291 DescriptorArray* descs = map()->instance_descriptors(); local
294 descs->GetKey(i)->NamePrint(out);
296 switch (descs->GetType(i)) {
298 int index = descs->GetFieldIndex(i);
304 descs->GetConstant(i)->ShortPrint(out);
308 descs->GetCallbacksObject(i)->ShortPrint(out);
    [all...]
bootstrapper.cc 630 DescriptorArray* descs = map->instance_descriptors(); local
631 int number = descs->SearchWithCache(*name, *map);
632 AccessorPair* accessors = AccessorPair::cast(descs->GetValue(number));
2415 Handle<DescriptorArray> descs = local
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/signin/
AccountManagerHelper.java 150 AuthenticatorDescription[] descs = mAccountManager.getAuthenticatorTypes(); local
151 for (AuthenticatorDescription desc : descs) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 224 ElementDescriptor[] descs = mDescriptorFilters; local
225 if (descs == null && mUiRootNode != null) {
226 descs = mUiRootNode.getDescriptor().getChildren();
229 if (descs != null && descs.length > 1) {
230 for (ElementDescriptor desc : descs) {
    [all...]
  /frameworks/base/core/java/android/accounts/
ChooseTypeAndAccountActivity.java 517 AuthenticatorDescription[] descs = AccountManager.get(this).getAuthenticatorTypes(); local
518 Set<String> supportedAccountTypes = new HashSet<String>(descs.length);
519 for (AuthenticatorDescription desc : descs) {
AccountManager.java 584 Account[] descs = new Account[parcelables.length];
586 descs[i] = (Account) parcelables[i];
588 return descs;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 

Completed in 391 milliseconds

1 2