HomeSort by relevance Sort by last modified time
    Searched defs:desc (Results 1 - 25 of 591) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/
object-define-properties.js 50 var desc = {foo: {value: 10}, bar: {get: function() {return 42; }}};
53 var x = Object.defineProperties(obj, desc);
  /external/v8/test/mjsunit/regress/
regress-1625.js 32 var desc = {foo: {value: 10}, bar: {get: function() {return 42; }}};
34 var x = Object.defineProperties(obj, desc);
  /dalvik/vm/mterp/armv5te/
debug.cpp 73 char* desc = dexProtoCopyMethodDescriptor(&method->prototype); local
79 desc);
81 free(desc);
  /dalvik/vm/mterp/mips/
debug.cpp 83 char* desc = dexProtoCopyMethodDescriptor(&method->prototype); local
89 desc);
91 free(desc);
  /external/icu4c/i18n/unicode/
numsys.h 170 UnicodeString desc; member in class:NumberingSystem
179 void setDesc(UnicodeString desc);
  /external/oprofile/libabi/
abi.h 20 std::string const desc; member in class:abi_exception::std
  /external/webkit/Source/WebKit/chromium/src/
WebFontDescription.cpp 40 WebFontDescription::WebFontDescription(const FontDescription& desc,
43 family = desc.family().family();
44 genericFamily = static_cast<GenericFamily>(desc.genericFamily());
45 size = desc.specifiedSize();
46 italic = desc.italic();
47 smallCaps = desc.smallCaps();
48 weight = static_cast<Weight>(desc.weight());
49 smoothing = static_cast<Smoothing>(desc.fontSmoothing());
59 FontDescription desc; local
60 desc.setFamily(fontFamily)
    [all...]
  /dalvik/vm/mterp/
Mterp.cpp 84 char* desc = dexProtoCopyMethodDescriptor( local
90 desc);
91 free(desc);
  /development/tools/yuv420sp2rgb/
cmdline.c 45 const char **desc = descriptions; local
51 *desc);
53 desc++;
  /external/libusb/examples/
lsusb.c 31 struct libusb_device_descriptor desc; local
32 int r = libusb_get_device_descriptor(dev, &desc);
39 desc.idVendor, desc.idProduct,
  /external/libusb_aah/examples/
listdevs.c 31 struct libusb_device_descriptor desc; local
32 int r = libusb_get_device_descriptor(dev, &desc);
39 desc.idVendor, desc.idProduct,
  /external/qemu/hw/
boards.h 15 const char *desc; member in struct:QEMUMachine
  /external/skia/include/gpu/
GrSurface.h 52 const GrTextureDesc& desc() const { return fDesc; } function in class:GrSurface
107 GrSurface(GrGpu* gpu, bool isWrapped, const GrTextureDesc& desc, GrSurfaceOrigin origin)
109 , fDesc(desc)
  /external/skia/tests/
ReadWriteAlphaTest.cpp 29 GrTextureDesc desc; local
32 desc.fFlags = kRenderTarget_GrTextureFlagBit;
34 desc.fConfig = kAlpha_8_GrPixelConfig;
35 desc.fWidth = X_SIZE;
36 desc.fHeight = Y_SIZE;
39 GrTexture* texture = context->createUncachedTexture(desc, textureData, 0);
54 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
63 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlEditorDelegate.java 109 DocumentDescriptor desc; local
111 desc = new DocumentDescriptor("temp", null /*children*/);
113 desc = data.getXmlDescriptors().getDescriptor();
116 setUiRootNode(desc.createUiNode());
  /bionic/libdl/
dltest.c 60 const char **desc = descriptions; local
66 *desc);
68 desc++;
  /dalvik/vm/analysis/
VerifySubs.cpp 60 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype); local
62 meth->clazz->descriptor, meth->name, desc);
63 free(desc);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 54 const std::string desc; member in class:clang::ento::BuiltinBug
57 : BugType(name, "Logic error"), desc(description) {}
60 : BugType(name, "Logic error"), desc(name) {}
62 StringRef getDescription() const { return desc; }
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketDisconnect.java 19 String desc; field in class:PacketDisconnect
36 desc = tr.readString();
40 public PacketDisconnect(int reason, String desc, String lang)
43 this.desc = desc;
54 tw.writeString(desc);
  /external/libppp/src/
server.h 32 struct fdescriptor desc; member in struct:server
  /external/smack/src/org/jivesoftware/smackx/provider/
MultipleAddressesProvider.java 53 String desc = parser.getAttributeValue("", "desc"); local
57 multipleAddresses.addAddress(type, jid, node, desc, delivered, uri);
  /external/v8/test/cctest/
test-reloc-info.cc 63 CodeDesc desc = { *buffer, buffer_size, code_size, local
68 RelocIterator it(desc, RelocInfo::ModeMask(RelocInfo::POSITION));
85 RelocIterator it(desc, RelocInfo::ModeMask(RelocInfo::STATEMENT_POSITION));
102 RelocIterator it(desc, RelocInfo::kPositionMask);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
SimpleFontDataHaiku.cpp 71 FontDescription desc = FontDescription(fontDescription); local
72 desc.setSpecifiedSize(scaleFactor * fontDescription.computedSize());
73 FontPlatformData fontPlatformData(desc, desc.family().family());
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 117 FontDescription desc; local
124 desc.setFamily(family);
126 desc.setComputedSize(18);
128 Font font = Font(desc, 0, 0);
  /frameworks/av/media/libmedia/
IAudioFlingerClient.cpp 53 const AudioSystem::OutputDescriptor *desc = local
55 data.writeInt32(desc->samplingRate);
56 data.writeInt32(desc->format);
57 data.writeInt32(desc->channels);
58 data.writeInt32(desc->frameCount);
59 data.writeInt32(desc->latency);
78 AudioSystem::OutputDescriptor desc; local
85 desc.samplingRate = data.readInt32();
86 desc.format = data.readInt32();
87 desc.channels = data.readInt32()
    [all...]

Completed in 546 milliseconds

1 2 3 4 5 6 7 8 91011>>