HomeSort by relevance Sort by last modified time
    Searched full:prop (Results 251 - 275 of 1762) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenObjCXX/
property-reference.mm 57 @property int prop;
62 int x = a.prop;
63 a.prop = x;
64 a.prop += x;
81 int x = (sizeof(T), a).prop;
82 a.prop = (sizeof(T), x);
83 a.prop += (sizeof(T), x);
  /external/flac/libFLAC/
libFLAC_static.dsp 25 # PROP AllowPerConfigDependencies 0
26 # PROP Scc_ProjName "libFLAC"
27 # PROP Scc_LocalPath "..\.."
33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir "Release"
36 # PROP BASE Intermediate_Dir "Release"
37 # PROP BASE Target_Dir ""
38 # PROP Use_MFC 0
39 # PROP Use_Debug_Libraries 0
    [all...]
  /external/lzma/CPP/7zip/Archive/
ArchiveExports.cpp 92 NWindows::NCOM::CPropVariant prop; local
96 prop = arc.Name;
106 prop = arc.Ext;
110 prop = arc.AddExt;
113 prop = (bool)(arc.CreateOutArchive != 0);
116 prop = arc.KeepName;
121 prop.Detach(value);
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 266 static void PrintTime(const NCOM::CPropVariant &prop)
268 if (prop.vt != VT_FILETIME)
270 if (IsFileTimeZero(&prop.filetime))
275 if (!FileTimeToLocalFileTime(&prop.filetime, &localFileTime))
301 NCOM::CPropVariant prop; local
306 prop = s;
310 RINOK(arc.Archive->GetProperty(index, fieldInfo.PropID, &prop));
317 if (fieldInfo.PropID == kpidAttrib && (prop.vt == VT_EMPTY || prop.vt == VT_UI4))
319 UInt32 attrib = (prop.vt == VT_EMPTY) ? 0 : prop.ulVal;
375 NCOM::CPropVariant prop; local
402 NCOM::CPropVariant prop; local
521 NCOM::CPropVariant prop; local
541 NCOM::CPropVariant prop; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLSparseArrayProperty.java 88 IGLProperty prop = mDefaultValue.clone(); local
89 prop.setParent(this);
90 mSparseArray.put(key, prop);
161 IGLProperty prop = mSparseArray.get(key); local
163 assert prop != null;
164 if (prop != null) {
165 prop.prettyPrint(pp);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveExtractCallback.cpp 125 NCOM::CPropVariant prop; local
126 RINOK(_arc->Archive->GetProperty(index, propID, &prop));
127 if (prop.vt == VT_FILETIME)
129 filetime = prop.filetime;
132 else if (prop.vt != VT_EMPTY)
139 NCOM::CPropVariant prop; local
140 RINOK(_arc->Archive->GetProperty(_index, kpidSize, &prop));
141 _curSizeDefined = (prop.vt != VT_EMPTY);
143 _curSize = ConvertPropVariantToUInt64(prop);
169 NCOM::CPropVariant prop; local
200 NCOM::CPropVariant prop; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
findertools.py 142 aeobj_01 = aetypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('comt'), fr=aeobj_00)
156 aeobj_01 = aetypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('comt'), fr=aeobj_00)
198 args['----'] = aetypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('fcrt'), fr=aeobj_0)
252 aeobj_01 = aetypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type(property), fr=aeobj_00)
309 aeobj_01 = aetypes.ObjectSpecifier(want=aetypes.Type('prop'), form="prop", seld=aetypes.Type('posn'), fr=aeobj_00
    [all...]
  /frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java 56 * VideDumpView class. It reads the "/sdcard/mediadump/prop.xml" to get
111 Properties prop = new Properties(); local
113 prop.loadFromXML(new FileInputStream("/sdcard/mediadump/prop.xml"));
119 mStartX = Integer.parseInt(prop.getProperty("startX"));
120 mStartY = Integer.parseInt(prop.getProperty("startY"));
121 mWidth = Integer.parseInt(prop.getProperty("width"));
122 mHeight = Integer.parseInt(prop.getProperty("height"));
123 mBytesPerPixel = Integer.parseInt(prop.getProperty("bytesPerPixel"));
124 mFrameRate = Integer.parseInt(prop.getProperty("frameRate"))
    [all...]
  /external/clang/test/ARCMT/
objcmt-protocol-conformance.m 51 @property (copy) id Prop;
55 @property (copy) id Prop;
62 @synthesize Prop=_XXX;
66 @property (copy) id Prop;
70 @property (copy) id Prop;
74 @property (copy) id Prop;
objcmt-protocol-conformance.m.result 51 @property (copy) id Prop;
55 @property (copy) id Prop;
62 @synthesize Prop=_XXX;
66 @property (copy) id Prop;
70 @property (copy) id Prop;
74 @property (copy) id Prop;
  /external/v8/test/webkit/
dictionary-no-cache.js 86 var test4 = {__proto__:{prop:"on prototype"}};
90 var test5 = {__proto__:{__proto__:{prop:"on prototype's prototype"}}};
95 return o.prop;
101 test4.prop = "on self";
105 return o.prop;
111 test5.prop = "on self";
  /external/eigen/bench/btl/
CMakeLists.txt 78 macro(btl_add_target_property target prop value)
81 get_target_property(previous ${target} ${prop})
85 set_target_properties(${target} PROPERTIES ${prop} "${previous} ${value}")
  /external/libdrm/
xf86drmMode.c 599 struct drm_mode_get_property prop; local
602 VG_CLEAR(prop);
603 prop.prop_id = property_id;
604 prop.count_enum_blobs = 0;
605 prop.count_values = 0;
606 prop.flags = 0;
607 prop.enum_blob_ptr = 0;
608 prop.values_ptr = 0;
610 if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPERTY, &prop))
613 if (prop.count_values
1124 struct drm_mode_obj_set_property prop; local
    [all...]
  /external/lzma/C/
Lzma2Dec.h 31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/
phrtab.utf 26 :SYM "0" :PROP mapval = 48
27 :SYM "_SHORTBR_" :PROP mapval = 50
28 :SYM "_SECBND_" :PROP mapval = 51
  /external/v8/test/mjsunit/es7/
object-observe.js 984 function TestObserveConfigurable(obj, prop) {
988 obj[prop] = 1;
990 obj[prop] = 2;
991 obj[prop] = 3;
992 delete obj[prop];
993 obj[prop] = 4;
994 obj[prop] = 4; // ignored
995 obj[prop] = 5;
996 Object.defineProperty(obj, prop, {value: 6});
997 Object.defineProperty(obj, prop, {writable: false})
    [all...]
  /bootable/recovery/tools/ota/
add-property-tag.c 26 * Append a tag to a property value in a .prop file if it isn't already there.
32 const char *prop = strstr(line, propname); local
33 if (prop == NULL) return 0;
37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ;
38 if (ptr != prop) return 0; // Must be at the beginning of the line
67 const char *filename = "/system/build.prop";
86 "flags: -f /dir/file.prop (default /system/build.prop)\n"
87 " -p prop.name (default ro.build.fingerprint)\n"
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 54 * @param prop
56 public void addProperty(Property prop) {
57 String name= prop.getName();
63 props.add(prop);
  /external/freetype/src/autofit/
afmodule.c 151 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
155 error = af_property_get_face_globals( prop->face, &globals, module );
157 globals->increase_x_height = prop->limit;
195 FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value; local
199 error = af_property_get_face_globals( prop->face, &globals, module );
201 prop->map = globals->glyph_styles;
227 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
231 error = af_property_get_face_globals( prop->face, &globals, module );
233 prop->limit = globals->increase_x_height;
  /external/icu/icu4c/source/common/
uset_props.cpp 101 UProperty prop, int32_t value, UErrorCode* ec) {
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
107 const UChar *prop, int32_t propLength,
111 UnicodeString p(prop, propLength);
  /external/libxml2/result/
dav1.rde 7 2 1 D:prop 0 0
32 2 15 D:prop 0 0
46 2 1 D:prop 0 0
55 2 15 D:prop 0 0
dav1.rdr 7 2 1 D:prop 0 0
32 2 15 D:prop 0 0
46 2 1 D:prop 0 0
55 2 15 D:prop 0 0
dav1.sax 9 SAX.startElement(D:prop)
34 SAX.endElement(D:prop)
48 SAX.startElement(D:prop)
59 SAX.endElement(D:prop)
dav2.rde 12 2 1 S:prop 0 0
37 2 15 S:prop 0 0
56 2 1 S:prop 0 0
70 2 15 S:prop 0 0
dav2.rdr 12 2 1 S:prop 0 0
37 2 15 S:prop 0 0
56 2 1 S:prop 0 0
70 2 15 S:prop 0 0

Completed in 715 milliseconds

<<11121314151617181920>>