HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 251 - 275 of 7714) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/tests/systemproperties/src/android/os/
SystemPropertiesTest.java 31 SystemProperties.set(PERSIST_KEY, Long.toString(i));
40 SystemProperties.set(KEY, Long.toString(i));
50 SystemProperties.set(KEY, "");
54 SystemProperties.set(KEY, "SA");
61 SystemProperties.set(KEY, "");
  /frameworks/rs/
rsMatrix3x3.cpp 59 set(i, 0, ri0);
60 set(i, 1, ri1);
61 set(i, 2, ri2);
71 set(i, j, get(j, i));
72 set(j, i, temp);
  /system/core/toolbox/
r.c 15 int width = 4, set = 0, fd; local
49 set = 1;
75 if(set) *x = value;
81 if(set) *x = value;
87 if(set) *x = value;
  /external/icu4c/test/intltest/
usettest.cpp 36 UnicodeString operator+(const UnicodeString& left, const UnicodeSet& set) {
38 set.toPattern(pat);
263 UnicodeSet set; local
264 expectPattern(set, UnicodeString("[[a-m]&[d-z]&[k-y]]", ""), "km");
265 expectPattern(set, UnicodeString("[[a-z]-[m-y]-[d-r]]", ""), "aczz");
266 expectPattern(set, UnicodeString("[a\\-z]", ""), "--aazz");
267 expectPattern(set, UnicodeString("[-az]", ""), "--aazz");
268 expectPattern(set, UnicodeString("[az-]", ""), "--aazz");
269 expectPattern(set, UnicodeString("[[[a-z]-[aeiou]i]]", ""), "bdfnptvz");
272 set.complement()
389 UnicodeSet set; \/\/ Construct empty set local
519 UnicodeSet set; local
2358 const UnicodeSet &set; member in class:UnicodeSetWithStrings
    [all...]
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 74 case Set:
329 nameToPseudoType->set(active.impl(), CSSSelector::PseudoActive);
330 nameToPseudoType->set(after.impl(), CSSSelector::PseudoAfter);
331 nameToPseudoType->set(anyLink.impl(), CSSSelector::PseudoAnyLink);
332 nameToPseudoType->set(any.impl(), CSSSelector::PseudoAny);
333 nameToPseudoType->set(autofill.impl(), CSSSelector::PseudoAutofill);
334 nameToPseudoType->set(before.impl(), CSSSelector::PseudoBefore);
335 nameToPseudoType->set(checked.impl(), CSSSelector::PseudoChecked);
336 nameToPseudoType->set(fileUploadButton.impl(), CSSSelector::PseudoFileUploadButton);
338 nameToPseudoType->set(inputSpeechButton.impl(), CSSSelector::PseudoInputSpeechButton)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
runtests.bat 4 set vm=java
7 set tests=
10 set installmode=clean
13 set properties=
16 set os=win32
17 set ws=win32
18 set arch=x86
21 set ANT_CMD_LINE_ARGS=
51 if x%1==x-ws set ws=%2 && shift && shift && goto processcmdlineargs
52 if x%1==x-os set os =%2 && shift && shift && goto processcmdlineargs
    [all...]
  /bionic/libc/stdio/
tmpfile.c 47 sigset_t set, oset; local
56 sigfillset(&set);
57 (void)sigprocmask(SIG_BLOCK, &set, &oset);
  /dalvik/dx/src/com/android/dx/ssa/
DeadCodeRemover.java 117 worklist.set(source.getReg());
177 * @param set a set of registers that we've already determined
182 private boolean isCircularNoSideEffect(int regV, BitSet set) {
183 if ((set != null) && set.get(regV)) {
193 if (set == null) {
194 set = new BitSet(regCount);
198 set.set(regV)
    [all...]
  /external/chromium/chrome/browser/notifications/
notifications_prefs_cache.h 9 #include <set>
20 // of the profile preferences are initialized. Once is_initialized() is set,
27 // Once is_initialized() is set, all accesses must happen on the IO thread.
41 // Set the cache to the supplied values. This clears the current
68 std::set<GURL> allowed_origins_;
69 std::set<GURL> denied_origins_;
75 // Set to true once the initial cached settings have been completely read.
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_utils_gtk.cc 7 #include <set>
23 std::set<std::string> sorted_families;
29 for (std::set<std::string>::const_iterator iter = sorted_families.begin();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
DeadCodeRemover.java 117 worklist.set(source.getReg());
177 * @param set a set of registers that we've already determined
182 private boolean isCircularNoSideEffect(int regV, BitSet set) {
183 if ((set != null) && set.get(regV)) {
193 if (set == null) {
194 set = new BitSet(regCount);
198 set.set(regV)
    [all...]
  /external/icu4c/common/unicode/
usetiter.h 37 * UnicodeSetIterator it(set);
42 * <p>Each item in the set is accessed as a string. Set elements
49 * UnicodeSetIterator it(set);
102 * Create an iterator over the given set. The iterator is valid
103 * only so long as <tt>set</tt> is valid.
104 * @param set set to iterate over
107 UnicodeSetIterator(const UnicodeSet& set);
112 * constructor allowing the target to be set later
252 const UnicodeSet* set; member in class:UnicodeSetIterator
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
OCTTriangle.java 46 pointa.set(p1);
47 pointb.set(p2);
48 pointc.set(p3);
  /external/oprofile/libutil++/
generic_spec.h 38 void set(std::string const &);
78 void generic_spec<T>::set(std::string const & str) function in class:generic_spec
92 /// link error (using generic_spec<string> is problematic because g.set("all")
95 void generic_spec<std::string>::set(std::string const & str);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
RefCountObject.h 48 void set(RefCountObject *newObject);
63 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); } function in class:gl::BindingPointer
  /external/webkit/Source/WebCore/loader/
PolicyCallback.h 55 void set(const ResourceRequest&, PassRefPtr<FormState>,
57 void set(const ResourceRequest&, PassRefPtr<FormState>, const String& frameName, const NavigationAction&,
59 void set(ContentPolicyDecisionFunction, void* argument);
  /external/webkit/Source/WebCore/rendering/
VerticalPositionCache.h 54 void set(RenderObject* renderer, FontBaseline baselineType, int position) function in class:WebCore::VerticalPositionCache
57 m_alphabeticPositions.set(renderer, position);
59 m_ideographicPositions.set(renderer, position);
  /frameworks/base/core/tests/coretests/src/android/os/
SystemPropertiesTest.java 32 SystemProperties.set(KEY, "");
36 SystemProperties.set(KEY, "AAA");
43 SystemProperties.set(KEY, "");
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXCapabilities.cpp 476 params->set(CameraProperties::SUPPORTED_PICTURE_SIZES, supported);
502 params->set(CameraProperties::SUPPORTED_PREVIEW_SIZES, supported);
528 params->set(CameraProperties::SUPPORTED_VIDEO_SIZES, supported);
555 params->set(CameraProperties::SUPPORTED_THUMBNAIL_SIZES, supported);
579 params->set(CameraProperties::SUPPORTED_ZOOM_RATIOS, supported);
580 params->set(CameraProperties::SUPPORTED_ZOOM_STAGES, zoomStageCount - 1); //As per CTS requirement
583 params->set(CameraProperties::ZOOM_SUPPORTED, TICameraParameters::ZOOM_UNSUPPORTED);
584 params->set(CameraProperties::SMOOTH_ZOOM_SUPPORTED, TICameraParameters::ZOOM_UNSUPPORTED);
586 params->set(CameraProperties::ZOOM_SUPPORTED, TICameraParameters::ZOOM_SUPPORTED);
587 params->set(CameraProperties::SMOOTH_ZOOM_SUPPORTED, TICameraParameters::ZOOM_SUPPORTED)
    [all...]
  /external/libffi/src/x86/
darwin64.S 58 movl %r9d, %eax /* Set number of SSE registers. */
164 bits will be set; see ffi_prep_cif_machdep for the pattern. */
185 It's not worth an indirect jump to load the exact set of
206 /* The carry flag is set by the trampoline iff SSE registers
290 bit 8 set means xmm0 gets the second word, and bit 9 means
320 .set L$set$0,LECIE1-LSCIE1 /* CIE Length */
321 .long L$set$0
341 .set L$set$1,LEFDE1-LASFDE1 /* FDE Length *
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
exposurecompensationtest.cpp 90 mReferenceColors[0].set(243, 243, 242);
91 mReferenceColors[1].set(200, 200, 200);
92 mReferenceColors[2].set(160, 160, 160);
93 mReferenceColors[3].set(122, 122, 121);
94 mReferenceColors[4].set(85, 85, 85);
95 mReferenceColors[5].set(52, 52, 52);
  /development/ndk/platforms/android-3/include/
thread_db.h 107 #define td_event_emptyset(set) \
108 (set)->events = 0
110 #define td_event_fillset(set) \
111 (set)->events = 0xffffffff
113 #define td_event_addset(set, n) \
114 (set)->events |= (1 << n)
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.h 14 #include <set>
117 // set of caches.
120 // Allow each renderer to keep its current set of cached resources, with
124 // Allow each renderer to keep its current set of cached resources.
138 // Add up all the stats from the given set of renderers and place the result
140 void GatherStats(const std::set<int>& renderers,
165 void AddToStrategy(const std::set<int>& renderers,
175 void ClearRendederCache(const std::set<int>& renderers);
190 std::set<int> active_renderers_;
193 std::set<int> inactive_renderers_
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 38 if (width != null) attrs.set (Attribute.WIDTH, width);
39 if (border != null) attrs.set (Attribute.BORDER, border);
40 if (cellpadding != null) attrs.set (Attribute.CELLPADDING, cellpadding);
41 if (cellspacing != null) attrs.set (Attribute.CELLSPACING, cellspacing);
50 m_caption.getAttributes ().set (Attribute.ALIGN, align);
92 getAttributes ().set (Attribute.COLSPAN, span);
  /external/kernel-headers/original/asm-mips/
asm.h 98 .set push; \
99 .set reorder; \
103 .set pop; \
111 .set push; \
112 .set reorder; \
115 .set pop; \
139 * Use with .set noreorder only!
147 .set push; \
148 .set mips4; \
150 .set po
    [all...]

Completed in 1192 milliseconds

<<11121314151617181920>>