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

1 2 3 4 5

  /external/libpng/projects/visualc71/
README_zlib.txt 14 1) On the main menu, select "File | Open Solution".
20 binaries set "zlib" as the startup project (Select "zlib" tree view item +
22 binaries set it to "example" (Select "example" tree view item + Project |
24 "minigzip" (Select "minigzip" tree view item + Project | Set as StartUp
27 4) Select "Build | Configuration Manager...".
30 5) Select "Build | Clean Solution".
32 6) Select "Build | Build Solution (Ctrl-Shift-B)"
  /frameworks/base/services/sensorservice/
traits.h 67 struct Select {
71 struct Select<false, T, U> {
112 typedef typename Select<isStdArith || isPointer, T, const T&>::Result ParameterType;
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ColorUsageDetector.java 35 import lombok.ast.Select;
81 Node select, String type, String name, boolean isFramework) {
83 while (select.getParent() instanceof Select) {
84 select = select.getParent();
88 if (select.getParent() instanceof MethodInvocation) {
89 MethodInvocation call = (MethodInvocation) select.getParent();
94 ISSUE, context.getLocation(select), String.format(
96 "getResources().getColor(%1$s)", select.toString())
    [all...]
JavaPerformanceDetector.java 47 import lombok.ast.Select;
356 } else if (expression instanceof Select) {
357 Select select = (Select) expression; local
358 if (select.astOperand() instanceof This) {
359 variables.add(select.astIdentifier().astValue());
528 if (left instanceof Select && ((Select) left).astOperand() instanceof This) {
529 variable = ((Select) left).astIdentifier().astValue()
    [all...]
AlwaysShowActionDetector.java 48 import lombok.ast.Select;
189 return Collections.<Class<? extends Node>>singletonList(Select.class);
205 public boolean visitSelect(Select node) {
ViewTypeDetector.java 53 import lombok.ast.Select;
144 if (first instanceof Select) {
147 String id = ((Select) first).astIdentifier().astValue();
OverdrawDetector.java 77 import lombok.ast.Select;
504 public boolean visitSelect(Select node) {
509 && node.getParent() instanceof Select) {
510 String layout = ((Select) node.getParent()).astIdentifier().astValue();
535 if (arg instanceof Select) {
541 String name = ((Select) arg).astIdentifier().astValue();
MergeRootFrameLayoutDetector.java 63 import lombok.ast.Select;
199 if (argument instanceof Select) {
  /external/chromium/chrome/browser/resources/file_manager/js/
mock_chrome.js 32 * Select multiple files.
40 * Select a single file.
167 SELECT_FOLDER_TITLE: 'Select a folder to open',
168 SELECT_OPEN_FILE_TITLE: 'Select a file to open',
169 SELECT_OPEN_MULTI_FILE_TITLE: 'Select one or more files',
170 SELECT_SAVEAS_FILE_TITLE: 'Select a file to save as',
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringTokenizer.cs 70 return new string[] { token, str[EnumerableExtensions.Sum(EnumerableExtensions.Select(EnumerableExtensions.Take(_tokens, i + 1),
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringTokenizer.cs 71 return new string[] { token, str[_tokens.Take( i + 1 ).Select( t => t.Length + 1 ).Sum() - 1].ToString() };
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xpoll.h 65 * <sys/select.h>, so we get the FD_* macros. */
68 # include <sys/select.h>
73 # if defined(AIXV4) /* AIX 4.2 fubar-ed <sys/select.h>, so try really hard. */
75 # include <sys/select.h>
78 # ifdef __QNX__ /* Make sure we get 256 bit select masks */
81 # include <sys/select.h>
84 #else /* DGUX -- No sys/select in Intel DG/ux */
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
127 # define Select(n,r,w,e,t) select(n,(int*)r,(int*)w,(int*)e,(struct timeval*)t
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 65 * <sys/select.h>, so we get the FD_* macros. */
68 # include <sys/select.h>
73 # if defined(AIXV4) /* AIX 4.2 fubar-ed <sys/select.h>, so try really hard. */
75 # include <sys/select.h>
78 # ifdef __QNX__ /* Make sure we get 256 bit select masks */
81 # include <sys/select.h>
84 #else /* DGUX -- No sys/select in Intel DG/ux */
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
127 # define Select(n,r,w,e,t) select(n,(int*)r,(int*)w,(int*)e,(struct timeval*)t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xpoll.h 65 * <sys/select.h>, so we get the FD_* macros. */
68 # include <sys/select.h>
73 # if defined(AIXV4) /* AIX 4.2 fubar-ed <sys/select.h>, so try really hard. */
75 # include <sys/select.h>
78 # ifdef __QNX__ /* Make sure we get 256 bit select masks */
81 # include <sys/select.h>
84 #else /* DGUX -- No sys/select in Intel DG/ux */
124 # define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval*)t)
127 # define Select(n,r,w,e,t) select(n,(int*)r,(int*)w,(int*)e,(struct timeval*)t
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.h 51 // or <optgroup> in a <select> widget) and is used by PopupListBox.
100 // Autocomplete popups are restricted, combo-boxes (select tags) aren't.
107 Select, // HTML select popup.
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
JavaVisitor.java 91 import lombok.ast.Select;
894 public boolean visitSelect(Select node) {
895 List<VisitingDetector> list = mNodeTypeDetectors.get(Select.class);
1122 Select select = (Select) node.astOperand(); local
1152 Select select = (Select) grandParent; local
    [all...]
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.h 411 /* Values returned from the Select method of this class. */
423 /* Select on an FD event, keeping in mind thread exit message.
433 SelectRes Select(int fd, int timeout);
EmulatedQemuCameraDevice.cpp 238 getWorkerThread()->Select(-1, 1000000 / mEmulatedFPS);
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 142 case Instruction::Select:
  /external/webkit/Tools/Scripts/
sunspider-compare-results 52 --suite Select a specific benchmark suite. The default is sunspider-0.9.1
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 87 LogCatView_Select_All=Select All
106 TableView_Select_All=Select All
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 42 // MBlazeDAGToDAGISel - MBlaze specific code to select MBlaze machine
82 SDNode *Select(SDNode *N);
187 /// Select instructions not customized! Used for
189 SDNode* MBlazeDAGToDAGISel::Select(SDNode *Node) {
261 // Select the default instruction
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 28 /// SparcDAGToDAGISel - SPARC specific code to select SPARC machine
44 SDNode *Select(SDNode *N);
137 SDNode *SparcDAGToDAGISel::Select(SDNode *N) {
  /external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
inspector-wrappers-test-utils.js 39 str += "<li>Select the Console";
  /external/chromium/chrome/browser/resources/
bug_report.js 123 * Select the current screenshots div, restoring the image that was
140 * Select the saved screenshots div, restoring the image that was

Completed in 1011 milliseconds

1 2 3 4 5