HomeSort by relevance Sort by last modified time
    Searched full:basic (Results 351 - 375 of 8308) sorted by null

<<11121314151617181920>>

  /external/llvm/include/llvm/Analysis/
RegionInfo.h 12 // The basic ideas are taken from "The Program Structure Tree - Richard Johnson,
61 /// This is the entry basic block that starts this region node. If this is a
62 /// BasicBlock RegionNode, then entry is just the basic block, that this
230 /// verify that all reachable basic blocks are elements of the region.
241 /// @param Entry The entry basic block of the region.
242 /// @param Exit The exit basic block of the region.
257 /// @brief Replace the entry basic block of the region with the new basic
260 /// @param BB The new entry basic block of the region.
263 /// @brief Replace the exit basic block of the region with the new basi
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen.cc 240 // boundaries of basic blocks.
311 // insert them into a new basic block.
319 SANDBOX_DIE("Found a jump inside of a basic block");
331 // Add a new basic block to "basic_blocks". Also set "firstBlock", if it
337 "Only the very first basic block should have no "
352 // Textbook implementation of a basic block generator. All basic blocks
365 SANDBOX_DIE("Internal compiler error; cannot compute basic blocks");
369 // We reached a branch target. Start a new basic block (this means,
370 // flushing the previous basic block first)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
basic.pass.cpp 35 assert(std::regex_search(s, m, std::regex("a", std::regex_constants::basic)));
51 assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic)));
66 assert(!std::regex_search(s, m, std::regex("ba", std::regex_constants::basic)));
73 assert(std::regex_search(s, m, std::regex("ab", std::regex_constants::basic)));
88 assert(!std::regex_search(s, m, std::regex("ab", std::regex_constants::basic),
95 assert(std::regex_search(s, m, std::regex("bc", std::regex_constants::basic)));
110 assert(std::regex_search(s, m, std::regex("ab*c", std::regex_constants::basic)));
125 assert(std::regex_search(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic)));
144 std::regex_constants::basic)));
165 assert(std::regex_search(s, m, std::regex("^abc", std::regex_constants::basic)));
767 std::regex regex(FI(r), FI(r+sr), std::regex_constants::basic); member in class:std::regex_constants
1525 std::wregex regex(FI(r), FI(r+sr), std::regex_constants::basic); member in class:std::regex_constants
    [all...]
  /external/chromium/net/http/
http_auth_handler_factory_unittest.cc 61 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
64 registry_factory.RegisterSchemeFactory("Basic", mock_factory_basic);
67 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
77 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
86 "basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
92 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
111 "Basic realm=\"FooBar\"",
http_auth_cache_unittest.cc 75 TEST(HttpAuthCacheTest, Basic) {
88 "Basic realm=Realm1", ASCIIToUTF16("realm1-user"),
96 "Basic realm=Realm2", ASCIIToUTF16("realm2-user"),
104 realm3_basic_handler->auth_scheme(), "Basic realm=Realm3",
105 ASCIIToUTF16("realm3-basic-user"),
106 ASCIIToUTF16("realm3-basic-password"), "");
122 realm4_basic_handler->auth_scheme(), "Basic realm=Realm4",
123 ASCIIToUTF16("realm4-basic-user"),
124 ASCIIToUTF16("realm4-basic-password"), "/");
146 EXPECT_EQ("Basic realm=Realm3", entry->auth_challenge())
    [all...]
http_auth_unittest.cc 30 std::string challenge_text = "Basic";
72 // Basic is the only challenge type, pick it.
74 "www-authenticate: Basic realm=\"BasicRealm\"\n",
88 // Pick Digest over Basic.
89 "www-authenticate: Basic realm=\"FooBar\"\n"
159 "WWW-Authenticate: Basic realm=\"happy\"\n";
167 "WWW-Authenticate: Basic realm=\"happy\"\n"
244 std::string challenge_str = "Basic realm=\"foobar\"";
250 EXPECT_EQ(std::string("Basic"), challenge.scheme());
260 std::string challenge_str = "Basic realm=foobar@baz.com"
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_factory_unittest.cc 61 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
64 registry_factory.RegisterSchemeFactory("Basic", mock_factory_basic);
67 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
77 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
86 "basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
92 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
111 "Basic realm=\"FooBar\"",
http_auth_unittest.cc 30 std::string challenge_text = "Basic";
72 // Basic is the only challenge type, pick it.
74 "www-authenticate: Basic realm=\"BasicRealm\"\n",
88 // Pick Digest over Basic.
89 "www-authenticate: Basic realm=\"FooBar\"\n"
164 "WWW-Authenticate: Basic realm=\"happy\"\n";
172 "WWW-Authenticate: Basic realm=\"happy\"\n"
249 std::string challenge_str = "Basic realm=\"foobar\"";
255 EXPECT_EQ(std::string("Basic"), challenge.scheme());
265 std::string challenge_str = "Basic realm=foobar@baz.com"
    [all...]
  /external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp 11 #include "clang/Basic/Diagnostic.h"
12 #include "clang/Basic/DiagnosticOptions.h"
13 #include "clang/Basic/FileManager.h"
14 #include "clang/Basic/LangOptions.h"
15 #include "clang/Basic/SourceManager.h"
16 #include "clang/Basic/TargetInfo.h"
17 #include "clang/Basic/TargetOptions.h"
  /external/llvm/docs/HistoricalNotes/
2003-06-25-Reoptimizer1.txt 17 do not move code across basic-block boundaries.
26 The reoptimizer maintains a map between machine-code basic blocks and
28 first machine-code basic block of the hot loop region.
33 1) Do a DFS from the first machine-code basic block of the hot loop
36 2) Do a DFS from the last machine-code basic block of the hot loop
95 by tracing the LLVM-to-Machine code basic block map and then copying
96 each machine code basic block we think is in the hot region into the
98 generating the final optimized trace; we copy the same basic blocks
101 LLVM basic blocks are not typically used in the Reoptimizer except
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 13 // functions, to copying basic blocks to support loop unrolling or superblock
69 /// CloneBasicBlock - Return a copy of the specified basic block, but without
71 /// exact copy of the specified basic block, without any remapping having been
73 /// the basic block will be inserted into the same function that it was cloned
76 /// Also, note that this function makes a direct copy of the basic block, and
84 /// The correlation between instructions in the source and result basic blocks
90 /// If you would like the basic block to be auto-inserted into the end of a
120 /// to VMap values. Note that if NewFunc already has basic blocks, the ones
184 /// InlineFunction - This function inlines the called function into the basic
  /external/llvm/lib/Target/X86/
X86PadShortFunction.cpp 33 STATISTIC(NumBBsPadded, "Number of basic blocks padded");
73 // ReturnBBs - Maps basic blocks that return to the minimum number of
91 /// runOnMachineFunction - Loop over all of the basic blocks, inserting
105 // Search through basic blocks and mark the ones that have early returns
115 // Pad the identified basic blocks with NOOPs
125 "Basic block should contain at least a RET but is empty");
131 "Basic block does not end with RET");
143 /// basic blocks that contain a return to ReturnBBs.
184 // Mark basic blocks with a return instruction. Calls to other
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/ActionBarCompat-BasicSample/tests/src/com/example/android/actionbarcompat/basic/tests/
SampleTests.java 34 package com.example.android.actionbarcompat.basic.tests;
36 import com.example.android.actionbarcompat.basic.*;
41 * Tests for Basic sample.
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-Basic/ActionBarCompat-BasicSample/tests/src/com/example/android/actionbarcompat/basic/tests/
SampleTests.java 34 package com.example.android.actionbarcompat.basic.tests;
36 import com.example.android.actionbarcompat.basic.*;
41 * Tests for Basic sample.
  /external/apache-http/src/org/apache/http/client/params/
AuthPolicy.java 53 * Basic authentication scheme as defined in RFC2617 (considered inherently
56 public static final String BASIC = "Basic";
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
notifications.html 28 (<code>basic</code>, <code>image</code>, and <code>list</code>)
40 Here's an example of a <code>basic</code> template:
45 type: "basic",
  /external/chromium_org/mojo/public/tests/
bindings_array_unittest.cc 12 // Tests that basic Array operations work.
13 TEST(BindingsArrayTest, Basic) {
34 // Tests that basic Array<bool> operations work, and that it's packed into 1
  /external/clang/include/clang/Basic/
OpenMPKinds.h 27 #include "clang/Basic/OpenMPKinds.def"
36 #include "clang/Basic/OpenMPKinds.def"
46 #include "clang/Basic/OpenMPKinds.def"
  /external/clang/test/Analysis/
misc-ps-region-store.mm 9 // Test basic handling of references.
20 // Test basic handling of references with Objective-C classes.
33 // Basic test of C++ references with Objective-C pointers.
  /external/llvm/lib/CodeGen/
PHIEliminationUtils.cpp 20 // the basic block.
34 // Discover any defs/uses in this basic block.
46 // No defs. Insert the copy at the start of the basic block.
  /external/chromium_org/third_party/lcov/
descriptions.tests 11 Basic test for wait(2) system call.
54 Basic test for fcntl(2) using F_DUPFD argument.
56 Basic test for fcntl(2) using F_GETFD argument.
58 Basic test for fcntl(2) using F_GETFL argument.
60 Basic test for fcntl(2) using F_GETLK argument.
68 Basic test for fcntl(2) using F_SETFL argument.
70 Basic test for fcntl(2) using F_SETLK argument.
72 Basic test for fcntl(2) using F_SETLKW argument.
121 Basic test for dup(2).
133 Basic test for dup(2) of a system pipe descriptor
    [all...]
  /art/runtime/base/unix_file/
README 7 In particular, the basic RandomAccessFile interface is kept small and simple so
  /cts/tests/src/android/content/cts/
MockAccountService.java 24 * a basic Mock Service for wrapping the MockAccountAuthenticator
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountService.java 24 * a basic Mock Service for wrapping the MockAccountAuthenticator
  /dalvik/dx/tests/031-bb-dead-code/
run 18 dx --debug --dump --basic-blocks --width=200 blort.class

Completed in 924 milliseconds

<<11121314151617181920>>